Searched refs:ParseLines (Results 1 – 3 of 3) sorted by relevance
/third_party/protobuf/objectivec/DevTools/ |
D | pddm.py | 193 self.ParseLines(input_lines) 195 def ParseLines(self, input_lines): member in MacroCollection 529 macro_collection.ParseLines([x[3:] for x in self.lines])
|
/third_party/protobuf/python/google/protobuf/ |
D | text_format.py | 691 return ParseLines(text.split(b'\n' if isinstance(text, bytes) else u'\n'), 737 def ParseLines(lines, function 768 return parser.ParseLines(lines, message) 818 def ParseLines(self, lines, message): member in _Parser
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | text_format_test.py | 890 text_format.ParseLines(f, m) 898 text_format.ParseLines(f, m) 905 text_format.ParseLines(self._BYTES_SAMPLE.split(b'\n'), m) 912 text_format.ParseLines(self._UNICODE_SAMPLE.split(u'\n'), m) 1128 r = text_format.ParseLines(opened, parsed_message)
|