TextFormat 106 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java return TextFormat.printToString(this); TextFormat 1040 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java defaultValue = TextFormat.parseInt32(proto.getDefaultValue()); TextFormat 1044 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java defaultValue = TextFormat.parseUInt32(proto.getDefaultValue()); TextFormat 1049 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java defaultValue = TextFormat.parseInt64(proto.getDefaultValue()); TextFormat 1053 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java defaultValue = TextFormat.parseUInt64(proto.getDefaultValue()); TextFormat 1086 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java TextFormat.unescapeBytes(proto.getDefaultValue()); TextFormat 1087 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java } catch (TextFormat.InvalidEscapeSequenceException e) { TextFormat 141 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java return TextFormat.printToString(this); TextFormat 114 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java String javaText = TextFormat.printToString(TestUtil.getAllSet()); TextFormat 126 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java String javaText = TextFormat.printToString(TestUtil.getAllSetBuilder()); TextFormat 138 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java String javaText = TextFormat.printToString(TestUtil.getAllExtensionsSet()); TextFormat 202 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printToString(message)); TextFormat 210 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printFieldToString(dataField, "test data")); TextFormat 218 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printFieldToString(optionalField, value)); TextFormat 300 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(allFieldsSetText, builder); TextFormat 306 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(new StringReader(allFieldsSetText), builder); TextFormat 312 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(allExtensionsSetText, TextFormat 344 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(original, builder); TextFormat 350 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(exoticText, builder); TextFormat 363 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(messageSetText, extensionRegistry, builder); TextFormat 378 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_nested_enum: 2", builder); TextFormat 384 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("OptionalGroup: < a: 1 >", builder); TextFormat 391 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge( TextFormat 403 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(text, TestUtil.getExtensionRegistry(), builder); TextFormat 405 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.ParseException e) { TextFormat 484 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.escapeBytes(bytes("\0\001\007\b\f\n\r\t\013\\\'\""))); TextFormat 486 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.escapeText("\0\001\007\b\f\n\r\t\013\\\'\"")); TextFormat 488 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeBytes("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"")); TextFormat 490 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeText("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"")); TextFormat 492 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.escapeText(kEscapeTestString)); TextFormat 494 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeText(kEscapeTestStringEscaped)); TextFormat 497 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals("\\341\\210\\264", TextFormat.escapeText("\u1234")); TextFormat 499 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.escapeBytes(bytes(0xe1, 0x88, 0xb4))); TextFormat 500 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals("\u1234", TextFormat.unescapeText("\\341\\210\\264")); TextFormat 502 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeBytes("\\341\\210\\264")); TextFormat 503 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals("\u1234", TextFormat.unescapeText("\\xe1\\x88\\xb4")); TextFormat 505 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeBytes("\\xe1\\x88\\xb4")); TextFormat 510 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(zhByteString, TextFormat.unescapeBytes(zh)); TextFormat 514 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeText("\\x"); TextFormat 516 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.InvalidEscapeSequenceException e) { TextFormat 521 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeText("\\z"); TextFormat 523 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.InvalidEscapeSequenceException e) { TextFormat 528 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.unescapeText("\\"); TextFormat 530 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.InvalidEscapeSequenceException e) { TextFormat 536 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 0, TextFormat.parseInt32( "0")); TextFormat 537 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 1, TextFormat.parseInt32( "1")); TextFormat 538 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( -1, TextFormat.parseInt32( "-1")); TextFormat 539 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 12345, TextFormat.parseInt32( "12345")); TextFormat 540 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( -12345, TextFormat.parseInt32( "-12345")); TextFormat 541 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 2147483647, TextFormat.parseInt32( "2147483647")); TextFormat 542 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(-2147483648, TextFormat.parseInt32("-2147483648")); TextFormat 544 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 0, TextFormat.parseUInt32( "0")); TextFormat 545 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 1, TextFormat.parseUInt32( "1")); TextFormat 546 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 12345, TextFormat.parseUInt32( "12345")); TextFormat 547 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 2147483647, TextFormat.parseUInt32("2147483647")); TextFormat 548 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals((int) 2147483648L, TextFormat.parseUInt32("2147483648")); TextFormat 549 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals((int) 4294967295L, TextFormat.parseUInt32("4294967295")); TextFormat 551 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 0L, TextFormat.parseInt64( "0")); TextFormat 552 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 1L, TextFormat.parseInt64( "1")); TextFormat 553 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( -1L, TextFormat.parseInt64( "-1")); TextFormat 554 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 12345L, TextFormat.parseInt64( "12345")); TextFormat 555 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( -12345L, TextFormat.parseInt64( "-12345")); TextFormat 556 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 2147483647L, TextFormat.parseInt64( "2147483647")); TextFormat 557 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(-2147483648L, TextFormat.parseInt64("-2147483648")); TextFormat 558 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 4294967295L, TextFormat.parseInt64( "4294967295")); TextFormat 559 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 4294967296L, TextFormat.parseInt64( "4294967296")); TextFormat 561 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt64("9223372036854775807")); TextFormat 563 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt64("-9223372036854775808")); TextFormat 565 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 0L, TextFormat.parseUInt64( "0")); TextFormat 566 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 1L, TextFormat.parseUInt64( "1")); TextFormat 567 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 12345L, TextFormat.parseUInt64( "12345")); TextFormat 568 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 2147483647L, TextFormat.parseUInt64( "2147483647")); TextFormat 569 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 4294967295L, TextFormat.parseUInt64( "4294967295")); TextFormat 570 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals( 4294967296L, TextFormat.parseUInt64( "4294967296")); TextFormat 572 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt64("9223372036854775807")); TextFormat 574 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt64("9223372036854775808")); TextFormat 575 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(-1L, TextFormat.parseUInt64("18446744073709551615")); TextFormat 578 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(0x1234abcd, TextFormat.parseInt32("0x1234abcd")); TextFormat 579 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(-0x1234abcd, TextFormat.parseInt32("-0x1234abcd")); TextFormat 580 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(-1, TextFormat.parseUInt64("0xffffffffffffffff")); TextFormat 582 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt64("0x7fffffffffffffff")); TextFormat 585 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java assertEquals(01234567, TextFormat.parseInt32("01234567")); TextFormat 589 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt32("2147483648"); TextFormat 596 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt32("-2147483649"); TextFormat 603 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt32("4294967296"); TextFormat 610 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt32("-1"); TextFormat 617 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt64("9223372036854775808"); TextFormat 624 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt64("-9223372036854775809"); TextFormat 631 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt64("18446744073709551616"); TextFormat 638 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseUInt64("-1"); TextFormat 646 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.parseInt32("abcd"); TextFormat 656 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_string: \"" + zh + "\"", builder); TextFormat 684 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_string: \"" + longText + "\"", builder); TextFormat 698 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge(goodText, builder); TextFormat 703 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_bool:2", badBuilder); TextFormat 705 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.ParseException e) { TextFormat 710 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_bool: foo", badBuilder); TextFormat 712 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java } catch (TextFormat.ParseException e) { TextFormat 719 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.merge("optional_string: \"foo\" 'corge' \"grault\"", builder); TextFormat 741 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printFieldValue( TextFormat 750 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.shortDebugString(TestAllTypes.newBuilder() TextFormat 762 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.shortDebugString(makeUnknownFieldSet())); TextFormat 770 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printToUnicodeString(TestAllTypes.newBuilder() TextFormat 780 third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java TextFormat.printToUnicodeString(UnknownFieldSet.newBuilder() TextFormat 1327 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc TextFormat::Parser parser; TextFormat 1356 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc if (!TextFormat::Print(*message, &out)) { TextFormat 131 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString(output, &expected)); TextFormat 1653 third_party/protobuf/src/google/protobuf/descriptor.cc TextFormat::Printer printer; TextFormat 1662 third_party/protobuf/src/google/protobuf/descriptor.cc TextFormat::PrintFieldValueToString(options, fields[i], TextFormat 4766 third_party/protobuf/src/google/protobuf/descriptor.cc : public TextFormat::Finder { TextFormat 4845 third_party/protobuf/src/google/protobuf/descriptor.cc TextFormat::Parser parser; TextFormat 56 third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(file_text, &file_proto)); TextFormat 168 third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto)); TextFormat 174 third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto)); TextFormat 1837 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 1860 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 1984 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2007 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2066 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2094 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2272 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2340 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 2476 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString(file_text, &file_proto)); TextFormat 2486 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString(file_text, &file_proto)); TextFormat 3974 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 4015 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(file_text, &file_proto)); TextFormat 61 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::PrintToString(*this, &debug_string); TextFormat 69 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Printer printer; TextFormat 85 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Printer printer; TextFormat 100 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseInfoTree::ParseInfoTree() { } TextFormat 102 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseInfoTree::~ParseInfoTree() { TextFormat 109 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::ParseInfoTree::RecordLocation( TextFormat 111 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseLocation location) { TextFormat 115 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseInfoTree* TextFormat::ParseInfoTree::CreateNested( TextFormat 118 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseInfoTree* instance = new TextFormat::ParseInfoTree(); TextFormat 119 third_party/protobuf/src/google/protobuf/text_format.cc vector<TextFormat::ParseInfoTree*>* trees = &nested_[field]; TextFormat 137 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseLocation TextFormat::ParseInfoTree::GetLocation( TextFormat 142 third_party/protobuf/src/google/protobuf/text_format.cc const vector<TextFormat::ParseLocation>* locations = TextFormat 145 third_party/protobuf/src/google/protobuf/text_format.cc return TextFormat::ParseLocation(); TextFormat 151 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::ParseInfoTree* TextFormat::ParseInfoTree::GetTreeForNested( TextFormat 156 third_party/protobuf/src/google/protobuf/text_format.cc const vector<TextFormat::ParseInfoTree*>* trees = FindOrNull(nested_, field); TextFormat 191 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Finder* finder, TextFormat 879 third_party/protobuf/src/google/protobuf/text_format.cc explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) : TextFormat 894 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Parser::ParserImpl* parser_; TextFormat 898 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Finder* finder_; TextFormat 1034 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Finder::~Finder() { TextFormat 1037 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Parser::Parser() TextFormat 1045 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Parser::~Parser() {} TextFormat 1047 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::Parse(io::ZeroCopyInputStream* input, TextFormat 1057 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::ParseFromString(const string& input, TextFormat 1063 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::Merge(io::ZeroCopyInputStream* input, TextFormat 1072 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::MergeFromString(const string& input, TextFormat 1078 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::MergeUsingImpl(io::ZeroCopyInputStream* input, TextFormat 1092 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::ParseFieldValueFromString( TextFormat 1104 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::Parse(io::ZeroCopyInputStream* input, TextFormat 1109 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::Merge(io::ZeroCopyInputStream* input, TextFormat 1114 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::ParseFromString(const string& input, TextFormat 1119 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::MergeFromString(const string& input, TextFormat 1126 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Printer::Printer() TextFormat 1132 third_party/protobuf/src/google/protobuf/text_format.cc TextFormat::Printer::~Printer() {} TextFormat 1134 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Printer::PrintToString(const Message& message, TextFormat 1146 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Printer::PrintUnknownFieldsToString( TextFormat 1156 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Printer::Print(const Message& message, TextFormat 1166 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Printer::PrintUnknownFields( TextFormat 1177 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::Print(const Message& message, TextFormat 1188 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintFieldValueToString( TextFormat 1203 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintField(const Message& message, TextFormat 1262 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintShortRepeatedField( TextFormat 1283 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintFieldName(const Message& message, TextFormat 1309 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintFieldValue( TextFormat 1377 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::Print(const Message& message, TextFormat 1382 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::PrintUnknownFields( TextFormat 1388 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::PrintToString( TextFormat 1393 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::PrintUnknownFieldsToString( TextFormat 1398 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ void TextFormat::PrintFieldValueToString( TextFormat 1406 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::ParseFieldValueFromString( TextFormat 1425 third_party/protobuf/src/google/protobuf/text_format.cc void TextFormat::Printer::PrintUnknownFields( TextFormat 60 third_party/protobuf/src/google/protobuf/text_format.h class LIBPROTOBUF_EXPORT TextFormat { TextFormat 256 third_party/protobuf/src/google/protobuf/text_format.h friend class TextFormat; TextFormat 352 third_party/protobuf/src/google/protobuf/text_format.h GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TextFormat); TextFormat 355 third_party/protobuf/src/google/protobuf/text_format.h inline void TextFormat::RecordLocation(ParseInfoTree* info_tree, TextFormat 361 third_party/protobuf/src/google/protobuf/text_format.h inline TextFormat::ParseInfoTree* TextFormat::CreateNested( TextFormat 152 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Printer printer; TextFormat 289 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::PrintUnknownFieldsToString(unknown_fields, &text)); TextFormat 310 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Printer printer; TextFormat 332 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Printer printer; TextFormat 352 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_FALSE(TextFormat::Print(message, &output_stream)); TextFormat 360 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 367 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 375 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(parse_string, &proto_)); TextFormat 385 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString(parse_string, &proto)); TextFormat 398 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 410 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream1, &proto_); TextFormat 421 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream2, &proto_); TextFormat 437 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 454 third_party/protobuf/src/google/protobuf/text_format_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString(parse_string, &proto_)); TextFormat 480 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 496 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parse(&input_stream, &proto_); TextFormat 640 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parser parser; TextFormat 650 third_party/protobuf/src/google/protobuf/text_format_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString( TextFormat 738 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parser parser; TextFormat 747 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::ParseInfoTree* info_tree) { TextFormat 748 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parser parser; TextFormat 756 third_party/protobuf/src/google/protobuf/text_format_unittest.cc void ExpectLocation(TextFormat::ParseInfoTree* tree, TextFormat 759 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::ParseLocation location = tree->GetLocation( TextFormat 807 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::ParseInfoTree tree; TextFormat 832 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::ParseInfoTree* nested_tree = TextFormat 845 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::ParseInfoTree* unknown_nested_tree = TextFormat 856 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFieldValueFromString( \ TextFormat 862 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFieldValueFromString( \ TextFormat 868 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFieldValueFromString( \ TextFormat 874 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFieldValueFromString( \ TextFormat 880 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_FALSE(TextFormat::ParseFieldValueFromString( \ TextFormat 964 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFieldValueFromString( TextFormat 1142 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parser parser; TextFormat 1149 third_party/protobuf/src/google/protobuf/text_format_unittest.cc TextFormat::Parser parser; TextFormat 1156 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_TRUE(TextFormat::ParseFromString("a:1,b:2;c:3", &message)); TextFormat 1168 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_FALSE(TextFormat::ParseFromString("no_such_field: 1", &proto)); TextFormat 1185 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_FALSE(TextFormat::ParseFromString("\020", &proto)); TextFormat 1232 third_party/protobuf/src/google/protobuf/text_format_unittest.cc ASSERT_TRUE(TextFormat::ParseFromString(proto_debug_string_, &proto));