/prebuilts/misc/common/swig/include/2.0.11/d/ |
dkw.swg | 7 // Source: http://www.digitalmars.com/d/{1.0,2.0}/lex.html and
|
/external/llvm/include/llvm/MC/MCParser/ |
MCAsmLexer.h | 99 /// is safe to store across calls to Lex(). 103 // also not generally what we want (it is nicer for recovery etc. to lex 123br 150 const AsmToken &Lex() {
|
/external/mesa3d/src/mesa/ |
Makefile.am | 61 program/lex.yy.c 82 program/lex.yy.c: program/program_lexer.l 84 $(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $<
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_shlex.py | 162 lex = shlex.shlex(StringIO(s)) 163 tok = lex.get_token() 166 tok = lex.get_token()
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_shlex.py | 162 lex = shlex.shlex(StringIO(s)) 163 tok = lex.get_token() 166 tok = lex.get_token()
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/asm/internal/asm/ |
expr_test.go | 11 "bootstrap/asm/internal/lex" 65 p.start(lex.Tokenize(test.input)) 124 p.start(lex.Tokenize(test.input))
|
/prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/ |
expr_test.go | 8 "cmd/asm/internal/lex" 62 p.start(lex.Tokenize(test.input)) 121 p.start(lex.Tokenize(test.input))
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/asm/internal/asm/ |
expr_test.go | 11 "bootstrap/asm/internal/lex" 65 p.start(lex.Tokenize(test.input)) 124 p.start(lex.Tokenize(test.input))
|
/prebuilts/go/linux-x86/src/cmd/asm/internal/asm/ |
expr_test.go | 8 "cmd/asm/internal/lex" 62 p.start(lex.Tokenize(test.input)) 121 p.start(lex.Tokenize(test.input))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_shlex.py | 162 lex = shlex.shlex(StringIO(s)) 163 tok = lex.get_token() 166 tok = lex.get_token()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_shlex.py | 162 lex = shlex.shlex(StringIO(s)) 163 tok = lex.get_token() 166 tok = lex.get_token()
|
/prebuilts/misc/linux-x86/flex/ |
flex-2.5.39.tar.gz | |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 69 Parser.Lex(); 902 Parser.Lex(); // Eat percent token. 942 Parser.Lex(); // Eat 'st' 947 // Lex the paren. 948 getParser().Lex(); 965 if (getParser().Lex().isNot(AsmToken::RParen)) 969 Parser.Lex(); // Eat ')' 992 Parser.Lex(); // Eat it. [all...] |
/external/selinux/sepolgen/src/sepolgen/ |
lex.py | 2 # ply: lex.py 483 # lex(module) 487 def lex(module=None,object=None,debug=0,optimize=0,lextab="lextab",reflags=0,nowarn=0): function 548 raise SyntaxError("lex: module does not define 'tokens'") 550 raise SyntaxError("lex: tokens must be a list or tuple.") 557 print("lex: Bad token name '%s'" % n) 560 print("lex: Warning. Token '%s' multiply defined." % n) 566 print("lex: tokens = '%s'" % list(lexobj.lextokens.keys())) 571 print("lex: Invalid literal %s. Must be a single character" % repr(c)) 576 print("lex: Invalid literals specification. literals must be a sequence of characters." [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
lex.py | 2 # ply: lex.py 483 # lex(module) 487 def lex(module=None,object=None,debug=0,optimize=0,lextab="lextab",reflags=0,nowarn=0): function 548 raise SyntaxError("lex: module does not define 'tokens'") 550 raise SyntaxError("lex: tokens must be a list or tuple.") 557 print("lex: Bad token name '%s'" % n) 560 print("lex: Warning. Token '%s' multiply defined." % n) 566 print("lex: tokens = '%s'" % list(lexobj.lextokens.keys())) 571 print("lex: Invalid literal %s. Must be a single character" % repr(c)) 576 print("lex: Invalid literals specification. literals must be a sequence of characters." [all...] |
/external/clang/lib/Rewrite/ |
HTMLRewrite.cpp | 17 #include "clang/Lex/Preprocessor.h" 18 #include "clang/Lex/TokenConcatenation.h" 369 // Lex all the tokens in raw mode, to avoid entering #includes or expanding 447 // Re-lex the raw token stream into a token buffer. 454 // Lex all the tokens in raw mode, to avoid entering #includes or expanding 509 // Lex all the tokens. 511 TmpPP.Lex(Tok); 515 TmpPP.Lex(Tok); 527 TmpPP.Lex(Tok); 540 TmpPP.Lex(Tok) [all...] |
/external/clang/include/clang/Lex/ |
Lexer.h | 18 #include "clang/Lex/PreprocessorLexer.h" 63 /// whitespace preservation can be useful for some clients that want to lex 137 /// Lex - Return the next token in the file. If this is the end of file, it 139 bool Lex(Token &Result); 142 /// isPragmaLexer - Returns true if this Lexer is being used to lex a pragma. 146 /// IndirectLex - An indirect call to 'Lex' that can be invoked via 148 void IndirectLex(Token &Result) override { Lex(Result); } 151 /// LexFromRawLexer - Lex a token from a designated raw lexer (one with no 156 Lex(Result); 465 /// LexTokenInternal - Internal interface to lex a preprocessing token. Calle [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
lex.go | 1 // Do not edit. Bootstrap copy of /Volumes/Android/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/lex.go 3 //line /Volumes/Android/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/lex.go:1 899 fmt.Printf("lex: implicit semi\n") 1099 fmt.Printf("lex: codepoint literal\n") 1345 fmt.Printf("%v lex: LBODY\n", Ctxt.Line(int(lexlineno))) 1362 fmt.Printf("%v lex: TOKEN %s\n", Ctxt.Line(int(lexlineno)), lexname(c)) 1366 fmt.Printf("%v lex: TOKEN '%c'\n", Ctxt.Line(int(lexlineno)), c) 1384 fmt.Printf("lex: TOKEN ASOP %c\n", c) 1424 fmt.Printf("lex: %s %s\n", s, lexname(int(s.Lexical))) 1442 fmt.Printf("lex: integer literal\n" [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
lex.go | 1 // Do not edit. Bootstrap copy of /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/lex.go 3 //line /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/lex.go:1 899 fmt.Printf("lex: implicit semi\n") 1099 fmt.Printf("lex: codepoint literal\n") 1345 fmt.Printf("%v lex: LBODY\n", Ctxt.Line(int(lexlineno))) 1362 fmt.Printf("%v lex: TOKEN %s\n", Ctxt.Line(int(lexlineno)), lexname(c)) 1366 fmt.Printf("%v lex: TOKEN '%c'\n", Ctxt.Line(int(lexlineno)), c) 1384 fmt.Printf("lex: TOKEN ASOP %c\n", c) 1424 fmt.Printf("lex: %s %s\n", s, lexname(int(s.Lexical))) 1442 fmt.Printf("lex: integer literal\n" [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
BaseTest.java | 583 " <lexerName> lex = new <lexerName>(input);\n" + 584 " CommonTokenStream tokens = new CommonTokenStream(lex);\n" + 619 " <lexerName> lex = new <lexerName>(input);\n" + 620 " CommonTokenStream tokens = new CommonTokenStream(lex);\n" + 647 " <lexerName> lex = new <lexerName>(input);\n" + 648 " TokenRewriteStream tokens = new TokenRewriteStream(lex);\n" + 703 " <lexerName> lex = new <lexerName>(input);\n" + 704 " TokenRewriteStream tokens = new TokenRewriteStream(lex);\n" + 758 " <lexerName> lex = new <lexerName>(input);\n" + 759 " CommonTokenStream tokens = new CommonTokenStream(lex);\n" [all...] |
/external/bison/tests/ |
java.at | 369 AT_CHECK_JAVA_CALC([%lex-param { InputStream is } ], [[ 551 # Java %parse-param and %lex-param # 554 AT_SETUP([Java %parse-param and %lex-param]) 595 AT_CHECK_JAVA_MINIMAL_W_LEXER([[%lex-param {char lex_param1}]], 601 %lex-param {char lex_param1} 602 %lex-param {short lex_param2}]], 610 %lex-param {char lex_param1} 611 %lex-param {short lex_param2}]], 631 # %define lex-throws - 0 1 2 752 %lex-param { String s [all...] |
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 20 #include "clang/Lex/MacroInfo.h" 21 #include "clang/Lex/PPCallbacks.h" 22 #include "clang/Lex/Pragma.h" 23 #include "clang/Lex/Preprocessor.h" 24 #include "clang/Lex/TokenConcatenation.h" 597 PP.Lex(PragmaTok); 646 PP.Lex(Tok); 677 PP.Lex(Tok); 695 do PP.Lex(Tok); 769 PP.Lex(Tok) [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
lex.go | 896 fmt.Printf("lex: implicit semi\n") 1096 fmt.Printf("lex: codepoint literal\n") 1342 fmt.Printf("%v lex: LBODY\n", Ctxt.Line(int(lexlineno))) 1359 fmt.Printf("%v lex: TOKEN %s\n", Ctxt.Line(int(lexlineno)), lexname(c)) 1363 fmt.Printf("%v lex: TOKEN '%c'\n", Ctxt.Line(int(lexlineno)), c) 1381 fmt.Printf("lex: TOKEN ASOP %c\n", c) 1421 fmt.Printf("lex: %s %s\n", s, lexname(int(s.Lexical))) 1439 fmt.Printf("lex: integer literal\n") 1500 fmt.Printf("lex: imaginary literal\n") 1518 fmt.Printf("lex: floating literal\n" [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
lex.go | 896 fmt.Printf("lex: implicit semi\n") 1096 fmt.Printf("lex: codepoint literal\n") 1342 fmt.Printf("%v lex: LBODY\n", Ctxt.Line(int(lexlineno))) 1359 fmt.Printf("%v lex: TOKEN %s\n", Ctxt.Line(int(lexlineno)), lexname(c)) 1363 fmt.Printf("%v lex: TOKEN '%c'\n", Ctxt.Line(int(lexlineno)), c) 1381 fmt.Printf("lex: TOKEN ASOP %c\n", c) 1421 fmt.Printf("lex: %s %s\n", s, lexname(int(s.Lexical))) 1439 fmt.Printf("lex: integer literal\n") 1500 fmt.Printf("lex: imaginary literal\n") 1518 fmt.Printf("lex: floating literal\n" [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 15 #include "clang/Lex/Preprocessor.h" 18 #include "clang/Lex/CodeCompletionHandler.h" 19 #include "clang/Lex/HeaderSearch.h" 20 #include "clang/Lex/HeaderSearchOptions.h" 21 #include "clang/Lex/LexDiagnostic.h" 22 #include "clang/Lex/LiteralSupport.h" 23 #include "clang/Lex/MacroInfo.h" 24 #include "clang/Lex/ModuleLoader.h" 25 #include "clang/Lex/Pragma.h" 210 /// \brief Lex and validate a macro name, which occurs after [all...] |