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

/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp38 /// \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) { argument
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, ConsumedLengt
170 insert(StringRef NewPath) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp92 PathPieces NewPath; local
93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
95 Macro->subPieces = NewPath;

Completed in 342 milliseconds