Searched defs:MergeFromString (Results 1 - 7 of 7) sorted by relevance

/external/protobuf/python/google/protobuf/
H A Dmessage.py129 # TODO(robinson): MergeFromString() should probably return None and be
133 # MergeFromString().
135 def MergeFromString(self, serialized): member in class:Message
166 """Like MergeFromString(), except we clear the object first."""
168 self.MergeFromString(serialized)
H A Dreflection.py607 message.MergeFromString(s)
818 def MergeFromString(self, serialized): function in function:_AddMergeFromStringMethod
830 cls.MergeFromString = MergeFromString
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dmessage.py143 # TODO(robinson): MergeFromString() should probably return None and be
147 # MergeFromString().
149 def MergeFromString(self, serialized): member in class:Message
180 """Like MergeFromString(), except we clear the object first."""
182 self.MergeFromString(serialized)
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dcpp_message.py570 self.MergeFromString(serialized)
572 def MergeFromString(self, serialized): function in function:_AddMessageMethods
573 byte_size = self._cmsg.MergeFromString(serialized)
652 msg.MergeFromString(string)
H A Dpython_message.py557 message.MergeFromString(s)
792 def MergeFromString(self, serialized): function in function:_AddMergeFromStringMethod
804 cls.MergeFromString = MergeFromString
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtext_format.cc1072 bool TextFormat::Parser::MergeFromString(const string& input, function in class:google::protobuf::TextFormat::Parser
1119 /* static */ bool TextFormat::MergeFromString(const string& input, function in class:google::protobuf::TextFormat
1121 return Parser().MergeFromString(input, output);
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc795 bool TextFormat::Parser::MergeFromString(const string& input, function in class:google::protobuf::TextFormat::Parser
840 /* static */ bool TextFormat::MergeFromString(const string& input, function in class:google::protobuf::TextFormat
842 return Parser().MergeFromString(input, output);

Completed in 266 milliseconds