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

  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 172 /// \return The list of completions, which may be empty if there are no
173 /// available completions or if an error occurred.
200 std::vector<MatcherCompletion> Completions;
  /external/llvm/unittests/LineEditor/
LineEditor.cpp 44 std::vector<LineEditor::Completion> Completions;
46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions)
47 : Completions(Completions) {}
53 return Completions;
70 ASSERT_EQ(2u, CA.Completions.size());
71 ASSERT_EQ("int foo()", CA.Completions[0]);
72 ASSERT_EQ("int bar()", CA.Completions[1]);
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 52 /// Show Completions, or beep if the list is empty.
61 /// The list of completions to show.
62 std::vector<std::string> Completions;
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 404 CompletionsTy Completions;
472 Completions[std::make_pair(MaxSpecificity, I->first())] =
478 for (CompletionsTy::iterator I = Completions.begin(), E = Completions.end();

Completed in 812 milliseconds