OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inTypeParen
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h
36
inTypeParen
(false), scanner(NULL), contextPragma(true, false) { }
48
bool
inTypeParen
; // true if in parentheses, looking only for an identifier
glslang.l
214
"," { if (context->
inTypeParen
) context->lexAfterType = false; return(COMMA); }
217
"(" { context->lexAfterType = false; context->
inTypeParen
= true; return(LEFT_PAREN); }
218
")" { context->
inTypeParen
= false; return(RIGHT_PAREN); }
glslang_lex.cpp
[
all
...]
Completed in 687 milliseconds