OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewPath
(Results
1 - 4
of
4
) 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/Basic/
FileManager.cpp
377
SmallString<128>
NewPath
(FileSystemOpts.WorkingDir);
378
llvm::sys::path::append(
NewPath
, pathRef);
379
path =
NewPath
;
/external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp
92
PathPieces
NewPath
;
93
Macro->subPieces.flattenTo(Primary,
NewPath
, ShouldFlattenMacros);
95
Macro->subPieces =
NewPath
;
[
all
...]
Completed in 45 milliseconds