Home
last modified time | relevance | path

Searched refs:_QUOTES (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/
Dflag_changer.py19 _QUOTES = '"\'' # Either a single or a double quote. variable
231 if (current_quote is None and c in _QUOTES) or c == current_quote:
/external/protobuf/python/google/protobuf/
Dtext_format.py69 _QUOTES = frozenset(("'", '"')) variable
776 r'{qt}([^{qt}\n\\]|\\.)*({qt}|\\?$)'.format(qt=mark) for mark in _QUOTES
1024 while self.token and self.token[0] in _QUOTES:
1041 if len(text) < 1 or text[0] not in _QUOTES:
/external/protobuf/python/google/protobuf/internal/
Dtext_format_test.py67 for quote in text_format._QUOTES: