HomeSort by relevance Sort by last modified time
    Searched refs:TextFormat (Results 1 - 25 of 28) sorted by null

1 2

  /external/protobuf/java/src/test/java/com/google/protobuf/
TextFormatTest.java 48 * Test case for {@link TextFormat}.
114 String javaText = TextFormat.printToString(TestUtil.getAllSet());
118 // C++ and Java TextFormat classes, so we need to conform.
126 String javaText = TextFormat.printToString(TestUtil.getAllExtensionsSet());
130 // C++ and Java TextFormat classes, so we need to conform.
186 TextFormat.printToString(message));
194 TextFormat.printFieldToString(dataField, "test data"));
202 TextFormat.printFieldToString(optionalField, value));
284 TextFormat.merge(allFieldsSetText, builder);
290 TextFormat.merge(new StringReader(allFieldsSetText), builder)
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
TextFormatTest.java 48 * Test case for {@link TextFormat}.
114 String javaText = TextFormat.printToString(TestUtil.getAllSet());
118 // C++ and Java TextFormat classes, so we need to conform.
126 String javaText = TextFormat.printToString(TestUtil.getAllSetBuilder());
130 // C++ and Java TextFormat classes, so we need to conform.
138 String javaText = TextFormat.printToString(TestUtil.getAllExtensionsSet());
142 // C++ and Java TextFormat classes, so we need to conform.
202 TextFormat.printToString(message));
210 TextFormat.printFieldToString(dataField, "test data"));
218 TextFormat.printFieldToString(optionalField, value))
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 61 TextFormat::PrintToString(*this, &debug_string);
69 TextFormat::Printer printer;
85 TextFormat::Printer printer;
100 TextFormat::ParseInfoTree::ParseInfoTree() { }
102 TextFormat::ParseInfoTree::~ParseInfoTree() {
109 void TextFormat::ParseInfoTree::RecordLocation(
111 TextFormat::ParseLocation location) {
115 TextFormat::ParseInfoTree* TextFormat::ParseInfoTree::CreateNested(
118 TextFormat::ParseInfoTree* instance = new TextFormat::ParseInfoTree()
    [all...]
text_format_unittest.cc 152 TextFormat::Printer printer;
289 EXPECT_TRUE(TextFormat::PrintUnknownFieldsToString(unknown_fields, &text));
310 TextFormat::Printer printer;
332 TextFormat::Printer printer;
352 EXPECT_FALSE(TextFormat::Print(message, &output_stream));
360 TextFormat::Parse(&input_stream, &proto_);
367 TextFormat::Parse(&input_stream, &proto_);
375 EXPECT_TRUE(TextFormat::ParseFromString(parse_string, &proto_));
385 EXPECT_TRUE(TextFormat::ParseFromString(parse_string, &proto));
398 TextFormat::Parse(&input_stream, &proto_)
    [all...]
text_format.h 60 class LIBPROTOBUF_EXPORT TextFormat {
95 // Like TextFormat::Print
97 // Like TextFormat::PrintUnknownFields
100 // Like TextFormat::PrintToString
102 // Like TextFormat::PrintUnknownFieldsToString
105 // Like TextFormat::PrintFieldValueToString
212 // Interface that TextFormat::Parser can use to find extensions.
256 friend class TextFormat;
283 // Like TextFormat::Parse().
285 // Like TextFormat::ParseFromString()
    [all...]
descriptor_database_unittest.cc 56 EXPECT_TRUE(TextFormat::ParseFromString(file_text, &file_proto));
168 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
174 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
descriptor_unittest.cc     [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 58 TextFormat::PrintToString(*this, &debug_string);
66 TextFormat::Printer printer;
82 TextFormat::Printer printer;
107 class TextFormat::Parser::ParserImpl {
616 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) :
631 TextFormat::Parser::ParserImpl* parser_;
647 class TextFormat::Printer::TextGenerator {
768 TextFormat::Parser::Parser()
772 TextFormat::Parser::~Parser() {}
774 bool TextFormat::Parser::Parse(io::ZeroCopyInputStream* input
    [all...]
text_format_unittest.cc 152 TextFormat::Printer printer;
289 EXPECT_TRUE(TextFormat::PrintUnknownFieldsToString(unknown_fields, &text));
310 TextFormat::Printer printer;
332 TextFormat::Printer printer;
345 TextFormat::Parse(&input_stream, &proto_);
352 TextFormat::Parse(&input_stream, &proto_);
364 TextFormat::Parse(&input_stream, &proto_);
376 TextFormat::Parse(&input_stream1, &proto_);
387 TextFormat::Parse(&input_stream2, &proto_);
403 TextFormat::Parse(&input_stream, &proto_)
    [all...]
text_format.h 57 class LIBPROTOBUF_EXPORT TextFormat {
92 // Like TextFormat::Print
94 // Like TextFormat::PrintUnknownFields
97 // Like TextFormat::PrintToString
99 // Like TextFormat::PrintUnknownFieldsToString
102 // Like TextFormat::PrintFieldValueToString
216 // Like TextFormat::Parse().
218 // Like TextFormat::ParseFromString().
220 // Like TextFormat::Merge().
222 // Like TextFormat::MergeFromString()
    [all...]
descriptor_database_unittest.cc 56 EXPECT_TRUE(TextFormat::ParseFromString(file_text, &file_proto));
168 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
174 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
descriptor_unittest.cc     [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
TextFormat.java 55 public final class TextFormat {
56 private TextFormat() {}
    [all...]
UnknownFieldSet.java 137 * {@link TextFormat#printToString(UnknownFieldSet)}.
141 return TextFormat.printToString(this);
AbstractMessage.java 106 return TextFormat.printToString(this);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
TextFormat.java 55 public final class TextFormat {
56 private TextFormat() {
    [all...]
AbstractMessage.java 85 return TextFormat.printToString(this);
UnknownFieldSet.java 137 * {@link TextFormat#printToString(UnknownFieldSet)}.
141 return TextFormat.printToString(this);
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 125 ASSERT_TRUE(TextFormat::ParseFromString(output, &expected));
    [all...]
command_line_interface.cc     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc     [all...]
  /external/protobuf/
Makefile.am 95 java/src/main/java/com/google/protobuf/TextFormat.java \

Completed in 673 milliseconds

1 2