Searched defs:NewPath (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp40 /// \brief Inserts 'NewPath' into this trie. \c ConsumedLength denotes
41 /// the number of \c NewPath's trailing characters already consumed during
54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { argument
57 if (llvm::sys::path::is_relative(NewPath))
60 // This is an empty leaf. Store NewPath and return.
61 Path = NewPath;
65 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
66 if (NewPath == Path)
74 StringRef(NewPath).drop_back(ConsumedLength)));
75 Children[Element].insert(NewPath, ConsumedLengt
174 insert(StringRef NewPath) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp90 PathPieces NewPath; local
91 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
93 Macro->subPieces = NewPath;

Completed in 72 milliseconds