Searched refs:parseInt64 (Results 1 – 4 of 4) sorted by relevance
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TextFormatTest.java | 914 assertEquals(0L, TextFormat.parseInt64("0")); in testParseInteger() 915 assertEquals(1L, TextFormat.parseInt64("1")); in testParseInteger() 916 assertEquals(-1L, TextFormat.parseInt64("-1")); in testParseInteger() 917 assertEquals(12345L, TextFormat.parseInt64("12345")); in testParseInteger() 918 assertEquals(-12345L, TextFormat.parseInt64("-12345")); in testParseInteger() 919 assertEquals(2147483647L, TextFormat.parseInt64("2147483647")); in testParseInteger() 920 assertEquals(-2147483648L, TextFormat.parseInt64("-2147483648")); in testParseInteger() 921 assertEquals(4294967295L, TextFormat.parseInt64("4294967295")); in testParseInteger() 922 assertEquals(4294967296L, TextFormat.parseInt64("4294967296")); in testParseInteger() 923 assertEquals(9223372036854775807L, TextFormat.parseInt64("9223372036854775807")); in testParseInteger() [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormat.java | 1114 final long result = parseInt64(currentToken); in consumeInt64() 2479 static long parseInt64(final String text) throws NumberFormatException { in parseInt64() method in TextFormat
|
D | Descriptors.java | 1526 defaultValue = TextFormat.parseInt64(proto.getDefaultValue()); in crossLink()
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | JsonFormat.java | 1758 private long parseInt64(JsonElement json) throws InvalidProtocolBufferException { in parseInt64() method in JsonFormat.ParserImpl 1966 return parseInt64(json); in parseFieldValue()
|