HomeSort by relevance Sort by last modified time
    Searched refs:file_proto (Results 1 - 15 of 15) sorted by null

  /external/nanopb-c/generator/google/protobuf/
message_factory.py 90 for file_proto in file_protos:
91 _DB.Add(file_proto)
92 for file_proto in file_protos:
93 for desc in _GetAllDescriptors(file_proto.message_type, file_proto.package):
descriptor_pool.py 106 file_proto = self._internal_db.FindFileByName(file_name)
109 file_proto = self._descriptor_db.FindFileByName(file_name)
112 if not file_proto:
114 return self._ConvertFileProtoToFileDescriptor(file_proto)
130 file_proto = self._internal_db.FindFileContainingSymbol(symbol)
133 file_proto = self._descriptor_db.FindFileContainingSymbol(symbol)
136 if not file_proto:
138 return self._ConvertFileProtoToFileDescriptor(file_proto)
170 def _ConvertFileProtoToFileDescriptor(self, file_proto):
177 file_proto: The proto to convert
    [all...]
  /external/protobuf/python/google/protobuf/
descriptor_pool.py 177 file_proto = self._internal_db.FindFileByName(file_name)
181 file_proto = self._descriptor_db.FindFileByName(file_name)
184 if not file_proto:
186 return self._ConvertFileProtoToFileDescriptor(file_proto)
213 file_proto = self._internal_db.FindFileContainingSymbol(symbol)
217 file_proto = self._descriptor_db.FindFileContainingSymbol(symbol)
220 if not file_proto:
222 return self._ConvertFileProtoToFileDescriptor(file_proto)
254 def _ConvertFileProtoToFileDescriptor(self, file_proto):
261 file_proto: The proto to convert
    [all...]
message_factory.py 153 for file_proto in file_protos:
154 _FACTORY.pool.Add(file_proto)
155 return _FACTORY.GetMessages([file_proto.name for file_proto in file_protos])
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.cc 104 void CollectExtensions(const FileDescriptorProto& file_proto,
108 if (!CollectExtensions(file_proto, extensions)) {
109 // There are unknown fields in the file_proto, which are probably
113 file_proto.GetDescriptor()->full_name());
116 << file_proto.name()
132 << file_proto.name()
339 // in proto compiler. When we put the descriptor data in the file_proto, those
343 // in the file_proto message, and prepare an ExtensionRegistry to return.
348 FileDescriptorProto file_proto; local
349 file_->CopyTo(&file_proto);
412 FileDescriptorProto file_proto; local
    [all...]
java_shared_code_generator.cc 114 FileDescriptorProto file_proto; local
115 file_->CopyTo(&file_proto);
119 file_proto.SerializeToString(&file_data);
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 55 FileDescriptorProto file_proto; local
56 EXPECT_TRUE(TextFormat::ParseFromString(file_text, &file_proto));
57 database->Add(file_proto);
167 FileDescriptorProto file_proto; local
168 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
169 EXPECT_TRUE(test_case_->AddToDatabase(file_proto));
173 FileDescriptorProto file_proto; local
174 EXPECT_TRUE(TextFormat::ParseFromString(file_descriptor_text, &file_proto));
175 EXPECT_FALSE(test_case_->AddToDatabase(file_proto));
descriptor_unittest.cc 1619 FileDescriptorProto file_proto; local
1657 FileDescriptorProto file_proto; local
1887 FileDescriptorProto file_proto; local
2011 FileDescriptorProto file_proto; local
2505 FileDescriptorProto file_proto; local
2564 FileDescriptorProto file_proto; local
2641 FileDescriptorProto file_proto; local
2721 FileDescriptorProto file_proto; local
2840 FileDescriptorProto file_proto; local
2925 FileDescriptorProto file_proto; local
2935 FileDescriptorProto file_proto; local
2949 FileDescriptorProto file_proto; local
2959 FileDescriptorProto file_proto; local
4647 FileDescriptorProto file_proto; local
4745 FileDescriptorProto file_proto; local
    [all...]
descriptor_database.cc 361 FileDescriptorProto file_proto; local
362 if (!file_proto.ParseFromArray(encoded_file.first, encoded_file.second)) {
365 *output = file_proto.name();
descriptor.cc     [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor.cc 318 google::protobuf::FileDescriptorProto file_proto; local
319 if (!file_proto.ParseFromArray(message_type, message_len)) {
325 file_proto.name()) != NULL) {
331 GetDescriptorPool()->BuildFileCollectingErrors(file_proto,
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_file.cc 97 FileDescriptorProto file_proto; local
98 file_->CopyTo(&file_proto);
99 if (UsesExtensions(file_proto)) {
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_file.cc 98 FileDescriptorProto file_proto; local
99 file_->CopyTo(&file_proto);
100 if (UsesExtensions(file_proto) && !params_.store_unknown_fields()) {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.cc 575 FileDescriptorProto file_proto; local
576 file_->CopyTo(&file_proto);
578 file_proto.SerializeToString(&file_data);
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1437 FileDescriptorProto* file_proto = file_set.add_file(); local
    [all...]

Completed in 602 milliseconds