Home | History | Annotate | Download | only in LineEditor

Lines Matching refs:Comps

58   std::vector<LineEditor::Completion> Comps;
60 Comps.push_back(LineEditor::Completion("foo", "int foo()"));
61 LE->setListCompleter(TestListCompleter(Comps));
66 Comps.push_back(LineEditor::Completion("bar", "int bar()"));
67 LE->setListCompleter(TestListCompleter(Comps));
74 Comps.clear();
75 Comps.push_back(LineEditor::Completion("fee", "int fee()"));
76 Comps.push_back(LineEditor::Completion("fi", "int fi()"));
77 Comps.push_back(LineEditor::Completion("foe", "int foe()"));
78 Comps.push_back(LineEditor::Completion("fum", "int fum()"));
79 LE->setListCompleter(TestListCompleter(Comps));