Home | History | Annotate | Download | only in gdb

Lines Matching defs:is_byte

242   uint32_t lex_escape (bool is_byte);
518 /* Lex an escape. IS_BYTE is true if we're lexing a byte escape;
522 rust_parser::lex_escape (bool is_byte)
536 if (is_byte)
620 bool is_byte = false;
625 is_byte = true;
633 value = lex_escape (is_byte);
646 current_int_val.type = get_type (is_byte ? "u8" : "char");
687 int is_byte = pstate->lexptr[0] == 'b';
690 if (is_byte)
714 if (is_byte && value > 127)
728 value = lex_escape (is_byte);
730 if (is_byte)
743 if (is_byte && value > 127)
752 return is_byte ? BYTESTRING : STRING;