Searched refs:NativePath (Results 1 – 3 of 3) sorted by relevance
404 llvm::SmallString<256> NativePath; in PrintFilename() local405 llvm::sys::path::native(Filename.str(), NativePath); in PrintFilename()411 if (NativePath.find_first_of(" #${}^!") != StringRef::npos) in PrintFilename()412 OS << '\"' << NativePath << '\"'; in PrintFilename()414 OS << NativePath; in PrintFilename()418 for (unsigned i = 0, e = NativePath.size(); i != e; ++i) { in PrintFilename()419 if (NativePath[i] == '#') // Handle '#' the broken gcc way. in PrintFilename()421 else if (NativePath[i] == ' ') { // Handle space correctly. in PrintFilename()424 while (j > 0 && NativePath[--j] == '\\') in PrintFilename()426 } else if (NativePath[i] == '$') // $ is escaped by $$. in PrintFilename()[all …]
394 SmallString<128> NativePath; in remapPathNames() local395 sys::path::native(Path, NativePath); in remapPathNames()396 if (!sys::path::is_separator(NativePath.back())) in remapPathNames()397 NativePath += sys::path::get_separator(); in remapPathNames()398 return NativePath.c_str(); in remapPathNames()
207 llvm::SmallString<128> NativePath; member in __anon97f256dd0111::PDBLinker1591 NativePath = Config->PDBPath; in addSections()1592 pdbMakeAbsolute(NativePath); in addSections()1593 uint32_t PdbFilePathNI = DbiBuilder.addECName(NativePath); in addSections()1596 addCommonLinkerModuleSymbols(NativePath, LinkerModule, Alloc); in addSections()