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