Home
last modified time | relevance | path

Searched refs:AllChildren (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Tooling/
DFileMatchTrie.cpp119 std::vector<StringRef> AllChildren; in findEquivalent() local
120 getAll(AllChildren, MatchingChild); in findEquivalent()
122 for (unsigned i = 0; i < AllChildren.size(); i++) { in findEquivalent()
123 if (Comparator.equivalent(AllChildren[i], FileName)) { in findEquivalent()
125 Result = AllChildren[i]; in findEquivalent()
/external/llvm-project/clang/lib/Tooling/
DFileMatchTrie.cpp136 std::vector<StringRef> AllChildren; in findEquivalent() local
137 getAll(AllChildren, MatchingChild); in findEquivalent()
139 for (const auto &Child : AllChildren) { in findEquivalent()
/external/llvm-project/clang-tools-extra/clangd/index/dex/
DIterator.cpp27 explicit AndIterator(std::vector<std::unique_ptr<Iterator>> AllChildren) in AndIterator() argument
28 : Iterator(Kind::And), Children(std::move(AllChildren)) { in AndIterator()
136 explicit OrIterator(std::vector<std::unique_ptr<Iterator>> AllChildren) in OrIterator() argument
137 : Iterator(Kind::Or), Children(std::move(AllChildren)) { in OrIterator()