Home | History | Annotate | Download | only in lint1

Lines Matching defs:tok

554 debug_token(const token *tok)
556 switch (tok->kind) {
558 debug_printf("%s", tok->u.identifier);
561 val_t c = tok->u.constant;
576 debug_printf("%s", tok->u.string_literals.data);
579 debug_printf("%s", tok->u.punctuator);
589 const balanced_token *tok = seq->tokens + i;
590 if (tok->kind != '\0') {
591 debug_printf("%s%c", sep, tok->kind);
592 debug_balanced_token_sequence(&tok->u.tokens);
593 debug_printf("%c", tok->kind == '(' ? ')'
594 : tok->kind == '[' ? ']' : '}');
597 debug_token(&tok->u.token);