Home
last modified time | relevance | path

Searched refs:_ws_re (Results 1 - 4 of 4) sorted by relevance

/third_party/node/deps/v8/third_party/jinja2/
H A Dext.py38 _ws_re = re.compile(r"\s*\n\s*") variable
344 def _trim_whitespace(self, string, _ws_re=_ws_re):
345 return _ws_re.sub(" ", string.strip())
/third_party/skia/third_party/externals/jinja2/
H A Dext.py38 _ws_re = re.compile(r"\s*\n\s*") variable
344 def _trim_whitespace(self, string, _ws_re=_ws_re):
345 return _ws_re.sub(" ", string.strip())
/third_party/jinja2/
H A Dext.py51 _ws_re = re.compile(r"\s*\n\s*") variable
476 def _trim_whitespace(self, string: str, _ws_re: t.Pattern[str] = _ws_re) -> str:
477 return _ws_re.sub(" ", string.strip())
/third_party/node/tools/inspector_protocol/jinja2/
H A Dext.py322 def _trim_whitespace(self, string, _ws_re=re.compile(r'\s*\n\s*')):
323 return _ws_re.sub(' ', string.strip())

Completed in 5 milliseconds