HomeSort by relevance Sort by last modified time
    Searched refs:NewPath (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Tooling/
FileMatchTrie.cpp 38 /// \brief Inserts 'NewPath' into this trie. \c ConsumedLength denotes
39 /// the number of \c NewPath's trailing characters already consumed during
52 void insert(StringRef NewPath, unsigned ConsumedLength = 0) {
55 if (llvm::sys::path::is_relative(NewPath))
58 // This is an empty leaf. Store NewPath and return.
59 Path = NewPath;
63 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
64 if (NewPath == Path)
72 StringRef(NewPath).drop_back(ConsumedLength)));
73 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1)
    [all...]
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 69 void insert(StringRef NewPath);
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 82 SmallString<128> NewPath;
83 llvm::sys::fs::unique_file(Path.str(), fd, NewPath);
84 return NewPath.str();
  /external/clang/lib/Basic/
FileManager.cpp 495 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
496 llvm::sys::path::append(NewPath, pathRef);
497 path = NewPath;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 90 PathPieces NewPath;
91 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
93 Macro->subPieces = NewPath;
    [all...]

Completed in 1413 milliseconds