Searched refs:Completions (Results 1 – 7 of 7) sorted by relevance
44 std::vector<LineEditor::Completion> Completions; member46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions) in TestListCompleter()47 : Completions(Completions) {} in TestListCompleter()53 return Completions; in operator ()()70 ASSERT_EQ(2u, CA.Completions.size()); in TEST_F()71 ASSERT_EQ("int foo()", CA.Completions[0]); in TEST_F()72 ASSERT_EQ("int bar()", CA.Completions[1]); in TEST_F()
73 Action.Completions.push_back(I->DisplayText); in complete()151 if (Action.Completions.empty()) { in ElCompletionFn()170 for (std::vector<std::string>::iterator I = Action.Completions.begin(), in ElCompletionFn()171 E = Action.Completions.end(); in ElCompletionFn()
443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion()581 std::sort(P.Completions.begin(), P.Completions.end(), in completeExpression()588 return P.Completions; in completeExpression()
451 std::vector<MatcherCompletion> Completions; in getMatcherCompletions() local521 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity); in getMatcherCompletions()525 return Completions; in getMatcherCompletions()
230 typedef std::vector<BlockCompletion> Completions; typedef240 Completions completions_;
62 std::vector<std::string> Completions; member
250 std::vector<MatcherCompletion> Completions; variable