Home
last modified time | relevance | path

Searched refs:TYPE_INTEGER (Results 1 – 9 of 9) sorted by relevance

/third_party/protobuf/src/google/protobuf/io/
Dtokenizer_unittest.cc211 {"123", Tokenizer::TYPE_INTEGER},
212 {"0xab6", Tokenizer::TYPE_INTEGER},
213 {"0XAB6", Tokenizer::TYPE_INTEGER},
214 {"0X1234567", Tokenizer::TYPE_INTEGER},
215 {"0x89abcdef", Tokenizer::TYPE_INTEGER},
216 {"0x89ABCDEF", Tokenizer::TYPE_INTEGER},
217 {"01234567", Tokenizer::TYPE_INTEGER},
350 {Tokenizer::TYPE_INTEGER, "1", 0, 4, 5},
Dtokenizer.h110 TYPE_INTEGER, // A sequence of digits representing an integer. Normally enumerator
Dtokenizer.cc479 return is_float ? TYPE_FLOAT : TYPE_INTEGER; in ConsumeNumber()
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_internal.h45 TYPE_INTEGER, enumerator
Ddxil_module.c386 case TYPE_INTEGER: in types_equal()
423 case TYPE_INTEGER: in dxil_type_to_nir_type()
436 case TYPE_INTEGER: in dxil_value_type_bitsize_equal_to()
462 struct dxil_type *type = create_type(m, TYPE_INTEGER); in create_int_type()
1474 case TYPE_INTEGER: in emit_type()
1535 assert(type && type->type == TYPE_INTEGER); in get_int_const()
2124 case TYPE_INTEGER: in emit_consts()
2568 case TYPE_INTEGER: in legal_arith_type()
2810 assert(size_type && size_type->type == TYPE_INTEGER); in dxil_emit_alloca()
Ddxil_dump.c201 case TYPE_INTEGER: in dump_type_name()
356 case TYPE_INTEGER: in dump_constants()
/third_party/protobuf/src/google/protobuf/
Dtext_format.cc757 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeFieldValue()
789 LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeFieldValue()
877 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER) && in SkipFieldValue()
926 LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeIdentifier()
978 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeUnsignedInteger()
1028 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeUnsignedDecimalAsDouble()
1065 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeDouble()
/third_party/protobuf/src/google/protobuf/compiler/
Dparser.cc245 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeInteger()
277 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeInteger64()
297 } else if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeNumber()
1531 case io::Tokenizer::TYPE_INTEGER: { in ParseOption()
/third_party/gstreamer/gstplugins_good/gst/goom/
Dgoomsl_yacc.y1131 … case CONST_INT_NODE: gsl_instr_add_param(currentGoomSL->instr, node->str, TYPE_INTEGER); break; in commit_node()