HomeSort by relevance Sort by last modified time
    Searched defs:lex (Results 1 - 25 of 43) sorted by null

1 2

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
55 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
57 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
58 | [< ' ('\n'); stream=lex >] -> stream
  /external/javassist/src/main/javassist/compiler/
CompileError.java 22 private Lex lex; field in class:CompileError
25 public CompileError(String s, Lex l) {
27 lex = l;
32 lex = null;
43 public Lex getLex() { return lex; }
Parser.java 21 private Lex lex; field in class:Parser
23 public Parser(Lex lex) {
24 this.lex = lex;
27 public boolean hasMore() { return lex.lookAhead() >= 0; }
46 if (lex.lookAhead() == Identifier && lex.lookAhead(1) == '(') {
53 if (lex.get() != Identifier
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Main.java 7 LangLexer lex = new LangLexer(input); local
8 CommonTokenStream tokens = new CommonTokenStream(lex);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 56 m_currentTokenType = lex(m_currentElement);
63 TokenType lex(String&);
72 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(String& element) function in class:WebCore::IDBKeyPathLexer
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Preprocessor.cpp 84 void Preprocessor::lex(Token* token) function in class:pp::Preprocessor
89 mImpl->macroExpander.lex(token);
MacroExpander.cpp 29 virtual void lex(Token* token) function in class:pp::TokenLexer
66 void MacroExpander::lex(Token* token) function in class:pp::MacroExpander
121 mLexer->lex(token);
321 expander.lex(&token);
325 expander.lex(&token);
DirectiveParser.cpp 115 lexer->lex(token);
155 virtual void lex(Token* token) function in class:pp::DefinedParser
159 mLexer->lex(token);
166 mLexer->lex(token);
170 mLexer->lex(token);
185 mLexer->lex(token);
219 void DirectiveParser::lex(Token* token) function in class:pp::DirectiveParser
223 mTokenizer->lex(token);
251 mTokenizer->lex(token);
331 mTokenizer->lex(token)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 41 self.lex(s)
45 def lex(self,s): member in class:Lexer
158 #print "lex ",repr(s[i]),is_float
  /external/chromium_org/ppapi/generators/
idl_lexer.py 11 # The lexer is uses the PLY lex library to build a tokenizer which understands
28 from ply import lex namespace
33 from ply import lex namespace
44 # 'tokens' is a value required by lex which specifies the complete list
97 # 'literals' is a value expected by lex which specifies a list of valid
103 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
212 self.lexobj = lex.lex(object=self, lextab=None, optimize=0)
343 except lex.LexError as le:
  /external/chromium_org/tools/idl_parser/
idl_lexer.py 28 from ply import lex namespace
34 from ply import lex namespace
40 # 'tokens' is a value required by lex which specifies the complete list
105 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
236 self._lexobj = lex.lex(object=self, lextab=None, optimize=0)
240 # 'literals' is a value expected by lex which specifies a list of valid
  /external/llvm/utils/lit/lit/
ShUtil.py 62 # Otherwise, lex the operator and convert to a redirection
132 lex_one_token - Lex a single 'sh' token. """
162 def lex(self): member in class:ShLexer
175 self.tokens = ShLexer(data, win32Escapes = win32Escapes).lex()
177 def lex(self): member in class:ShParser
183 token = self.lex()
189 tok = self.lex()
206 args.append(self.lex())
215 op = self.lex()
216 arg = self.lex()
253 def lex(self, str, *args, **kwargs): member in class:TestShLexer
    [all...]
  /external/svox/pico/lib/
picowa.c 66 /* lex knowledge base */
67 picoklex_Lex lex; member in struct:wa_subobj
105 /* kb lex */
106 wa->lex = picoklex_getLex(this->voice->kbArray[PICOKNOW_KBID_LEX_MAIN]);
107 if (wa->lex == NULL) {
111 PICODBG_DEBUG(("got lex"));
290 if (!found && !picoklex_lexLookup(wa->lex, content, head->len, &lexres)) {
291 /* no lex entry found, WORDGRAPH(POS,NA)graph */
309 ensured for user lex too */
344 /* set lex pos in info1 *
    [all...]
picosa.c 86 2. lex-index lookup and G2P (both directions possible, left-to-right done):
229 /* lex knowledge base */
230 picoklex_Lex lex; member in struct:sa_subobj
402 /* kb lex */
403 sa->lex = picoklex_getLex(this->voice->kbArray[PICOKNOW_KBID_LEX_MAIN]);
404 if (sa->lex == NULL) {
408 PICODBG_DEBUG(("got lex"));
735 picoklex_Lex lex,
742 if (picoklex_lexIndLookup(lex, &(sa->cbuf1[sa->headx[ind].cind + 1]),
1197 picoklex_Lex lex; local
    [all...]
  /system/core/libcutils/
config_utils.c 232 static int lex(cstate *cs, int value)
240 #define lex(cs,v) _lex(cs,v) macro
248 switch(lex(cs, 0)){
272 switch(lex(cs, 1)) {
274 if(lex(cs, 0) != T_TEXT)
300 switch(lex(&cs, 0)) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 63 ANTLRv3Lexer lex = new ANTLRv3Lexer(input); local
64 tokens = new TokenRewriteStream(lex);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 420 int Parser::lex(void* data) function in class:Parser
  /external/chromium_org/third_party/ply/
lex.py 2 # ply: lex.py
413 # ==== Lex Builder ===
865 def lex(module=None,object=None,debug=0,optimize=0,lextab="lextab",reflags=0,nowarn=0,outputdir="", debuglog=None, errorlog=None): function
    [all...]
  /external/qemu/android/
config.c 260 static int lex(cstate *cs, int value)
268 #define lex(cs,v) _lex(cs,v) macro
277 switch(lex(cs, 0)){
298 switch(lex(cs, 1)) {
300 if(lex(cs, 0) != T_TEXT) return -1;
326 switch(lex(&cs, 0)){
  /external/chromium_org/third_party/jinja2/
environment.py 400 def lex(self, source, name=None, filename=None): member in class:Environment
401 """Lex the given sourcecode and return a generator that yields
419 called for all parsing and compiling methods but *not* for :meth:`lex`
    [all...]

Completed in 869 milliseconds

1 2