HomeSort by relevance Sort by last modified time
    Searched refs:FileMatchTrie (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Tooling/
FileMatchTrie.h 1 //===--- FileMatchTrie.h - --------------------------------------*- C++ -*-===//
48 /// For a given input file, the \c FileMatchTrie finds its entries in order
57 class FileMatchTrie {
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();
JSONCompilationDatabase.h 20 #include "clang/Tooling/FileMatchTrie.h"
105 FileMatchTrie MatchTrie;
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 1 //===--- 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()
163 FileMatchTrie::FileMatchTrie(PathComparator *Comparator)
166 FileMatchTrie::~FileMatchTrie()
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 14 #include "clang/Tooling/FileMatchTrie.h"
145 FileMatchTrie Trie;

Completed in 1608 milliseconds