HomeSort by relevance Sort by last modified time
    Searched refs:lex (Results 51 - 75 of 396) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/ply/ply/test/pkg_test1/parsing/
calclex.py 5 import ply.lex as lex
44 lexer = lex.lex(optimize=True)
  /external/ply/ply/test/pkg_test2/parsing/
calclex.py 5 import ply.lex as lex
44 lexer = lex.lex(optimize=True, lextab='calclextab')
  /external/ply/ply/test/pkg_test3/parsing/
calclex.py 5 import ply.lex as lex
44 lexer = lex.lex(optimize=True, lextab='pkg_test3.generated.lextab')
  /external/ply/ply/test/pkg_test4/parsing/
calclex.py 5 import ply.lex as lex
44 lexer = lex.lex(optimize=True)
  /external/ply/ply/test/pkg_test5/parsing/
calclex.py 5 import ply.lex as lex
45 lexer = lex.lex(optimize=True, outputdir=os.path.dirname(__file__))
  /external/ply/ply/test/pkg_test6/parsing/
calclex.py 5 import ply.lex as lex
45 lexer = lex.lex(optimize=True, outputdir=os.path.dirname(__file__))
  /external/dtc/
Makefile.convert-dtsv0 11 CONVERT_GEN_SRCS = convert-dtsv0-lexer.lex.c
  /external/elfutils/tests/
run-addr2line-i-lex-test.sh 35 testfiles testfile-lex-inlines
37 testrun_compare ${abs_top_builddir}/src/addr2line -i -e testfile-lex-inlines 0x0000000000000680 <<\EOF
41 testrun_compare ${abs_top_builddir}/src/addr2line -i -e testfile-lex-inlines 0x0000000000000681 <<\EOF
45 testrun_compare ${abs_top_builddir}/src/addr2line -i -e testfile-lex-inlines 0x0000000000000690 <<\EOF
50 testrun_compare ${abs_top_builddir}/src/addr2line -i -e testfile-lex-inlines 0x0000000000000691 <<\EOF
56 testrun_compare ${abs_top_builddir}/src/addr2line -f -i -e testfile-lex-inlines 0x0000000000000680 0x0000000000000681 0x0000000000000690 0x0000000000000691 <<\EOF
  /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/ply/ply/test/
yacc_nested.py 5 from ply import lex, yacc
13 the_lexer = lex.lex()
  /external/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/LLVM/utils/lit/lit/
TclUtil.py 20 """TclLexer - Lex a string into "words", following the Tcl syntax."""
68 # Lex until whitespace or end of string, the opening brace has already
109 # Lex until whitespace or end of string.
152 def lex(self): member in class:TclLexer
172 def lex(self): member in class:TclExecCommand
179 next = self.lex()
186 arg = self.lex()
204 arg = self.lex()
238 self.lex()
254 def lex(self, str, *args, **kwargs) member in class:TestTclLexer
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
app.c 59 static char lex[256]; variable
86 #define IS_SYMBOL_COMPONENT(c) (lex[c] == LEX_IS_SYMBOL_COMPONENT)
87 #define IS_WHITESPACE(c) (lex[c] == LEX_IS_WHITESPACE)
88 #define IS_LINE_SEPARATOR(c) (lex[c] == LEX_IS_LINE_SEPARATOR)
89 #define IS_PARALLEL_SEPARATOR(c) (lex[c] == LEX_IS_PARALLEL_SEPARATOR)
90 #define IS_COMMENT(c) (lex[c] == LEX_IS_COMMENT_START)
91 #define IS_LINE_COMMENT(c) (lex[c] == LEX_IS_LINE_COMMENT_START)
92 #define IS_NEWLINE(c) (lex[c] == LEX_IS_NEWLINE)
106 lex[' '] = LEX_IS_WHITESPACE;
107 lex['\t'] = LEX_IS_WHITESPACE
    [all...]
  /external/clang/include/clang/AST/
CommentBriefParser.h 40 L.lex(Tok);
  /external/ply/ply/example/calc/
calc.py 5 # "Lex and Yacc", p. 63.
43 import ply.lex as lex
44 lex.lex()

Completed in 634 milliseconds

1 23 4 5 6 7 8 91011>>