OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lexicon
(Results
1 - 5
of
5
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py
291
def __init__(self,
lexicon
, flags=0):
293
self.
lexicon
=
lexicon
298
for phrase, action in
lexicon
:
317
action = self.
lexicon
[m.lastindex-1][1]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py
291
def __init__(self,
lexicon
, flags=0):
293
self.
lexicon
=
lexicon
298
for phrase, action in
lexicon
:
317
action = self.
lexicon
[m.lastindex-1][1]
/external/chromium_org/third_party/cython/src/Cython/Plex/
Scanners.pxd
7
cdef public
lexicon
Scanners.py
21
using the token set specified by a Plex.
Lexicon
.
25
Scanner(
lexicon
, stream, name = '')
50
#
lexicon
= None #
Lexicon
68
def __init__(self,
lexicon
, stream, name = '', initial_pos = None):
70
Scanner(
lexicon
, stream, name = '')
72
|
lexicon
| is a Plex.
Lexicon
instance specifying the lexical tokens
94
self.
lexicon
=
lexicon
[
all
...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
Scanning.py
17
from
Lexicon
import any_string_prefix, make_lexicon, IDENT
27
lexicon
= None
variable
30
global
lexicon
31
if not
lexicon
:
32
lexicon
= make_lexicon()
33
return
lexicon
Completed in 978 milliseconds