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

1 2 3 4 5 6 7 8 9

  /external/protobuf/java/core/src/test/java/com/google/protobuf/
TextFormatTest.java 35 import com.google.protobuf.TextFormat.Parser.SingularOverwritePolicy;
52 * Test case for {@link TextFormat}.
125 private final TextFormat.Parser parserWithOverwriteForbidden =
126 TextFormat.Parser.newBuilder()
131 private final TextFormat.Parser defaultParser =
132 TextFormat.Parser.newBuilder().build();
136 String javaText = TextFormat.printToString(TestUtil.getAllSet());
140 // C++ and Java TextFormat classes, so we need to conform.
148 String javaText = TextFormat.printToString(TestUtil.getAllSetBuilder());
152 // C++ and Java TextFormat classes, so we need to conform
    [all...]
  /external/tensorflow/tensorflow/core/framework/
kernel_def_builder_test.cc 28 protobuf::TextFormat::ParseFromString("op: 'A' device_type: 'CPU'",
40 protobuf::TextFormat::ParseFromString(R"proto(
54 protobuf::TextFormat::ParseFromString(R"proto(
66 protobuf::TextFormat::ParseFromString(R"proto(
82 protobuf::TextFormat::ParseFromString(
op_gen_lib_test.cc 181 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
214 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
251 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
283 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
311 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
341 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
382 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
409 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
442 protobuf::TextFormat::ParseFromString(kTestOpList, &op_list); // NOLINT
500 protobuf::TextFormat::ParseFromString(op_list1, &op_list); // NOLIN
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
InvocationPolicyParser.java 21 import com.google.protobuf.TextFormat;
50 TextFormat.merge(policy, builder);
53 } catch (InvalidProtocolBufferException | TextFormat.ParseException e) {
  /external/perf_data_converter/src/quipper/compat/
proto.h 23 using ::google::protobuf::TextFormat;
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
CountryZonesFileSupport.java 19 import com.google.protobuf.TextFormat;
40 TextFormat.getParser().merge(fileReader, builder);
42 } catch (TextFormat.ParseException e) {
  /external/tensorflow/tensorflow/core/api_def/
update_api_def_test.cc 71 protobuf::TextFormat::ParseFromString(op_text, &op); // NOLINT
137 protobuf::TextFormat::ParseFromString(op1_text, &op1); // NOLINT
138 protobuf::TextFormat::ParseFromString(op2_text, &op2); // NOLINT
139 protobuf::TextFormat::ParseFromString(op3_text, &op3); // NOLINT
174 protobuf::TextFormat::ParseFromString(op_text, &op); // NOLINT
  /external/protobuf/src/google/protobuf/
text_format.cc 94 TextFormat::Printer printer;
105 TextFormat::Printer printer;
122 TextFormat::Printer printer;
138 TextFormat::ParseInfoTree::ParseInfoTree() { }
140 TextFormat::ParseInfoTree::~ParseInfoTree() {
147 void TextFormat::ParseInfoTree::RecordLocation(
149 TextFormat::ParseLocation location) {
153 TextFormat::ParseInfoTree* TextFormat::ParseInfoTree::CreateNested(
156 TextFormat::ParseInfoTree* instance = new TextFormat::ParseInfoTree()
    [all...]
text_format_unittest.cc 157 TextFormat::Printer printer;
287 TextFormat::Printer printer;
328 EXPECT_TRUE(TextFormat::PrintUnknownFieldsToString(unknown_fields, &text));
349 TextFormat::Printer printer;
371 TextFormat::Printer printer;
391 EXPECT_FALSE(TextFormat::Print(message, &output_stream));
397 class CustomUInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
412 TextFormat::Printer printer;
421 class CustomInt32FieldValuePrinter : public TextFormat::FieldValuePrinter {
434 TextFormat::Printer printer
    [all...]
text_format.h 65 class LIBPROTOBUF_EXPORT TextFormat {
135 // Like TextFormat::Print
137 // Like TextFormat::PrintUnknownFields
140 // Like TextFormat::PrintToString
142 // Like TextFormat::PrintUnknownFieldsToString
145 // Like TextFormat::PrintFieldValueToString
227 // property of TextFormat::Printer. That is, from the printed message, we
319 // google::protobuf::TextFormat::Print().
341 // Interface that TextFormat::Parser can use to find extensions.
385 friend class TextFormat;
    [all...]
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_stats_test.cc 91 CHECK(protobuf::TextFormat::ParseFromString(
127 CHECK(protobuf::TextFormat::ParseFromString(
163 CHECK(protobuf::TextFormat::ParseFromString(
194 CHECK(protobuf::TextFormat::ParseFromString(
244 CHECK(protobuf::TextFormat::ParseFromString(
278 CHECK(protobuf::TextFormat::ParseFromString(
tfprof_utils.h 54 } else if (protobuf::TextFormat::ParseFromString(out, proto)) {
58 if (protobuf::TextFormat::ParseFromString(out, proto)) {
  /external/tensorflow/tensorflow/tools/graph_transforms/
file_utils.cc 34 if (protobuf::TextFormat::ParseFromString(file_data, graph_def)) {
  /external/tensorflow/tensorflow/core/graph/
validate_test.cc 44 auto parser = protobuf::TextFormat::Parser();
59 auto parser = protobuf::TextFormat::Parser();
82 auto parser = protobuf::TextFormat::Parser();
104 auto parser = protobuf::TextFormat::Parser();
116 auto parser = protobuf::TextFormat::Parser();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypoFix.java 20 import com.android.tools.lint.detector.api.TextFormat;
62 String typo = TypoDetector.getTypo(message, TextFormat.TEXT);
66 List<String> replacements = TypoDetector.getSuggestions(message, TextFormat.TEXT);
107 String typo = TypoDetector.getTypo(message, TextFormat.TEXT);
108 List<String> replacements = TypoDetector.getSuggestions(message, TextFormat.TEXT);
  /external/tensorflow/tensorflow/core/kernels/
summary_op_test.cc 43 CHECK(protobuf::TextFormat::ParseFromString(expected_str, &expected));
290 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
295 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
298 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
324 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
329 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
332 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
358 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
363 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(
  /external/tensorflow/tensorflow/compiler/xla/tools/
convert_computation.cc 44 tensorflow::protobuf::TextFormat::PrintToString(module, &out);
  /external/perf_data_converter/src/quipper/
test_utils.h 51 ASSERT_TRUE(TextFormat::Parse(&arr1, &proto1));
52 ASSERT_TRUE(TextFormat::Parse(&arr2, &proto2));
conversion_utils.cc 63 if (!TextFormat::ParseFromString(text, &perf_data_proto)) return false;
98 if (!TextFormat::PrintToString(perf_data_proto, &output_string))
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
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...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
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...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
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...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
text_format.h 65 class LIBPROTOBUF_EXPORT TextFormat {
135 // Like TextFormat::Print
137 // Like TextFormat::PrintUnknownFields
140 // Like TextFormat::PrintToString
142 // Like TextFormat::PrintUnknownFieldsToString
145 // Like TextFormat::PrintFieldValueToString
227 // property of TextFormat::Printer. That is, from the printed message, we
319 // google::protobuf::TextFormat::Print().
341 // Interface that TextFormat::Parser can use to find extensions.
385 friend class TextFormat;
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
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...]
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen_test.cc 111 protobuf::TextFormat::ParseFromString(kBaseOpDef, &op_defs); // NOLINT
139 protobuf::TextFormat::ParseFromString(kBaseOpDef, &op_defs); // NOLINT
170 protobuf::TextFormat::ParseFromString(kBaseOpDef, &op_defs); // NOLINT

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 9