Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/io/
Dtokenizer_unittest.cc212 { "123", Tokenizer::TYPE_INTEGER },
213 { "0xab6", Tokenizer::TYPE_INTEGER },
214 { "0XAB6", Tokenizer::TYPE_INTEGER },
215 { "0X1234567", Tokenizer::TYPE_INTEGER },
216 { "0x89abcdef", Tokenizer::TYPE_INTEGER },
217 { "0x89ABCDEF", Tokenizer::TYPE_INTEGER },
218 { "01234567", Tokenizer::TYPE_INTEGER },
350 { Tokenizer::TYPE_INTEGER , "1" , 0, 4, 5 },
Dtokenizer.h107 TYPE_INTEGER, // A sequence of digits representing an integer. Normally enumerator
Dtokenizer.cc474 return is_float ? TYPE_FLOAT : TYPE_INTEGER; in ConsumeNumber()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResourceTable.java25 new flag_entry("integer", ResTable_map.TYPE_INTEGER,
DResourceTypes.java1404 public static final int TYPE_INTEGER = 1<<2; field in ResourceTypes.ResTable_map
/external/proguard/src/proguard/evaluation/value/
DValue.java34 public static final int TYPE_INTEGER = 1; field in Value
DIntegerValue.java995 return TYPE_INTEGER; in computationalType()
/external/protobuf/src/google/protobuf/
Dtext_format.cc684 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeFieldValue()
715 LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeFieldValue()
781 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER) && in SkipFieldValue()
828 && LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeIdentifier()
871 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeUnsignedInteger()
917 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeUnsignedDecimalInteger()
951 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeDouble()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc188 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeInteger()
220 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeInteger64()
240 } else if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) { in ConsumeNumber()
1367 case io::Tokenizer::TYPE_INTEGER: { in ParseOption()
/external/proguard/src/proguard/preverify/
DCodePreverifier.java422 case Value.TYPE_INTEGER: return VerificationTypeFactory.createIntegerType(); in correspondingVerificationType()
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationSimplifier.java419 case Value.TYPE_INTEGER: in replaceAnyPushInstruction()
DEvaluationShrinker.java1729 case Value.TYPE_INTEGER: return InstructionConstants.OP_ICONST_0; in pushOpcode()