reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
280 llvm::sys::path::native(Filename.str(), NativePath); 286 if (NativePath.find_first_of(" #${}^!") != StringRef::npos) 287 OS << '\"' << NativePath << '\"'; 289 OS << NativePath; 293 for (unsigned i = 0, e = NativePath.size(); i != e; ++i) { 294 if (NativePath[i] == '#') // Handle '#' the broken gcc way. 296 else if (NativePath[i] == ' ') { // Handle space correctly. 299 while (j > 0 && NativePath[--j] == '\\') 301 } else if (NativePath[i] == '$') // $ is escaped by $$. 303 OS << NativePath[i];