Home | History | Annotate | Download | only in glcpp

Lines Matching defs:INTEGER

288     INTEGER = 278,
650 "INTEGER", "INTEGER_STRING", "LINE_EXPANDED", "NEWLINE", "OTHER",
1207 evaluated with infinite-precision integer arithmetic. */
3342 case INTEGER:
3372 case INTEGER:
3487 /* Two string-valued (or integer) tokens can usually just be
3489 * integer here as well.)
3492 * is an integer (or a string representing an integer), then
3493 * the second token must also be an integer or must be a
3494 * string representing an integer that begins with a digit.
3496 if ((token->type == IDENTIFIER || token->type == OTHER || token->type == INTEGER_STRING || token->type == INTEGER) &&
3497 (other->type == IDENTIFIER || other->type == OTHER || other->type == INTEGER_STRING || other->type == INTEGER))
3502 /* Check that pasting onto an integer doesn't create a
3503 * non-integer, (that is, only digits can be
3505 if (token->type == INTEGER_STRING || token->type == INTEGER) {
3511 case INTEGER:
3520 if (token->type == INTEGER)
3525 if (other->type == INTEGER)
3531 * started with an integer, in which case we will be
3532 * creating an integer-string. */
3534 if (combined_type == INTEGER)
3577 tok = _token_create_ival (parser, INTEGER, value);
3755 return _token_list_create_with_one_ival(parser, INTEGER, ival);
3860 replacement->token = _token_create_ival (parser, INTEGER, value);