Searched refs:FullPath (Results 1 - 12 of 12) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Linker/
H A DLinker.cpp122 sys::Path FullPath(Directory);
125 FullPath.appendComponent(("lib" + Name).str());
126 FullPath.appendSuffix("a");
127 if (FullPath.isArchive())
128 return FullPath;
131 FullPath.eraseSuffix();
132 FullPath.appendSuffix("bca");
133 if (FullPath.isArchive())
134 return FullPath;
137 FullPath
177 sys::Path FullPath = IsLibrary(Filename, Directory); local
[all...]
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp35 SmallString<256> FullPath; local
38 FullPath.append(Opts.ShowOutputDirectory);
41 sys::path::append(FullPath, getCoverageDir());
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
48 sys::path::append(FullPath, PathFilename);
50 return FullPath.str();
59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
61 auto ParentDir = sys::path::parent_path(FullPath);
66 raw_ostream *RawStream = new raw_fd_ostream(FullPath, E, sys::fs::F_RW);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DPath.cpp199 sys::Path FullPath(LibPaths[i]);
200 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
201 if (FullPath.isDynamicLibrary())
202 return FullPath;
203 FullPath.eraseSuffix();
204 FullPath.appendSuffix("a");
205 if (FullPath.isArchive())
206 return FullPath;
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DPath.inc145 TCHAR FullPath[MAX_PATH + 1] = {0};
149 sizeof(FullPath)/sizeof(FullPath[0]),
150 FullPath, &FilePart);
159 path = FullPath;
/external/libchrome/base/files/
H A Dscoped_temp_dir_unittest.cc15 TEST(ScopedTempDir, FullPath) {
/external/llvm/lib/Support/Windows/
H A DPath.inc89 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/lzma/CPP/7zip/UI/Client7z/
H A DClient7z.cpp475 FString FullPath; member in struct:CDirItem
623 FString path = DirPrefix + dirItem.FullPath;
764 di.FullPath = name;
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp1201 SmallString<256> FullPath;
1203 FullPath = FS->getExternalContentsPrefixDir();
1204 assert(!FullPath.empty() &&
1206 llvm::sys::path::append(FullPath, Value);
1208 FullPath = Value;
1214 FullPath = sys::path::remove_leading_dotslash(FullPath);
1215 sys::path::remove_dots(FullPath, /*remove_dot_dot=*/true);
1217 ExternalContentsPath = FullPath.str();
/external/swiftshader/third_party/LLVM/tools/llvm-ar/
H A Dllvm-ar.cpp98 bool FullPath = false; ///< 'P' modifier variable
204 case 'P': FullPath = true; break;
/external/clang/lib/AST/
H A DVTableBuilder.cpp3409 FullPathTy &FullPath,
3412 Paths.push_back(FullPath);
3423 FullPath.insert(BaseSubobject(Base, NewOffset));
3425 BaseWithVPtr, FullPath, Paths);
3426 FullPath.pop_back();
3449 const FullPathTy &FullPath) {
3453 for (const BaseSubobject &BSO : FullPath) {
3553 FullPathTy FullPath; local
3558 BaseSubobject(Info->BaseWithVPtr, Info->FullOffsetInMDC), FullPath,
3560 FullPath
3405 findPathsToSubobject(ASTContext &Context, const ASTRecordLayout &MostDerivedLayout, const CXXRecordDecl *RD, CharUnits Offset, BaseSubobject BaseWithVPtr, FullPathTy &FullPath, std::list<FullPathTy> &Paths) argument
3447 getOffsetOfFullPath(ASTContext &Context, const CXXRecordDecl *RD, const FullPathTy &FullPath) argument
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp110 StringRef FullPath = getFullFilepath(F); local
111 NextId = OS.EmitCVFileDirective(NextId, FullPath);
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h1196 PWCHAR FullPath; member in struct:_MINIDUMP_MODULE_CALLBACK

Completed in 586 milliseconds