HomeSort by relevance Sort by last modified time
    Searched full:_whitespace (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/tools/grit/grit/node/
message.py 24 _WHITESPACE = lazy_re.compile('(?P<start>\s*)(?P<body>.+?)(?P<end>\s*)\Z',
141 m = _WHITESPACE.match(text)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
textwrap.py 38 _whitespace = '\t\n\x0b\x0c\r ' variable
82 whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
86 for x in map(ord, _whitespace):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
textwrap.py 38 _whitespace = '\t\n\x0b\x0c\r ' variable
82 whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
86 for x in map(ord, _whitespace):
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 305 _WHITESPACE = re.compile('(\\s|(#.*$))+', re.MULTILINE)
348 match = self._WHITESPACE.match(self._current_line, self._column)
  /external/protobuf/python/google/protobuf/
text_format.py 302 _WHITESPACE = re.compile('(\\s|(#.*$))+', re.MULTILINE)
351 match = re.match(self._WHITESPACE, self._current_line)
  /external/chromium_org/tools/grit/grit/gather/
tr_html.py 99 _WHITESPACE = lazy_re.compile(r'(\s|&nbsp;|\\n|\\r|<!--\s*desc\s*=.*?-->)+',
351 m = _WHITESPACE.match(self.Rest())

Completed in 84 milliseconds