Home | History | Annotate | Download | only in LineEditor

Lines Matching full:completer

80   /// Set the completer for this LineEditor. A completer is a function object
85 Completer.reset(new CompleterModel<T>(Comp));
88 /// Set the completer for this LineEditor to the given list completer.
89 /// A list completer is a function object which takes arguments of type
93 Completer.reset(new ListCompleterModel<T>(Comp));
96 /// Use the current completer to produce a CompletionAction for the given
97 /// completion request. If the current completer is a list completer, this
148 std::unique_ptr<const CompleterConcept> Completer;