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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
scanner.h 65 typedef struct InputSrc {
66 struct InputSrc *prev;
67 int (*scan)(struct InputSrc *, yystypepp *);
68 int (*getch)(struct InputSrc *, yystypepp *);
69 void (*ungetch)(struct InputSrc *, int, yystypepp *);
72 } InputSrc;
compile.h 74 InputSrc *currentInput;
scanner.c 65 InputSrc base;
69 static int eof_scan(InputSrc *is, yystypepp * yylvalpp)
74 static void noop(InputSrc *in, int ch, yystypepp * yylvalpp) {}
76 static InputSrc eof_inputsrc = { 0, &eof_scan, &eof_scan, &noop };
78 static int byte_scan(InputSrc *, yystypepp * yylvalpp);
182 in->base.getch = (int (*)(InputSrc *, yystypepp *))str_getch;
183 in->base.ungetch = (void (*)(InputSrc *, int, yystypepp *))str_ungetch;
258 static int byte_scan(InputSrc *in, yystypepp * yylvalpp)
tokens.c 336 InputSrc base;
365 in->base.scan = (int (*)(InputSrc *, yystypepp *))scan_token;
375 InputSrc base;
cpp.c 850 static int eof_scan(InputSrc *in, yystypepp * yylvalpp) { return -1; }
851 static void noop(InputSrc *in, int ch, yystypepp * yylvalpp) { }
854 InputSrc *in = malloc(sizeof(InputSrc));
855 memset(in, 0, sizeof(InputSrc));
865 InputSrc *in = cpp->currentInput;
895 InputSrc base;
928 ** If it is, push an InputSrc that will produce the appropriate expansion
    [all...]

Completed in 56 milliseconds