Searched refs:pplex (Results 1 – 18 of 18) sorted by relevance
/illumos-gate/usr/src/contrib/ast/src/cmd/msgcc/ |
H A D | msgcpp.c | 199 c = pplex(); in main() 206 switch (c = pplex()) in main() 212 if ((c = pplex()) != '(') in main() 233 if ((c = pplex()) != '(' || (c = pplex()) != T_STDERR || (c = pplex()) != ',') in main() 248 if ((c = pplex()) == '+' && ppisinteger(c = pplex())) in main() 255 …if ((c = pplex()) == '(' && (c = pplex()) == T_INT && (c = pplex()) == T_ID && (c = pplex()) == ',… in main() 262 if ((c = pplex()) == '[') in main() 264 if (ppisinteger(c = pplex())) in main() 265 c = pplex(); in main() 268 c = pplex(); in main() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/ |
H A D | ppbuiltin.c | 60 if ((c = pplex()) != T_ID) in ppbuiltin() 70 if ((c = pplex()) == ',') in ppbuiltin() 73 c = pplex(); in ppbuiltin() 87 c = pplex(); in ppbuiltin() 95 if ((c = pplex()) == ')') *p = '1'; in ppbuiltin() 109 c = pplex(); in ppbuiltin() 119 …if ((c = pplex()) != T_ID || !(sym = ppsymref(pp.symtab, pp.token)) || !sym->macro || sym->macro->… in ppbuiltin() 131 c = pplex(); in ppbuiltin() 141 if (!c || !(c = pplex())) in ppbuiltin() 154 c = pplex(); in ppbuiltin() [all …]
|
H A D | ppcontrol.c | 137 c = pplex(); in tokop() 200 while ((c = pplex()) != '\n') in getline() 321 switch (c = pplex()) in ppcontrol() 370 …if ((pp.option & ELSEIF) && (c = pplex()) == T_ID && ((n = (int)hashref(pp.dirtab, pp.token)) == I… in ppcontrol() 420 if ((c = pplex()) == T_ID) in ppcontrol() 447 c = pplex(); in ppcontrol() 454 switch (c = pplex()) in ppcontrol() 458 do pp.token = pp.toknxt; while ((c = pplex()) == T_STRING); in ppcontrol() 481 while ((c = pplex()) && c != '>') in ppcontrol() 630 c = pplex(); in ppcontrol() [all …]
|
H A D | ppexpr.c | 32 #define lex(c) ((((c)=peektoken)>=0?(peektoken=(-1)):((c)=pplex())),(c)) 56 type = pplex(); in exists() 71 if ((c = pplex()) == ',') in exists() 73 while ((c = pplex()) == T_STRING) in exists() 82 if ((c = pplex()) != ',') break; in exists() 99 while (pplex()); in exists() 122 if (!pplex()) in compare() 125 if (pplex() != ',' || !pplex()) in compare() 136 if ((pp.state & PASSEOF) && pplex()) in compare() 143 while (pplex()); in compare() [all …]
|
H A D | RELEASE | 20 08-10-30 pplex.c: handle =#x S_CHRB|SPLICE bug 24 07-06-12 pplex.c: finish -D:preserve logic update for imake 25 07-06-07 pplex.c: handle -D:preserve S_CHRB splices 30 06-09-23 pplex.c: add HOSTED check for "/* appears in // comment" -- doh 37 06-01-11 pplex.c: fix rpcgen pp:passthrough header splice bug 38 05-12-16 pplex.c: fix imake pp:passthrough comment splice bug 41 05-04-11 pplex.c: fix '"a" #s' catliteral + stringize bug 47 04-10-01 pplex.c: really fix directive hidden newline logic 48 04-08-31 pplex.c: fix directive hidden newline logic 67 03-05-19 pplex.c: fix stray SKIPMACRO bug [all …]
|
H A D | ppmisc.c | 150 switch (type = pplex()) in pppredargs() 157 c = pplex(); in pppredargs() 181 c = pplex(); in pppredargs()
|
H A D | ppcall.c | 111 while (c = pplex()) in ppcall() 195 while ((c = pplex()) == '\n') in ppcall() 271 switch (pplex()) in ppcall() 290 if (pplex() != '=') in ppcall() 302 switch (pplex()) in ppcall()
|
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 | HISTORY | 36 03/27/89 fix pplex bug that bombed line sync for last line == #include 112 10/06/87 split pplex.c adding ppdirective.c and ppbuiltin.c 141 04/24/87 split pplex.c into smaller files -- too big for some compilers 154 use GETCHR() and ISSPECIAL() in outer pplex() loop -- up to 10% 210 02/11/87 distribute post-token switch in pplex() to individual cases (~5%)
|
H A D | Mamfile | 293 make pplex.c implicit 310 done pplex.c 378 make pplex.o 379 prev pplex.c 380 meta pplex.o %.c>%.o pplex.c pplex 381 prev pplex.c 382 …${CCFLAGS.FORCE}?} ${DEBUG+-DDEBUG=${DEBUG}} -I. -I${PACKAGE_ast_INCLUDE} -D_PACKAGE_ast -c pplex.c 383 done pplex.o generated 572 … ppcpp.o ppdata.o pperror.o ppexpr.o ppfsm.o ppincref.o ppinput.o ppkey.o pplex.o ppline.o ppmacre…
|
H A D | pplex.c | 147 #define ppcpp pplex 208 count(pplex); in ppcpp() 539 sfprintf(sfstderr, "%7d: pplex calls\n", pp.counter.pplex); in ppcpp() 1035 switch (c = pplex()) in ppcpp() 1443 switch (c = pplex()) in ppcpp() 1513 switch (pplex()) in ppcpp() 1530 switch (pplex()) in ppcpp() 1713 switch (pplex()) in ppcpp()
|
H A D | pp.h | 444 extern int pplex(void);
|
H A D | ppinput.c | 306 if (pplex()) in ppexpand()
|
H A D | ppop.c | 169 switch (token = pplex()) in ppmapinclude() 1029 while (pplex()); in ppop()
|
H A D | pplib.h | 208 int pplex; /* pplex() calls */ member
|
/illumos-gate/usr/src/cmd/ast/libpp/ |
H A D | Makefile.defs | 31 ppkey.o pplex.o ppline.o ppmacref.o ppmisc.o ppop.o pppragma.o \
|
H A D | mapfile-vers | 47 pplex;
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | proto.c | 289 int pplex; member 410 extern __MANGLE__ int pplex __PROTO__((void));
|