/external/swiftshader/third_party/LLVM/lib/Linker/ |
D | Linker.cpp | 122 sys::Path FullPath(Directory); in IsLibrary() local 125 FullPath.appendComponent(("lib" + Name).str()); in IsLibrary() 126 FullPath.appendSuffix("a"); in IsLibrary() 127 if (FullPath.isArchive()) in IsLibrary() 128 return FullPath; in IsLibrary() 131 FullPath.eraseSuffix(); in IsLibrary() 132 FullPath.appendSuffix("bca"); in IsLibrary() 133 if (FullPath.isArchive()) in IsLibrary() 134 return FullPath; in IsLibrary() 137 FullPath.eraseSuffix(); in IsLibrary() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Path.cpp | 199 sys::Path FullPath(LibPaths[i]); in FindLibrary() local 200 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT); in FindLibrary() 201 if (FullPath.isDynamicLibrary()) in FindLibrary() 202 return FullPath; in FindLibrary() 203 FullPath.eraseSuffix(); in FindLibrary() 204 FullPath.appendSuffix("a"); in FindLibrary() 205 if (FullPath.isArchive()) in FindLibrary() 206 return FullPath; in FindLibrary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/ |
D | SourceCoverageView.cpp | 36 SmallString<256> FullPath; in getOutputPath() local 39 FullPath.append(Opts.ShowOutputDirectory); in getOutputPath() 42 sys::path::append(FullPath, getCoverageDir()); in getOutputPath() 46 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath() 49 sys::path::append(FullPath, PathFilename); in getOutputPath() 50 sys::path::native(FullPath); in getOutputPath() 52 return FullPath.str(); in getOutputPath() 61 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream() local 63 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream() 69 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write); in createOutputStream()
|
/external/llvm/tools/llvm-cov/ |
D | SourceCoverageView.cpp | 35 SmallString<256> FullPath; in getOutputPath() local 38 FullPath.append(Opts.ShowOutputDirectory); in getOutputPath() 41 sys::path::append(FullPath, getCoverageDir()); in getOutputPath() 45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath() 48 sys::path::append(FullPath, PathFilename); in getOutputPath() 50 return FullPath.str(); in getOutputPath() 59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream() local 61 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream() 66 raw_ostream *RawStream = new raw_fd_ostream(FullPath, E, sys::fs::F_RW); in createOutputStream()
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 1201 SmallString<256> FullPath; in parseEntry() local 1203 FullPath = FS->getExternalContentsPrefixDir(); in parseEntry() 1204 assert(!FullPath.empty() && in parseEntry() 1206 llvm::sys::path::append(FullPath, Value); in parseEntry() 1208 FullPath = Value; in parseEntry() 1214 FullPath = sys::path::remove_leading_dotslash(FullPath); in parseEntry() 1215 sys::path::remove_dots(FullPath, /*remove_dot_dot=*/true); in parseEntry() 1217 ExternalContentsPath = FullPath.str(); in parseEntry()
|
/external/libchrome/base/files/ |
D | scoped_temp_dir_unittest.cc | 15 TEST(ScopedTempDir, FullPath) { in TEST() argument
|
/external/lzma/CPP/7zip/UI/Client7z/ |
D | Client7z.cpp | 513 FString FullPath; member 654 FString path = DirPrefix + dirItem.FullPath; in GetStream() 806 di.FullPath = name; in main()
|
/external/clang/lib/AST/ |
D | VTableBuilder.cpp | 3409 FullPathTy &FullPath, in findPathsToSubobject() argument 3412 Paths.push_back(FullPath); in findPathsToSubobject() 3423 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject() 3425 BaseWithVPtr, FullPath, Paths); in findPathsToSubobject() 3426 FullPath.pop_back(); in findPathsToSubobject() 3449 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument 3453 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath() 3553 FullPathTy FullPath; in computeFullPathsForVFTables() local 3558 BaseSubobject(Info->BaseWithVPtr, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables() 3560 FullPath.clear(); in computeFullPathsForVFTables()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Path.inc | 145 TCHAR FullPath[MAX_PATH + 1] = {0}; 149 sizeof(FullPath)/sizeof(FullPath[0]), 150 FullPath, &FilePart); 159 path = FullPath;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFVerifier.cpp | 613 std::string FullPath; in verifyDebugLineRows() local 616 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows() 619 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows() 621 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 89 SmallString<2*MAX_PATH> FullPath("\\\\?\\"); 94 FullPath.append(CurPath); 106 llvm::sys::path::remove_filename(FullPath); 108 llvm::sys::path::append(FullPath, *I); 110 return UTF8ToUTF16(FullPath, Path16);
|
/external/swiftshader/third_party/LLVM/tools/llvm-ar/ |
D | llvm-ar.cpp | 98 bool FullPath = false; ///< 'P' modifier variable 204 case 'P': FullPath = true; break; in parseCommandLine()
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 89 SmallString<2*MAX_PATH> FullPath("\\\\?\\"); 94 FullPath.append(CurPath); 106 llvm::sys::path::remove_filename(FullPath); 108 llvm::sys::path::append(FullPath, *I); 110 return UTF8ToUTF16(FullPath, Path16);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/ |
D | Path.inc | 92 SmallString<2*MAX_PATH> FullPath("\\\\?\\"); 97 FullPath.append(CurPath); 112 llvm::sys::path::remove_filename(FullPath); 114 llvm::sys::path::append(FullPath, *I); 116 return UTF8ToUTF16(FullPath, Path16);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 173 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local 175 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() 191 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 110 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local 111 NextId = OS.EmitCVFileDirective(NextId, FullPath); in maybeRecordFile()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | dbghelp.h | 1196 PWCHAR FullPath; member
|