HomeSort by relevance Sort by last modified time
    Searched refs:lex (Results 76 - 100 of 242) sorted by null

1 2 34 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
cached_lex_yacc_tables.target.linux-x86_64.mk 22 $(gyp_shared_intermediate_dir)/blink/bindings/scripts/lextab.py: $(LOCAL_PATH)/third_party/ply/lex.py $(LOCAL_PATH)/third_party/ply/yacc.py $(LOCAL_PATH)/tools/idl_parser/idl_lexer.py $(LOCAL_PATH)/tools/idl_parser/idl_node.py $(LOCAL_PATH)/tools/idl_parser/idl_parser.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/blink_idl_lexer.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/blink_idl_parser.py $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Caching PLY lex & yacc lex/parse tables ($@)"
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang.l 8 This file contains the Lex specification for GLSL ES.
9 Based on ANSI C grammar, Lex specification:
122 "true" { yylval->lex.b = true; return BOOLCONSTANT; }
123 "false" { yylval->lex.b = false; return BOOLCONSTANT; }
239 yylval->lex.string = NewPoolTString(yytext);
249 yylval->lex.string = NewPoolTString(yytext);
309 yylval->lex.string = NewPoolTString(yytext);
384 yyget_extra(yyscanner)->preprocessor.lex(&token);
409 yylval->lex.symbol = symbol;
453 yylval->lex.string = NewPoolTString(yytext)
    [all...]
glslang.y 67 } lex;
138 %token <lex> INVARIANT HIGH_PRECISION MEDIUM_PRECISION LOW_PRECISION PRECISION
139 %token <lex> ATTRIBUTE CONST_QUAL BOOL_TYPE FLOAT_TYPE INT_TYPE UINT_TYPE
140 %token <lex> BREAK CONTINUE DO ELSE FOR IF DISCARD RETURN SWITCH CASE DEFAULT
141 %token <lex> BVEC2 BVEC3 BVEC4 IVEC2 IVEC3 IVEC4 VEC2 VEC3 VEC4 UVEC2 UVEC3 UVEC4
142 %token <lex> MATRIX2 MATRIX3 MATRIX4 IN_QUAL OUT_QUAL INOUT_QUAL UNIFORM VARYING
143 %token <lex> MATRIX2x3 MATRIX3x2 MATRIX2x4 MATRIX4x2 MATRIX3x4 MATRIX4x3
144 %token <lex> CENTROID FLAT SMOOTH
145 %token <lex> STRUCT VOID_TYPE WHILE
146 %token <lex> SAMPLER2D SAMPLERCUBE SAMPLER_EXTERNAL_OES SAMPLER2DRECT SAMPLER2DARRA
    [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/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
lexer_unittest.py 24 from ply import lex namespace
39 setattr(lex.LexToken, '__eq__', _LexTokenEq)
45 rv = lex.LexToken()
61 self._zygote_lexer = lex.lex(mojom.parse.lexer.Lexer("my_file.mojom"))
  /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
100 # 'literals' is a value expected by lex which specifies a list of valid
106 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
215 self.lexobj = lex.lex(object=self, lextab=None, optimize=0)
346 except lex.LexError as le:
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
version_test.cpp 113 mPreprocessor.lex(&token);
134 mPreprocessor.lex(&token);
152 mPreprocessor.lex(&token);
173 mPreprocessor.lex(&token);
193 mPreprocessor.lex(&token);
number_test.cpp 26 mPreprocessor.lex(&token);
51 mPreprocessor.lex(&token);
90 mPreprocessor.lex(&token);
char_test.cpp 89 mPreprocessor.lex(&token);
operator_test.cpp 28 mPreprocessor.lex(&token);
  /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:blink::IDBKeyPathLexer
  /external/qemu/android/
config-file.c 261 static int lex(cstate *cs, int value)
269 #define lex(cs,v) _lex(cs,v) macro
278 switch(lex(cs, 0)){
299 switch(lex(cs, 1)) {
301 if(lex(cs, 0) != T_TEXT) return -1;
327 switch(lex(&cs, 0)){
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlLexerTest.java 51 lex(input, actual); method
124 private static void lex(String input, Appendable out) throws Exception { method in class:HtmlLexerTest
CssGrammarTest.java 43 CssTokens tokens = CssTokens.lex(Joiner.on('\n').join(
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
sdlexe.cpp 31 TLex8 lex(aParam);
34 lex.SkipSpaceAndMark();
36 while(!lex.Eos())
41 const TPtrC8 rem = lex.RemainderFromMark();
45 lex.Inc(pos);
46 ptr.Set(lex.MarkedToken());
47 lex.SkipAndMark(1);
57 ptr.Set(lex.NextToken());
61 lex.UnGetToMark();
62 lex.SkipAndMark(1)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
DirectiveParser.h 30 virtual void lex(Token *token);
MacroExpander.h 29 virtual void lex(Token *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);
323 expander.lex(&token);
327 expander.lex(&token);
  /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
114 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
250 self._lexobj = lex.lex(object=self, lextab=None, optimize=0)
  /external/libedit/
missing 58 bison yacc flex lex help2man
171 lex*|flex*)
  /external/libpng/
missing 58 bison yacc flex lex help2man
171 lex*|flex*)
  /external/pcre/dist/
missing 58 bison yacc flex lex help2man
171 lex*|flex*)
  /external/mesa3d/src/glsl/
Android.gen.mk 35 glcpp/glcpp-lex.c \
51 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
52 $(hide) $(LEX) --nounistd -o$@ $<
79 $(intermediates)/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glcpp/glcpp-lex.l
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 232 lex = self._lex_handler_prop
234 if lex is None:
241 parser.CommentHandler = lex.comment
242 parser.StartCdataSectionHandler = lex.startCDATA
243 parser.EndCdataSectionHandler = lex.endCDATA
245 parser.EndDoctypeDeclHandler = lex.endDTD
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 232 lex = self._lex_handler_prop
234 if lex is None:
241 parser.CommentHandler = lex.comment
242 parser.StartCdataSectionHandler = lex.startCDATA
243 parser.EndCdataSectionHandler = lex.endCDATA
245 parser.EndDoctypeDeclHandler = lex.endDTD

Completed in 454 milliseconds

1 2 34 5 6 7 8 910