HomeSort by relevance Sort by last modified time
    Searched defs:FindFileByName (Results 1 - 12 of 12) sorted by null

  /external/nanopb-c/generator/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/protobuf/python/google/protobuf/
descriptor_database.py 80 def FindFileByName(self, name):
descriptor_pool.py 98 specified in a call to FindFileByName() and not require the call to Add()
179 def FindFileByName(self, file_name):
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/
descriptor_database.cc 111 bool PyDescriptorDatabase::FindFileByName(const string& filename,
114 py_database_, "FindFileByName", "s#", filename.c_str(), filename.size()));
descriptor_pool.cc 221 PyObject* FindFileByName(PyDescriptorPool* self, PyObject* arg) {
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,
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
FirmwareVolume.h 276 EFI_PEI_FV_FIND_FILE_NAME FindFileByName;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/FirmwareVolume/
FirmwareVolume.h 112 EFI_PEI_FV_FIND_FILE_NAME FindFileByName;
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 126 bool SourceTreeDescriptorDatabase::FindFileByName(
214 return pool_.FindFileByName(filename);
  /external/protobuf/src/google/protobuf/
descriptor_database.cc 266 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...]

Completed in 437 milliseconds