HomeSort by: relevance | last modified time | path
    Searched refs:DirPath (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDataFlowTrace.cpp 22 void DataFlowTrace::Init(const std::string &DirPath,
24 if (DirPath.empty()) return;
26 Printf("INFO: DataFlowTrace: reading from '%s'\n", DirPath.c_str());
28 GetSizedFilesFromDir(DirPath, &Files);
32 std::ifstream IF(DirPlusFile(DirPath, kFunctionsTxt));
FuzzerDataFlowTrace.h 41 void Init(const std::string &DirPath, const std::string &FocusFunction);
FuzzerIO.cpp 98 std::string DirPlusFile(const std::string &DirPath,
100 return DirPath + GetSeparator() + FileName;
FuzzerIO.h 34 std::string DirPlusFile(const std::string &DirPath,
  /src/external/apache2/llvm/dist/clang/include/clang/IndexSerialization/
SerializablePathCollection.h 53 struct DirPath {
57 DirPath(RootDirKind Root, const StringPool::StringOffsetSize &Path)
62 DirPath Dir;
65 FilePath(const DirPath &Dir, const StringPool::StringOffsetSize &Filename)
92 llvm::StringMap<PathPool::DirPath, llvm::BumpPtrAllocator> UniqueDirs;
123 PathPool::DirPath tryStoreDirPath(llvm::StringRef dirStr);
  /src/external/apache2/llvm/dist/clang/lib/IndexSerialization/
SerializablePathCollection.cpp 25 FilePaths.emplace_back(DirPath(Root, Dir), Paths.add(Filename));
61 PathPool::DirPath SerializablePathCollection::tryStoreDirPath(StringRef Dir) {
88 PathPool::DirPath Result(Root, Paths.addDirPath(Dir));
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VirtualFileSystem.cpp 464 std::string DirPath;
468 /// Sets \c CurrentDirIter to an iterator of \c DirPath in the next file
474 CurrentDirIter = FSList.back()->dir_begin(DirPath, EC);
514 DirPath(std::move(Dir)) {
516 CurrentDirIter = FSList.back()->dir_begin(DirPath, EC);
526 DirPath(std::move(FallbackDir)) {
1103 RedirectingFSDirRemapIterImpl(std::string DirPath,
1105 : Dir(std::move(DirPath)), DirStyle(getExistingStyle(Dir)),
  /src/external/apache2/llvm/dist/clang/lib/Lex/
HeaderSearch.cpp 1797 llvm::SmallString<32> DirPath(Dir.begin(), Dir.end());
1799 fs::make_absolute(WorkingDir, DirPath);
1800 path::remove_dots(DirPath, /*remove_dot_dot=*/true);
1801 Dir = DirPath;
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 1990 static std::vector<std::string> getWhiteListFilenames(StringRef DirPath) {
1995 if (DirPath.empty() || !is_directory(DirPath))
1999 directory_iterator DI = directory_iterator(DirPath, EC);

Completed in 41 milliseconds