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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Lib/xml/sax/
expatreader.py 250 lex = self._lex_handler_prop
252 if lex is None:
259 parser.CommentHandler = lex.comment
260 parser.StartCdataSectionHandler = lex.startCDATA
261 parser.EndCdataSectionHandler = lex.endCDATA
263 parser.EndDoctypeDeclHandler = lex.endDTD
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
lex.go 5 // Package lex implements lexical analysis for the assembler.
6 package lex package
73 // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
slice.go 5 package lex package
stack.go 5 package lex package
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
lex.go 5 // Package lex implements lexical analysis for the assembler.
6 package lex package
73 // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
slice.go 5 package lex package
stack.go 5 package lex package
  /external/fio/
Makefile 196 FIO_OBJS += lex.yy.o y.tab.o
197 GFIO_OBJS += lex.yy.o y.tab.o
285 QUIET_LEX = @echo ' ' LEX $@;
327 lex.yy.c: exp/expression-parser.l
329 $(QUIET_LEX)$(LEX) -o $@ $<
331 $(QUIET_LEX)$(LEX) $<
334 lex.yy.o: lex.yy.c y.tab.h
345 lexer.h: lex.yy.c
350 $(QUIET_LINK)$(CC) $(LDFLAGS) $(CFLAGS) $< y.tab.o lex.yy.o -o $@ $(LIBS
    [all...]
configure 178 --disable-lex) disable_lex="yes"
180 --enable-lex) disable_lex="no"
213 echo "--disable-lex Disable use of lex/yacc for math"
215 echo "--enable-lex Enable use of lex/yacc for math"
260 # Unless explicitly enabled, turn off lex.
    [all...]
  /external/libxkbcommon/xkbcommon/build-aux/
ylwrap 2 # ylwrap - wrapper for lex/yacc invocations.
77 Wrapper for lex/yacc invocations, renaming files as desired.
204 # output file name, not yy.lex.c for instance. Adjust the
  /external/mesa3d/src/compiler/
Android.glsl.gen.mk 56 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
57 $(hide) $(LEX) --nounistd -o$@ $<
88 $(intermediates)/glsl/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glsl/glcpp/glcpp-lex.l
  /external/one-true-awk/
README 53 cc -c lex.c
54 cc ytab.o b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o -lm
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 66 CssTokens tokens = CssTokens.lex(css);
  /external/ply/ply/ply/
cpp.py 162 lexer = lex.lexer
261 print("Unable to lex '%s' required for preprocessor" % c)
282 lex = self.lexer.clone()
292 lex.input(input)
293 lex.lineno = 1
297 tok = lex.token()
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
glslang_tab.h 199 } lex; member in union:YYSTYPE
glslang_lex.cpp 264 * to BEGIN to return to the state. The YYSTATE alias is for lex
    [all...]
  /packages/services/Car/tools/hidl_parser/
parser.py 26 # It requires 'ply' (Python Lex/Yacc).
78 import ply.lex as lex
79 lexer = lex.lex()
  /toolchain/binutils/binutils-2.27/
ylwrap 2 # ylwrap - wrapper for lex/yacc invocations.
77 Wrapper for lex/yacc invocations, renaming files as desired.
189 # output file name, not yy.lex.c for instance. Adjust the
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse.go 27 lex *lexer
64 t.token[0] = t.lex.nextItem()
95 t.token[0] = t.lex.nextItem()
200 t.lex.drain()
208 func (t *Tree) startParse(funcs []map[string]interface{}, lex *lexer, treeSet map[string]*Tree) {
210 t.lex = lex
218 t.lex = nil
231 t.startParse(funcs, lex(t.Name, text, leftDelim, rightDelim), treeSet)
288 newT.startParse(t.funcs, t.lex, t.treeSet
    [all...]
  /prebuilts/go/linux-x86/src/text/template/parse/
parse.go 27 lex *lexer
64 t.token[0] = t.lex.nextItem()
95 t.token[0] = t.lex.nextItem()
200 t.lex.drain()
208 func (t *Tree) startParse(funcs []map[string]interface{}, lex *lexer, treeSet map[string]*Tree) {
210 t.lex = lex
218 t.lex = nil
231 t.startParse(funcs, lex(t.Name, text, leftDelim, rightDelim), treeSet)
288 newT.startParse(t.funcs, t.lex, t.treeSet
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/
ninja.py 380 def lex(self): member in class:Lexer
392 token = self.lex()
594 self._lexer.lex()
670 self._lexer.lex()
697 self._lexer.lex()
720 self._lexer.lex()
728 self._lexer.lex()
810 token = self._lexer.lex()
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToTextSAXHandler.java 67 public ToTextSAXHandler(ContentHandler hdlr, LexicalHandler lex, String encoding)
69 super(hdlr, lex, encoding);
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 70 MarkupLexer &Lex;
73 MarkupParser(MarkupLexer &lex, SourceMgr &SrcMgr) : Lex(lex), SM(SrcMgr) {}
125 StringRef::const_iterator Start = Lex.getPosition();
127 while(Lex.getNextChar() != ':') {
129 if (Lex.isEOF())
132 StringRef RawTag(Start, Lex.getPosition() - Start - 1);
153 MarkupLexer Lex(InputSource);
154 MarkupParser Parser(Lex, SrcMgr)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
ExpressionParser.y 101 %lex-param {Context *context}
355 context->lexer->lex(token);
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
parser.py 25 from ply import lex
457 lex.lex(object=lexer)

Completed in 330 milliseconds

1 2 3 4 5 6 7 8 91011>>