Home | History | Annotate | Download | only in protobuf

Lines Matching refs:full_name

140   def FindMessageTypeByName(self, full_name):
144 full_name: The full name of the descriptor to load.
150 full_name = full_name.lstrip('.') # fix inconsistent qualified name formats
151 if full_name not in self._descriptors:
152 self.FindFileContainingSymbol(full_name)
153 return self._descriptors[full_name]
155 def FindEnumTypeByName(self, full_name):
159 full_name: The full name of the enum descriptor to load.
165 full_name = full_name.lstrip('.') # fix inconsistent qualified name formats
166 if full_name not in self._enum_descriptors:
167 self.FindFileContainingSymbol(full_name)
168 return self._enum_descriptors[full_name]
274 full_name=desc_name,
324 full_name=enum_name,
356 full_name = '.'.join((message_name, field_proto.name))
358 full_name = field_proto.name
362 full_name=full_name,