HomeSort by: relevance | last modified time | path
    Searched defs:Path (Results 1 - 25 of 111) sorted by relevancy

1 2 3 4 5

  /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/
autoconf.py 12 from pathlib import Path
17 ac_vars_dir = Path(__file__).resolve().parent / ".ac_vars"
19 path
20 for path in ac_vars_dir.iterdir()
21 if path.is_file() and not path.name.endswith(".in")
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
TextAPIContext.h 25 std::string Path;
  /src/external/mpl/bind/dist/bin/tests/system/
convert_junit_to_trs.py 9 from pathlib import Path
62 type=Path,
  /src/external/mpl/bind/dist/doc/arm/_ext/
mergegrammar.py 16 from pathlib import Path
25 for file in Path("../misc/").glob("*.zoneopt"):
43 with Path("../misc/options").open(encoding="ascii") as fp:
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerShmemWindows.cpp 24 std::string SharedMemoryRegion::Path(const char *Name) {
FuzzerShmemPosix.cpp 29 std::string SharedMemoryRegion::Path(const char *Name) {
52 int fd = open(Path(Name).c_str(), O_CREAT | O_RDWR, 0777);
68 int fd = open(Path(Name).c_str(), O_RDWR);
86 return 0 == unlink(Path(Name).c_str());
FuzzerIOPosix.cpp 28 bool IsFile(const std::string &Path) {
30 if (stat(Path.c_str(), &St))
35 static bool IsDirectory(const std::string &Path) {
37 if (stat(Path.c_str(), &St))
42 size_t FileSize(const std::string &Path) {
44 if (stat(Path.c_str(), &St))
49 std::string Basename(const std::string &Path) {
50 size_t Pos = Path.rfind(GetSeparator());
51 if (Pos == std::string::npos) return Path;
52 assert(Pos < Path.size())
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dswload.c 152 char *Path;
181 Path = AcpiPsGetNextNamestring (&WalkState->ParserState);
199 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
209 AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0, 0);
210 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
217 ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, Path, Status);
352 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
387 ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, Path, Status);
410 Op->Named.Path = Path;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
FileMatchTrie.cpp 17 #include "llvm/Support/Path.h"
41 /// Each node has storage for up to one path and a map mapping a path segment to
49 /// An insert of a path
52 /// - If the node has a path 'p2' but no children, take the last path segment
58 /// An insert operation is linear in the number of a path's segments.
60 // We cannot put relative paths into the FileMatchTrie as then a path can be
61 // a postfix of another path, violating a core assumption of the trie.
62 if (llvm::sys::path::is_relative(NewPath)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
9 // This file declares the llvm::sys::path namespace. It is designed after
11 // path class.
26 namespace path { namespace in namespace:llvm::sys
33 /// Path iterator.
36 /// \a path. The traversal order is as follows:
55 StringRef Path; ///< The entire path.
56 StringRef Component; ///< The current component. Not necessarily in Path
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolCompiland.cpp 18 #include "llvm/Support/Path.h"
29 return sys::path::filename(getSourceFileFullPath()).str();
35 // RecordedResult could be the basename, relative path or full path of the
40 // cmd (Path)\\FileName -> RecordedResult = (Path)\\FileName
56 if (sys::path::is_absolute(EnvSrc))
65 std::string Path = EnvWorkingDir + "\\" + EnvSrc;
66 std::replace(Path.begin(), Path.end(), '/', '\\')
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
template.py 15 from pathlib import Path
29 def __init__(self, directory: str | Path, env_vars=ALL):
35 self.directory = Path(directory)
58 if not Path(template).is_file():
60 if not Path(template).is_file():
run.py 12 from pathlib import Path
104 path = Path(script)
105 script = str(path)
107 if not path.exists():
168 cfg_dir = os.path.join(os.getcwd(), cfg_dir)
169 assert os.path.isdir(cfg_dir)
171 cfg_file = os.path.join(cfg_dir, cfg_file)
172 assert os.path.isfile(cfg_file)
mark.py 14 from pathlib import Path
34 DNSRPS_BIN = Path(os.environ["TOP_BUILDDIR"]) / "bin/tests/system/rpz/dnsrps"
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Version.cpp 63 std::string Path = getClangRepositoryPath();
65 if (!Path.empty() || !Revision.empty()) {
67 if (!Path.empty())
68 OS << Path;
70 if (!Path.empty())
  /src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-dlltool/
DlltoolDriver.cpp 20 #include "llvm/Support/Path.h"
56 // Opens a file. Path has to be resolved already.
57 static std::unique_ptr<MemoryBuffer> openFile(const Twine &Path) {
58 ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> MB = MemoryBuffer::getFile(Path);
61 llvm::errs() << "cannot open file " << Path << ": " << EC.message() << "\n";
149 std::string Path = std::string(Args.getLastArgValue(OPT_l));
180 if (!Path.empty() &&
181 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true))
  /src/external/mpl/bind/dist/bin/tests/system/isctest/log/
basic.py 12 from pathlib import Path
56 def init_module_logger(system_test_name: str, testdir: Path):
  /src/sys/external/bsd/acpica/dist/compiler/
aslopt.c 99 * TargetPath - External full path to the target node
100 * NewPath - Where the optimized path is returned
122 char *Path;
132 * name in the search path before the one we want, the nodes will
135 Path = &(((char *) TargetPath->Pointer)[
141 Status = AcpiNsLookup (&ScopeInfo, Path, ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
152 * path that precludes the use of this optimization.
166 "NAMESEG: %-24s", Path));
171 strcpy (*NewPath, Path);
191 * CurrentPath - External full path to the current nod
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsaccess.c 340 char *Path = Pathname;
423 Path = __UNCONST("");
443 if (*Path == (UINT8) AML_ROOT_PREFIX)
452 Path++;
455 "Path is absolute from root [%p]\n", ThisNode));
471 while (*Path == (UINT8) AML_PARENT_PREFIX)
481 Path++;
491 * the internal path for error message.
498 "%s: Path has too many parent prefixes (^)",
511 "Search scope is [%4.4s], path has %u carat(s)\n"
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.cpp 77 llvm::SmallVector<APValue::LValuePathEntry, 5> Path;
107 // Build the path into the object.
111 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex()));
117 // Create a path entry for the field.
120 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual}));
132 return APValue(Base, Offset, Path, IsOnePastEnd, IsNullPtr);
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/mac/
DirectoryWatcher-mac.cpp 15 #include "llvm/Support/Path.h"
114 StringRef Path = ((const char **)EventPaths)[i];
125 Path == ctx->WatchedPath) {
136 llvm::sys::path::filename(Path));
139 if (!getFileStatus(Path).hasValue()) {
141 llvm::sys::path::filename(Path));
144 llvm::sys::path::filename(Path));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AVR.cpp 425 std::string Path = getDriver().SysRoot + PossiblePath.str();
427 if (llvm::sys::fs::is_directory(Path))
428 return Optional<std::string>(Path);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 29 #include "llvm/Support/Path.h"
77 SmallString<128> Path(Filename);
78 llvm::sys::path::replace_extension(Path,
79 NewSuffix + llvm::sys::path::extension(Path));
80 return std::string(Path.str());
87 SmallString<128> Path;
88 llvm::sys::fs::createTemporaryFile(llvm::sys::path::filename(Filename),
89 llvm::sys::path::extension(Filename).drop_front(), fd
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithThinLTOSummaries/
LLJITWithThinLTOSummaries.cpp 14 // (2) Find the path of the module that defines "main".
57 // Path of the module summary index file.
81 for (const std::string &Path : ModulePaths) {
82 OS << " " << Path << "\n";
115 for (const std::string &Path : ModulePaths) {
116 OS << " " << Path << "\n";
132 // Lookup the a function in the ModuleSummaryIndex and return the path of the
156 // Parse the bitcode module from the given path into a ThreadSafeModule.
157 Expected<ThreadSafeModule> loadModule(StringRef Path,
159 outs() << "About to load module: " << Path << "\n"
    [all...]
  /src/external/gpl3/gdb/dist/sim/common/
gennltvals.py 25 If the path to newlib is not specified, it will be searched for in:
31 from pathlib import Path
38 PROG = Path(__file__).name
72 def extract_syms(cpp: str, srcdir: Path,
102 def gentvals(output_dir: Path,
103 cpp: str, srctype: str, srcdir: Path,
140 def gen_common(output_dir: Path, newlib: Path, cpp: str):
159 def gen_target_syscall(output_dir: Path, newlib: Path, cpp: str)
    [all...]

Completed in 28 milliseconds

1 2 3 4 5