Searched refs:_ws_re (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | ext.py | 38 _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 D | ext.py | 38 _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 D | ext.py | 51 _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 D | ext.py | 322 def _trim_whitespace(self, string, _ws_re=re.compile(r'\s*\n\s*')): 323 return _ws_re.sub(' ', string.strip())
|
Completed in 5 milliseconds