OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FindFileByName
(Results
1 - 10
of
10
) sorted by null
/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.cc
122
bool SourceTreeDescriptorDatabase::
FindFileByName
(
195
return pool_.
FindFileByName
(filename);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
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.cc
[
all
...]
/external/protobuf/src/google/protobuf/compiler/
importer.cc
122
bool SourceTreeDescriptorDatabase::
FindFileByName
(
195
return pool_.
FindFileByName
(filename);
/external/protobuf/src/google/protobuf/
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.cc
870
const FileDescriptor* DescriptorPool::
FindFileByName
(const string& name) const {
875
const FileDescriptor* result = underlay_->
FindFileByName
(name);
[
all
...]
Completed in 295 milliseconds