/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 | 59 m_currentTokenType = lex(m_currentElement); 66 TokenType lex(String&); 75 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(String& element) function in class:WebCore::IDBKeyPathLexer
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Preprocessor.cpp | 89 void Preprocessor::lex(Token* token) function in class:pp::Preprocessor 94 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/third_party/WebKit/Source/core/css/ |
CSSTokenizer.h | 61 inline int lex(void* yylval) { return (this->*m_lexFunc)(yylval); } function in class:WebCore::CSSTokenizer
|
/external/chromium_org/tools/idl_parser/ |
idl_lexer.py | 27 from ply import lex namespace 33 from ply import lex namespace 39 # 'literals' is a value expected by lex which specifies a list of valid 46 # 'tokens' is a value required by lex which specifies the complete list 111 # Lex assumes any value or function in the form of 't_<TYPE>' represents a 247 self._lexobj = lex.lex(object=self, lextab=None, optimize=0)
|
/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...] |
/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/mojo/public/bindings/parse/ |
mojo_parser.py | 18 from ply import lex namespace 26 from ply import lex namespace 46 # This field is required by lex to specify the complete list of valid tokens. 259 lex.lex(object=lexer)
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathParser.cpp | 419 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)){
|