OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Completer
(Results
1 - 6
of
6
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_rlcompleter.py
7
""" Trivial class used in testing rlcompleter.
Completer
. """
13
self.stdcompleter = rlcompleter.
Completer
()
14
self.
completer
= rlcompleter.
Completer
(dict(spam=int,
28
self.assertFalse(self.
completer
.use_main_ns)
29
self.assertFalse(rlcompleter.
Completer
(A()).use_main_ns)
30
self.assertRaises(TypeError, rlcompleter.
Completer
, B((1,)))
41
self.assertEqual(self.
completer
.global_matches('CompleteM'),
43
self.assertEqual(self.
completer
.global_matches('eg'),
46
self.assertEqual(self.
completer
.global_matches('CompleteM')
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_rlcompleter.py
7
""" Trivial class used in testing rlcompleter.
Completer
. """
13
self.stdcompleter = rlcompleter.
Completer
()
14
self.
completer
= rlcompleter.
Completer
(dict(spam=int,
28
self.assertFalse(self.
completer
.use_main_ns)
29
self.assertFalse(rlcompleter.
Completer
(A()).use_main_ns)
30
self.assertRaises(TypeError, rlcompleter.
Completer
, B((1,)))
41
self.assertEqual(self.
completer
.global_matches('CompleteM'),
43
self.assertEqual(self.
completer
.global_matches('eg'),
46
self.assertEqual(self.
completer
.global_matches('CompleteM')
[
all
...]
/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/clang/lib/Parse/
ParseExpr.cpp
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
[
all
...]
Completed in 148 milliseconds