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

/external/clang/include/clang/Tooling/
H A DFileMatchTrie.h1 //===--- FileMatchTrie.h - --------------------------------------*- C++ -*-===//
48 /// For a given input file, the \c FileMatchTrie finds its entries in order
57 class FileMatchTrie { class in namespace:clang::tooling
59 FileMatchTrie();
61 /// \brief Construct a new \c FileMatchTrie with the given \c PathComparator.
63 /// The \c FileMatchTrie takes ownership of 'Comparator'. Used for testing.
64 FileMatchTrie(PathComparator* Comparator);
66 ~FileMatchTrie();
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp1 //===--- FileMatchTrie.cpp - ----------------------------------------------===//
10 // This file contains the implementation of a FileMatchTrie.
14 #include "clang/Tooling/FileMatchTrie.h"
32 /// \brief A node of the \c FileMatchTrie.
53 // We cannot put relative paths into the FileMatchTrie as then a path can be
160 FileMatchTrie::FileMatchTrie() function in class:clang::tooling::FileMatchTrie
163 FileMatchTrie::FileMatchTrie(PathComparator *Comparator) function in class:clang::tooling::FileMatchTrie
166 FileMatchTrie
[all...]

Completed in 275 milliseconds