Searched refs:pplex (Results 1 - 13 of 13) sorted by relevance
/ast/src/cmd/msgcc/ |
H A D | msgcpp.c | 199 c = pplex(); 206 switch (c = pplex()) 212 if ((c = pplex()) != '(') 233 if ((c = pplex()) != '(' || (c = pplex()) != T_STDERR || (c = pplex()) != ',') 248 if ((c = pplex()) == '+' && ppisinteger(c = pplex())) 255 if ((c = pplex()) == '(' && (c = pplex()) [all...] |
/ast/src/lib/libpp/ |
H A D | ppbuiltin.c | 60 if ((c = pplex()) != T_ID) 70 if ((c = pplex()) == ',') 73 c = pplex(); 87 c = pplex(); 95 if ((c = pplex()) == ')') *p = '1'; 109 c = pplex(); 119 if ((c = pplex()) != T_ID || !(sym = ppsymref(pp.symtab, pp.token)) || !sym->macro || sym->macro->arity != 1 || (c = pplex()) != ',') 131 c = pplex(); 141 if (!c || !(c = pplex())) [all...] |
H A D | ppcontrol.c | 137 c = pplex(); 182 * get one space canonical pplex() line, sans '\n', and place in p 200 while ((c = pplex()) != '\n') 321 switch (c = pplex()) 370 if ((pp.option & ELSEIF) && (c = pplex()) == T_ID && ((n = (int)hashref(pp.dirtab, pp.token)) == IF || n == IFDEF || n == IFNDEF)) 420 if ((c = pplex()) == T_ID) 447 c = pplex(); 454 switch (c = pplex()) 458 do pp.token = pp.toknxt; while ((c = pplex()) == T_STRING); 481 while ((c = pplex()) [all...] |
H A D | ppexpr.c | 32 #define lex(c) ((((c)=peektoken)>=0?(peektoken=(-1)):((c)=pplex())),(c)) 56 type = pplex(); 71 if ((c = pplex()) == ',') 73 while ((c = pplex()) == T_STRING) 82 if ((c = pplex()) != ',') break; 99 while (pplex()); 122 if (!pplex()) 125 if (pplex() != ',' || !pplex()) 136 if ((pp.state & PASSEOF) && pplex()) [all...] |
H A D | ppmisc.c | 150 switch (type = pplex()) 157 c = pplex(); 181 c = pplex();
|
H A D | ppcall.c | 111 while (c = pplex()) 195 while ((c = pplex()) == '\n') 271 switch (pplex()) 290 if (pplex() != '=') 302 switch (pplex())
|
H A D | Makefile | 20 pplex.c ppline.c ppmacref.c ppmisc.c ppop.c pppragma.c \ 25 "sol*.i386*" :NOOPTIMIZE: ppcpp.c pplex.c
|
H A D | pplex.c | 147 #define ppcpp pplex 208 count(pplex); 539 sfprintf(sfstderr, "%7d: pplex calls\n", pp.counter.pplex); 1035 switch (c = pplex()) 1443 switch (c = pplex()) 1513 switch (pplex()) 1530 switch (pplex()) 1713 switch (pplex())
|
H A D | pp.h | 181 #define PP_SPACEOUT 51 /* pplex returns space,newline */ 403 char* token; /* pplex() token name */ 444 extern int pplex(void);
|
H A D | ppinput.c | 306 if (pplex())
|
H A D | ppop.c | 169 switch (token = pplex()) 357 * NOTE: PP_INIT must be done before the first pplex() call 358 * PP_DONE must be done after the last pplex() call 713 * initialize pplex tables 1029 while (pplex());
|
H A D | pplib.h | 208 int pplex; /* pplex() calls */ member in struct:counter 305 int level; /* pplex() recursion level */ \
|
/ast/src/cmd/INIT/ |
H A D | proto.c | 289 int pplex; member in struct:counter 410 extern __MANGLE__ int pplex __PROTO__((void));
|
Completed in 56 milliseconds