HomeSort by: relevance | last modified time | path
    Searched defs:FullPath (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
uterror.c 234 char *FullPath;
266 FullPath = AcpiNsBuildPrefixedPathname (PrefixScope, InternalPath);
269 FullPath ? FullPath : "Could not get pathname",
272 if (FullPath)
274 ACPI_FREE (FullPath);
  /src/external/apache2/llvm/dist/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);
49 sys::path::native(FullPath);
51 return std::string(FullPath.str());
60 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
62 auto ParentDir = sys::path::parent_path(FullPath);
68 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write)
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsnames.c 238 * FullPath - Where the path name is returned
243 * of pathname + 1) which means the 'FullPath' contains a trailing
247 * Note that if the size of 'FullPath' isn't large enough to
251 * to determine the buffer size of 'FullPath'.
258 char *FullPath,
283 * validate both FullPath and PathSize.
285 if (!FullPath)
307 ACPI_PATH_PUT8(FullPath, PathSize, AML_DUAL_NAME_PREFIX, Length);
321 ACPI_PATH_PUT8(FullPath, PathSize, c, Length);
328 ACPI_PATH_PUT8(FullPath, PathSize, AML_ROOT_PREFIX, Length)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.cpp 143 SmallString<80> FullPath;
145 FullPath = *ExternalFilePrependPath;
146 sys::path::append(FullPath, ExternalFilePath);
150 MemoryBuffer::getFile(FullPath);
152 return createFileError(FullPath, EC);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/
llvm-libtool-darwin.cpp 136 Expected<std::string> FullPath = searchForFile(
138 if (!FullPath)
139 return FullPath.takeError();
140 InputFiles.push_back(FullPath.get());
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 785 std::string FullPath;
788 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath);
791 auto It = FullPathMap.find(FullPath);
793 FullPathMap[FullPath] = FileIndex;
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 3429 FullPathTy &FullPath,
3432 Paths.push_back(FullPath);
3443 FullPath.insert(BaseSubobject(Base, NewOffset));
3445 IntroducingObject, FullPath, Paths);
3446 FullPath.pop_back();
3468 const FullPathTy &FullPath) {
3472 for (const BaseSubobject &BSO : FullPath) {
3572 FullPathTy FullPath;
3577 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath,
3579 FullPath.clear()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 207 StringRef FullPath = getFullFilepath(F);
209 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId));
232 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes,

Completed in 28 milliseconds