Searched refs:soft_unicode (Results 1 – 14 of 14) sorted by relevance
/third_party/skia/third_party/externals/jinja2/ |
D | filters.py | 13 from markupsafe import soft_unicode 194 s = soft_unicode(s) 195 return s.replace(soft_unicode(old), soft_unicode(new), count) 200 return soft_unicode(s).upper() 205 return soft_unicode(s).lower() 248 return soft_unicode(s).capitalize() 258 for item in _word_beginning_split_re.split(soft_unicode(s)) 498 return soft_unicode(d).join(imap(soft_unicode, value)) 764 return len(_word_re.findall(soft_unicode(s))) 823 return soft_unicode(value) % (kwargs or args) [all …]
|
D | utils.py | 728 def soft_unicode(s): function 729 from markupsafe import soft_unicode 737 return soft_unicode(s)
|
D | runtime.py | 9 from markupsafe import soft_unicode 65 iterator = imap(soft_unicode, seq)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | filters.py | 18 from jinja2.utils import Markup, escape, pformat, urlize, soft_unicode, \ 139 s = soft_unicode(s) 140 return s.replace(soft_unicode(old), soft_unicode(new), count) 145 return soft_unicode(s).upper() 150 return soft_unicode(s).lower() 193 return soft_unicode(s).capitalize() 202 for item in _word_beginning_split_re.split(soft_unicode(s)) 424 return soft_unicode(d).join(imap(soft_unicode, value)) 685 return soft_unicode(value) % (kwargs or args) 690 return soft_unicode(value).strip() [all …]
|
D | runtime.py | 17 from jinja2.utils import Markup, soft_unicode, escape, missing, concat, \ 46 iterator = imap(soft_unicode, seq)
|
D | utils.py | 647 from markupsafe import Markup, escape, soft_unicode
|
/third_party/node/tools/inspector_protocol/markupsafe/ |
D | __init__.py | 228 from markupsafe._speedups import escape, escape_silent, soft_unicode 230 from markupsafe._native import escape, escape_silent, soft_unicode 233 soft_str = soft_unicode
|
D | _speedups.c | 172 soft_unicode(PyObject *self, PyObject *s) in soft_unicode() function 194 {"soft_unicode", (PyCFunction)soft_unicode, METH_O,
|
D | _native.py | 40 def soft_unicode(s): function
|
/third_party/skia/third_party/externals/markupsafe/ |
D | __init__.py | 228 from markupsafe._speedups import escape, escape_silent, soft_unicode 230 from markupsafe._native import escape, escape_silent, soft_unicode 233 soft_str = soft_unicode
|
D | _speedups.c | 172 soft_unicode(PyObject *self, PyObject *s) in soft_unicode() function 194 {"soft_unicode", (PyCFunction)soft_unicode, METH_O,
|
D | _native.py | 40 def soft_unicode(s): function
|
/third_party/markupsafe/ |
D | _speedups.pyi | 9 def soft_unicode(s: Any) -> str: ...
|
D | CHANGES.rst | 15 - Remove ``soft_unicode``, which was previously deprecated. Use
|