Searched refs:parseInt64 (Results 1 – 4 of 4) sorted by relevance
638 assertEquals( 0L, TextFormat.parseInt64( "0")); in testParseInteger()639 assertEquals( 1L, TextFormat.parseInt64( "1")); in testParseInteger()640 assertEquals( -1L, TextFormat.parseInt64( "-1")); in testParseInteger()641 assertEquals( 12345L, TextFormat.parseInt64( "12345")); in testParseInteger()642 assertEquals( -12345L, TextFormat.parseInt64( "-12345")); in testParseInteger()643 assertEquals( 2147483647L, TextFormat.parseInt64( "2147483647")); in testParseInteger()644 assertEquals(-2147483648L, TextFormat.parseInt64("-2147483648")); in testParseInteger()645 assertEquals( 4294967295L, TextFormat.parseInt64( "4294967295")); in testParseInteger()646 assertEquals( 4294967296L, TextFormat.parseInt64( "4294967296")); in testParseInteger()648 TextFormat.parseInt64("9223372036854775807")); in testParseInteger()[all …]
838 final long result = parseInt64(currentToken); in consumeInt64()1969 static long parseInt64(final String text) throws NumberFormatException { in parseInt64() method in TextFormat
1405 defaultValue = TextFormat.parseInt64(proto.getDefaultValue()); in crossLink()
1420 private long parseInt64(JsonElement json) in parseInt64() method in JsonFormat.ParserImpl1638 return parseInt64(json); in parseFieldValue()