Home
last modified time | relevance | path

Searched refs:TOK_ID (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dppcontrol.c911 …(pp.state & WARN) && !(pp.mode & (HOSTED|RELAX)) && var.type != TOK_TOKCAT && !(var.type & TOK_ID)) in ppcontrol()
923 if ((var.type & TOK_ID) || o == ' ' || ppisseparate(o)) in ppcontrol()
929 var.type = TOK_FORMAL|TOK_ID; in ppcontrol()
944 var.type = TOK_ID; in ppcontrol()
947 var.type = TOK_ID; in ppcontrol()
1014 if (var.type == (TOK_FORMAL|TOK_ID)) *(p - 2) = 'C'; in ppcontrol()
1116 if (var.type & TOK_ID) in ppcontrol()
1121 if (var.type == (TOK_FORMAL|TOK_ID)) *(p - 2) = 'C'; in ppcontrol()
H A Dpplib.h529 #define TOK_ID (1<<2) /* last token was identifier */ macro