Searched refs:ParseLines (Results 1 – 3 of 3) sorted by relevance
/external/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])
|
/external/protobuf/python/google/protobuf/ |
D | text_format.py | 648 return ParseLines(text.split(b'\n' if isinstance(text, bytes) else u'\n'), 693 def ParseLines(lines, function 722 return parser.ParseLines(lines, message) 773 def ParseLines(self, lines, message): member in _Parser
|
/external/protobuf/python/google/protobuf/internal/ |
D | text_format_test.py | 735 text_format.ParseLines(f, m) 743 text_format.ParseLines(f, m) 750 text_format.ParseLines(self._BYTES_SAMPLE.split(b'\n'), m) 757 text_format.ParseLines(self._UNICODE_SAMPLE.split(u'\n'), m) 948 r = text_format.ParseLines(opened, parsed_message)
|