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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 3 The completer completes keywords, built-ins and globals in a selectable
16 - Exceptions raised by the completer function are *ignored* (and generally cause
28 raw_input(), and thus these also benefit/suffer from the completer
30 specifying its own completer function and using raw_input() for all
41 __all__ = ["Completer"]
43 class Completer:
45 """Create a new completer for the command line.
47 Completer([namespace]) -> completer instance.
53 Completer instances should be used as the completion mechanism o
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 3 The completer completes keywords, built-ins and globals in a selectable
16 - Exceptions raised by the completer function are *ignored* (and generally cause
28 raw_input(), and thus these also benefit/suffer from the completer
30 specifying its own completer function and using raw_input() for all
41 __all__ = ["Completer"]
43 class Completer:
45 """Create a new completer for the command line.
47 Completer([namespace]) -> completer instance.
53 Completer instances should be used as the completion mechanism o
    [all...]
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 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, thi
    [all...]
  /external/lldb/source/Commands/
CommandCompletions.cpp 104 SourceFileCompleter completer (interpreter,
115 completer.DoCompletion (&null_searcher);
119 completer.DoCompletion (searcher);
354 ModuleCompleter completer (interpreter,
364 completer.DoCompletion (&null_searcher);
368 completer.DoCompletion (searcher);
385 SymbolCompleter completer (interpreter,
395 completer.DoCompletion (&null_searcher);
399 completer.DoCompletion (searcher);
477 CommandCompletions::Completer::Completer
    [all...]
  /external/lldb/include/lldb/Interpreter/
CommandCompletions.h 76 // These are the generic completer functions:
160 // The Completer class is a convenient base class for building searchers
161 // that go along with the SearchFilter passed to the standard Completer
164 class Completer : public Searcher
167 Completer (CommandInterpreter &interpreter,
173 virtual ~Completer ();
194 DISALLOW_COPY_AND_ASSIGN (Completer);
198 // SouceFileCompleter implements the source file completer
200 class SourceFileCompleter : public Completer
232 // ModuleCompleter implements the module completer
    [all...]

Completed in 83 milliseconds