HomeSort by relevance Sort by last modified time
    Searched refs:yylvalpp (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 56 static int CPPif(yystypepp * yylvalpp);
151 static int CPPdefine(yystypepp * yylvalpp)
159 token = cpp->currentInput->scan(cpp->currentInput, yylvalpp);
164 name = yylvalpp->sc_ident;
165 token = cpp->currentInput->scan(cpp->currentInput, yylvalpp);
166 if (token == '(' && !yylvalpp->sc_int) {
170 token = cpp->currentInput->scan(cpp->currentInput, yylvalpp);
177 args[argc++] = yylvalpp->sc_ident;
178 token = cpp->currentInput->scan(cpp->currentInput, yylvalpp);
187 token = cpp->currentInput->scan(cpp->currentInput, yylvalpp);
    [all...]
scanner.c 69 static int eof_scan(InputSrc *is, yystypepp * yylvalpp)
74 static void noop(InputSrc *in, int ch, yystypepp * yylvalpp) {}
78 static int byte_scan(InputSrc *, yystypepp * yylvalpp);
208 * len - length of string already copied into yylvalpp->symbol_name.
211 static int lFloatConst(int ch, int len, yystypepp * yylvalpp)
218 APPEND_CHAR_S(ch, yylvalpp->symbol_name, len, MAX_SYMBOL_NAME_LEN);
219 ch = cpp->currentInput->getch(cpp->currentInput, yylvalpp);
225 APPEND_CHAR_S(ch, yylvalpp->symbol_name, len, MAX_SYMBOL_NAME_LEN);
226 ch = cpp->currentInput->getch(cpp->currentInput, yylvalpp);
228 APPEND_CHAR_S(ch, yylvalpp->symbol_name, len, MAX_SYMBOL_NAME_LEN)
615 yystypepp yylvalpp; local
    [all...]
tokens.h 77 void RecordToken(TokenStream *pTok, int token, yystypepp * yylvalpp);
79 int ReadToken(TokenStream *pTok, yystypepp * yylvalpp);
81 void UngetToken(int, yystypepp * yylvalpp);
85 void DumpTokenStream(FILE *, TokenStream *, yystypepp * yylvalpp);
tokens.c 206 void RecordToken(TokenStream *pTok, int token, yystypepp * yylvalpp)
219 s = GetAtomString(atable, yylvalpp->sc_ident);
226 str=yylvalpp->symbol_name;
233 lAddByte(pTok, (unsigned char)(yylvalpp->sc_int ? 1 : 0));
257 int ReadToken(TokenStream *pTok, yystypepp * yylvalpp)
285 yylvalpp->sc_ident = LookUpAddString(atable, symbol_name);
294 yylvalpp->sc_ident = LookUpAddString(atable, string_val);
308 strcpy(yylvalpp->symbol_name,symbol_name);
309 yylvalpp->sc_fval=(float)atof_dot(yylvalpp->symbol_name)
    [all...]
cpp.h 56 int readCPPline(yystypepp * yylvalpp);
57 int MacroExpand(int atom, yystypepp * yylvalpp);

Completed in 28 milliseconds