HomeSort by relevance Sort by last modified time
    Searched refs:other_msg (Results 1 - 4 of 4) sorted by null

  /external/protobuf/python/google/protobuf/
message.py 70 def __eq__(self, other_msg):
73 def __ne__(self, other_msg):
74 # Can't just say self != other_msg, since that would infinitely recurse. :)
75 return not self == other_msg
80 def MergeFrom(self, other_msg):
89 other_msg: Message to merge into the current message.
93 def CopyFrom(self, other_msg):
100 other_msg: Message to copy into the current one.
102 if self is other_msg:
105 self.MergeFrom(other_msg)
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
message.py 75 def __eq__(self, other_msg):
79 def __ne__(self, other_msg):
80 # Can't just say self != other_msg, since that would infinitely recurse. :)
81 return not self == other_msg
94 def MergeFrom(self, other_msg):
103 other_msg: Message to merge into the current message.
107 def CopyFrom(self, other_msg):
114 other_msg: Message to copy into the current one.
116 if self is other_msg:
119 self.MergeFrom(other_msg)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mailbox.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mailbox.py     [all...]

Completed in 623 milliseconds