/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
descriptor_database.h | 72 virtual bool FindFileByName(const string& filename, 144 bool FindFileByName(const string& filename, 289 bool FindFileByName(const string& filename, 318 bool FindFileByName(const string& filename, 347 bool FindFileByName(const string& filename,
|
descriptor_database_unittest.cc | 182 TEST_P(DescriptorDatabaseTest, FindFileByName) { 192 EXPECT_TRUE(database_->FindFileByName("foo.proto", &file)); 199 EXPECT_TRUE(database_->FindFileByName("bar.proto", &file)); 207 EXPECT_FALSE(database_->FindFileByName("baz.proto", &file)); 561 TEST_F(MergedDescriptorDatabaseTest, FindFileByName) { 565 EXPECT_TRUE(forward_merged_.FindFileByName("foo.proto", &file)); 573 EXPECT_TRUE(forward_merged_.FindFileByName("bar.proto", &file)); 581 EXPECT_TRUE(forward_merged_.FindFileByName("baz.proto", &file)); 589 EXPECT_TRUE(reverse_merged_.FindFileByName("baz.proto", &file)); 597 EXPECT_FALSE(forward_merged_.FindFileByName("no_such.proto", &file)) [all...] |
descriptor_database.cc | 267 bool SimpleDescriptorDatabase::FindFileByName( 328 bool EncodedDescriptorDatabase::FindFileByName( 396 bool DescriptorPoolDatabase::FindFileByName( 399 const FileDescriptor* file = pool_.FindFileByName(filename); 461 bool MergedDescriptorDatabase::FindFileByName( 465 if (sources_[i]->FindFileByName(filename, output)) { 483 if (sources_[j]->FindFileByName(output->name(), &temp)) { 507 if (sources_[j]->FindFileByName(output->name(), &temp)) {
|
descriptor_unittest.cc | [all...] |
descriptor.h | [all...] |
descriptor.cc | [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor_database.h | 71 virtual bool FindFileByName(const string& filename, 143 bool FindFileByName(const string& filename, 288 bool FindFileByName(const string& filename, 317 bool FindFileByName(const string& filename, 346 bool FindFileByName(const string& filename,
|
descriptor_database_unittest.cc | 182 TEST_P(DescriptorDatabaseTest, FindFileByName) { 192 EXPECT_TRUE(database_->FindFileByName("foo.proto", &file)); 199 EXPECT_TRUE(database_->FindFileByName("bar.proto", &file)); 207 EXPECT_FALSE(database_->FindFileByName("baz.proto", &file)); 561 TEST_F(MergedDescriptorDatabaseTest, FindFileByName) { 565 EXPECT_TRUE(forward_merged_.FindFileByName("foo.proto", &file)); 573 EXPECT_TRUE(forward_merged_.FindFileByName("bar.proto", &file)); 581 EXPECT_TRUE(forward_merged_.FindFileByName("baz.proto", &file)); 589 EXPECT_TRUE(reverse_merged_.FindFileByName("baz.proto", &file)); 597 EXPECT_FALSE(forward_merged_.FindFileByName("no_such.proto", &file)) [all...] |
descriptor_database.cc | 267 bool SimpleDescriptorDatabase::FindFileByName( 328 bool EncodedDescriptorDatabase::FindFileByName( 396 bool DescriptorPoolDatabase::FindFileByName( 399 const FileDescriptor* file = pool_.FindFileByName(filename); 461 bool MergedDescriptorDatabase::FindFileByName( 465 if (sources_[i]->FindFileByName(filename, output)) { 483 if (sources_[j]->FindFileByName(output->name(), &temp)) { 507 if (sources_[j]->FindFileByName(output->name(), &temp)) {
|
descriptor_unittest.cc | [all...] |
descriptor.h | [all...] |
descriptor.cc | 870 const FileDescriptor* DescriptorPool::FindFileByName(const string& name) const { 875 const FileDescriptor* result = underlay_->FindFileByName(name); [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
descriptor_database_test.py | 51 self.assertEquals(file_desc_proto, db.FindFileByName(
|
descriptor_pool_test.py | 59 file_desc1 = self.pool.FindFileByName(name1) 66 file_desc2 = self.pool.FindFileByName(name2) 74 self.pool.FindFileByName('Does not exist')
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor_database.py | 59 def FindFileByName(self, name):
|
descriptor_pool.py | 70 specified in a call to FindFileByName() and not require the call to Add() 92 def FindFileByName(self, file_name): 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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
importer.h | 99 bool FindFileByName(const string& filename, FileDescriptorProto* output);
|
plugin.cc | 124 parsed_files.push_back(pool.FindFileByName(request.file_to_generate(i)));
|
importer.cc | 122 bool SourceTreeDescriptorDatabase::FindFileByName( 195 return pool_.FindFileByName(filename);
|
plugin.pb.cc | 41 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName( [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
importer.h | 99 bool FindFileByName(const string& filename, FileDescriptorProto* output);
|
plugin.cc | 120 pool.FindFileByName(request.file_to_generate(i));
|
importer.cc | 122 bool SourceTreeDescriptorDatabase::FindFileByName( 195 return pool_.FindFileByName(filename);
|
plugin.pb.cc | 35 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName( [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/ |
python_descriptor.cc | 308 if (google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
|