HomeSort by relevance Sort by last modified time
    Searched defs:FullPath (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
FindFiles.c 80 char FullPath[MAX_PATH];
85 strcpy (FullPath, RootDirectory);
90 if (_getcwd (FullPath, sizeof (FullPath)) == NULL) {
97 if (FullPath[strlen (FullPath) - 1] != '\\') {
98 strcat (FullPath, "\\");
101 strcat (FullPath, RootDirectory);
104 if (FullPath[strlen (FullPath) - 1] == '\\') {
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Vol.c 214 CHAR16 *FullPath;
224 FullPath = NULL;
281 StrnCatGrow(&FullPath, &Length, PathName, 0);
282 StrnCatGrow(&FullPath, &Length, L":\\", 0);
296 FullPath,
305 SHELL_FREE_NON_NULL(FullPath);
Ls.c 551 CHAR16 *FullPath;
557 FullPath = NULL;
665 ASSERT(FullPath == NULL);
667 StrnCatGrow(&FullPath, NULL, CurDir, 0);
668 Size = FullPath != NULL? StrSize(FullPath) : 0;
669 StrnCatGrow(&FullPath, &Size, L"\\", 0);
681 ASSERT((FullPath == NULL && Size == 0) || (FullPath != NULL));
683 StrnCatGrow(&FullPath, &Size, gEfiShellProtocol->GetCurDir(NULL), 0);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
Linker.cpp 122 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.eraseSuffix()
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 35 SmallString<256> FullPath;
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-7.0/llvm/tools/llvm-cov/
SourceCoverageView.cpp 36 SmallString<256> FullPath;
39 FullPath.append(Opts.ShowOutputDirectory);
42 sys::path::append(FullPath, getCoverageDir());
46 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
49 sys::path::append(FullPath, PathFilename);
50 sys::path::native(FullPath);
52 return FullPath.str();
61 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
63 auto ParentDir = sys::path::parent_path(FullPath);
69 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-ar/
llvm-ar.cpp 98 bool FullPath = false; ///< 'P' modifier
204 case 'P': FullPath = true; break;
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 302 UString fullPath;
304 fullPath = kEmptyFileAlias;
309 fullPath = prop.bstrVal;
311 _filePath = fullPath;
513 FString FullPath;
654 FString path = DirPrefix + dirItem.FullPath;
806 di.FullPath = name;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 613 std::string FullPath;
616 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath);
619 auto It = FullPathMap.find(FullPath);
621 FullPathMap[FullPath] = FileIndex;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 110 StringRef FullPath = getFullFilepath(F);
111 NextId = OS.EmitCVFileDirective(NextId, FullPath);
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 173 StringRef FullPath = getFullFilepath(F);
175 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId));
191 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h     [all...]

Completed in 561 milliseconds