Lines Matching refs:full_name

115   def __init__(self, options, options_class_name, name, full_name,
126 full_name: (str) Fully-qualified name of this protocol message type,
141 # TODO(falk): Add function to calculate full_name instead of having it in
143 self.full_name = full_name
182 full_name: (str) Fully-qualified name of this protocol message type,
226 def __init__(self, name, full_name, filename, containing_type, fields,
237 options, 'MessageOptions', name, full_name, file,
318 full_name: (str) Name of this field, including containing scope. This is
428 def __init__(self, name, full_name, index, number, type, cpp_type, label,
441 self.full_name = full_name
457 self._cdescriptor = _message.GetExtensionDescriptor(full_name)
459 self._cdescriptor = cpp_message.GetExtensionDescriptor(full_name)
462 self._cdescriptor = _message.GetFieldDescriptor(full_name)
464 self._cdescriptor = cpp_message.GetFieldDescriptor(full_name)
496 full_name: (str) Full name of the type, including package name
514 def __init__(self, name, full_name, filename, values,
523 options, 'EnumOptions', name, full_name, file,
575 full_name: (str) Full name of the service, including package name.
585 def __init__(self, name, full_name, index, methods, options=None, file=None,
588 options, 'ServiceOptions', name, full_name, file,
619 full_name: (str) Full name of method.
629 def __init__(self, name, full_name, index, containing_service,
638 self.full_name = full_name
702 full_name = '.'.join(full_message_name + [field_proto.name])
704 field_proto.name, full_name, field_proto.number - 1,