Searched defs:FindFileByName (Results 1 - 10 of 10) sorted by relevance

/external/nanopb-c/generator/google/protobuf/
H A Ddescriptor_database.py59 def FindFileByName(self, name): member in class:DescriptorDatabase
H A Ddescriptor_pool.py70 specified in a call to FindFileByName() and not require the call to Add()
92 def FindFileByName(self, file_name): member in class:DescriptorPool
106 file_proto = self._internal_db.FindFileByName(file_name)
109 file_proto = self._descriptor_db.FindFileByName(file_name)
193 dep_desc = self.FindFileByName(dependency.name)
522 dep_desc = self.FindFileByName(dependency)
/external/protobuf/python/google/protobuf/
H A Ddescriptor_database.py80 def FindFileByName(self, name): member in class:DescriptorDatabase
H A Ddescriptor_pool.py98 specified in a call to FindFileByName() and not require the call to Add()
179 def FindFileByName(self, file_name): member in class:DescriptorPool
198 file_proto = self._internal_db.FindFileByName(file_name)
201 file_proto = self._descriptor_db.FindFileByName(file_name)
321 direct_deps = [self.FindFileByName(n) for n in file_proto.dependency]
709 dep_desc = self.FindFileByName(dependency)
/external/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_database.cc111 bool PyDescriptorDatabase::FindFileByName(const string& filename, function in class:google::protobuf::python::PyDescriptorDatabase
114 py_database_, "FindFileByName", "s#", filename.c_str(), filename.size()));
H A Ddescriptor_pool.cc221 PyObject* FindFileByName(PyDescriptorPool* self, PyObject* arg) { function in namespace:google::protobuf::python::cdescriptor_pool
229 self->pool->FindFileByName(string(name, name_size));
341 self->pool->FindFileByName(file_descriptor->name())) {
436 generated_file = self->underlay->FindFileByName(file_proto.name());
482 { "FindFileByName", (PyCFunction)FindFileByName, METH_O,
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc266 bool SimpleDescriptorDatabase::FindFileByName( function in class:google::protobuf::SimpleDescriptorDatabase
328 bool EncodedDescriptorDatabase::FindFileByName( function in class:google::protobuf::EncodedDescriptorDatabase
396 bool DescriptorPoolDatabase::FindFileByName( function in class:google::protobuf::DescriptorPoolDatabase
399 const FileDescriptor* file = pool_.FindFileByName(filename);
461 bool MergedDescriptorDatabase::FindFileByName( function in class:google::protobuf::MergedDescriptorDatabase
465 if (sources_[i]->FindFileByName(filename, output)) {
483 if (sources_[j]->FindFileByName(output->name(), &temp)) {
507 if (sources_[j]->FindFileByName(output->name(), &temp)) {
H A Ddescriptor_unittest.cc2453 return pool_->FindFileByName(proto.name());
2483 EXPECT_EQ(bar_file_, pool_->FindFileByName(bar_file_->name()));
2484 EXPECT_TRUE(pool_->FindFileByName(baz_file->name()) == NULL);
5897 bool FindFileByName(const string& filename, function in class:google::protobuf::descriptor_unittest::DatabaseBackedPoolTest::ErrorDescriptorDatabase
5944 bool FindFileByName(const string& filename, function in class:google::protobuf::descriptor_unittest::DatabaseBackedPoolTest::CallCountingDatabase
5947 return wrapped_db_->FindFileByName(filename, output);
5975 bool FindFileByName(const string& filename, function in class:google::protobuf::descriptor_unittest::DatabaseBackedPoolTest::FalsePositiveDatabase
5977 return wrapped_db_->FindFileByName(filename, output);
5981 return FindFileByName("foo.proto", output);
5986 return FindFileByName("fo
6261 bool FindFileByName(const string& filename, function in class:google::protobuf::descriptor_unittest::ExponentialErrorDatabase
[all...]
H A Ddescriptor.cc1174 const FileDescriptor* DescriptorPool::FindFileByName(const string& name) const { function in class:google::protobuf::DescriptorPool
1181 result = underlay_->FindFileByName(name);
1580 if (!fallback_database_->FindFileByName(name, &file_proto) ||
3840 pool_->underlay_->FindFileByName(proto.dependency(i)) == NULL)) {
3929 dependency = pool_->underlay_->FindFileByName(proto.dependency(i));
/external/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc126 bool SourceTreeDescriptorDatabase::FindFileByName( function in class:google::protobuf::compiler::SourceTreeDescriptorDatabase
214 return pool_.FindFileByName(filename);

Completed in 270 milliseconds