Home
last modified time | relevance | path

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

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DStringEncoding.py9 _unicode, _str, _bytes = str, str, bytes variable
12 _unicode, _str, _bytes = unicode, str, str variable
16 empty_unicode = _unicode()
30 assert isinstance(characters, _unicode), str(type(characters))
65 if isinstance(characters, _unicode):
94 self._unicode = UnicodeLiteralBuilder()
98 self._unicode.append(characters)
102 self._unicode.append_charval(char_number)
106 self._unicode.append_charval(char_number)
109 return (self._bytes.getstring(), self._unicode.getstring())
[all …]
DParsing.py13 re=object, _unicode=object, _bytes=object)
23 from StringEncoding import EncodedString, BytesLiteral, _unicode, _bytes
714 elif isinstance(value, _unicode):
/external/chromium_org/third_party/cython/src/Cython/Tempita/
D_tempita.py117 self._unicode = is_unicode(content)
333 if self._unicode:
350 if self._unicode and isinstance(value, bytes):
364 elif not self._unicode and is_unicode(value):