Home
last modified time | relevance | path

Searched refs:commented_newlines (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-lex.l221 if (parser->commented_newlines)
222 parser->commented_newlines--;
223 if (parser->commented_newlines == 0)
273 <COMMENT>[^*\r\n]*{NEWLINE} { yylineno++; yycolumn = 0; parser->commented_newlines++; }
275 <COMMENT>"*"+[^*/\r\n]*{NEWLINE} { yylineno++; yycolumn = 0; parser->commented_newlines++; }
574 if (parser->commented_newlines) {
Dglcpp.h202 int commented_newlines; member
Dglcpp-parse.y1492 parser->commented_newlines = 0; in glcpp_parser_create()