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

1 2 3 4 5

  /external/javassist/src/main/javassist/compiler/
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...]
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; }
  /external/srec/srec/Semproc/src/
LexicalAnalyzer.c 49 ESR_ReturnCode LA_Analyze(LexicalAnalyzer *lex, LCHAR *script)
51 if (lex == NULL || script == NULL)
58 lex->nextToken = lex->script = script;
62 ESR_ReturnCode LA_Free(LexicalAnalyzer *lex)
64 if (lex == NULL)
69 FREE(lex);
74 ESR_ReturnCode LA_nextToken(LexicalAnalyzer *lex, LCHAR *tokenBuf, size_t* tokenLen)
79 while (LISSPACE(*lex->nextToken))
80 ++lex->nextToken
    [all...]
  /external/bison/doc/
common.x 2 .BR lex (1),
  /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/clang/include/clang/AST/
CommentBriefParser.h 40 L.lex(Tok);
  /external/checkpolicy/
Makefile 17 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \
24 GENERATED=lex.yy.c y.tab.c y.tab.h
39 lex.yy.o: lex.yy.c
45 lex.yy.c: policy_scan.l y.tab.c
46 $(LEX) policy_scan.l
60 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
  /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/llvm/utils/lit/lit/
ShUtil.py 61 # Otherwise, lex the operator and convert to a redirection
129 lex_one_token - Lex a single 'sh' token. """
159 def lex(self): member in class:ShLexer
171 self.tokens = ShLexer(data, win32Escapes = win32Escapes).lex()
173 def lex(self): member in class:ShParser
180 next = self.lex()
186 tok = self.lex()
203 args.append(self.lex())
212 op = self.lex()
213 arg = self.lex()
249 def lex(self, str, *args, **kwargs): member in class:TestShLexer
    [all...]
  /external/bison/build-aux/
missing 82 flex create 'lex.yy.c', if possible, from existing .c
84 lex create 'lex.yy.c', if possible, from existing .c
119 lex*|yacc*)
240 lex*|flex*)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if test ! -f lex.yy.c; then
259 echo 'main() { return 0; }' >lex.yy.c
  /external/grub/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c
  /external/libcap-ng/libcap-ng-0.7/
missing 83 flex create \`lex.yy.c', if possible, from existing .c
85 lex create \`lex.yy.c', if possible, from existing .c
120 lex*|yacc*)
241 lex*|flex*)
247 rm -f lex.yy.c
254 cp "$SRCFILE" lex.yy.c
259 if test ! -f lex.yy.c; then
260 echo 'main() { return 0; }' >lex.yy.c
  /external/libffi/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c
  /external/llvm/autoconf/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c
  /external/openfst/
missing 83 flex create \`lex.yy.c', if possible, from existing .c
85 lex create \`lex.yy.c', if possible, from existing .c
120 lex*|yacc*)
241 lex*|flex*)
247 rm -f lex.yy.c
254 cp "$SRCFILE" lex.yy.c
259 if test ! -f lex.yy.c; then
260 echo 'main() { return 0; }' >lex.yy.c
  /external/chromium/sdch/open-vcdiff/
missing 85 flex create \`lex.yy.c', if possible, from existing .c
87 lex create \`lex.yy.c', if possible, from existing .c
113 lex|yacc)
243 lex|flex)
249 rm -f lex.yy.c
256 cp "$SRCFILE" lex.yy.c
261 if test ! -f lex.yy.c; then
262 echo 'main() { return 0; }' >lex.yy.c
  /external/elfutils/config/
missing 85 flex create \`lex.yy.c', if possible, from existing .c
87 lex create \`lex.yy.c', if possible, from existing .c
113 lex|yacc)
243 lex|flex)
249 rm -f lex.yy.c
256 cp "$SRCFILE" lex.yy.c
261 if test ! -f lex.yy.c; then
262 echo 'main() { return 0; }' >lex.yy.c
  /external/genext2fs/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c
  /external/libmtp/
missing 83 flex create \`lex.yy.c', if possible, from existing .c
85 lex create \`lex.yy.c', if possible, from existing .c
121 lex*|yacc*)
251 lex*|flex*)
257 rm -f lex.yy.c
264 cp "$SRCFILE" lex.yy.c
269 if test ! -f lex.yy.c; then
270 echo 'main() { return 0; }' >lex.yy.c
  /external/libogg/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c

Completed in 1208 milliseconds

1 2 3 4 5