HomeSort by relevance Sort by last modified time
    Searched refs:unicode (Results 276 - 300 of 1953) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_unicode.py 1 """ Test script for the Unicode implementation.
25 return (42, 42) # no unicode
27 return (42, 42) # no unicode
41 type2test = unicode
44 # strict assertEqual method: reject implicit bytes/unicode equality
46 if isinstance(first, unicode) or isinstance(second, unicode):
47 self.assertIsInstance(first, unicode)
48 self.assertIsInstance(second, unicode)
62 class usub(unicode)
    [all...]
test_winreg.py 50 (unicode("Unicode Val"), unicode("A Unicode value"), REG_SZ,),
51 ("UnicodeExpand", unicode("The path is %path%"), REG_EXPAND_SZ),
52 ("Multi-unicode", [unicode("Lots"), unicode("of"), unicode("unicode"),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_unicode.py 1 """ Test script for the Unicode implementation.
25 return (42, 42) # no unicode
27 return (42, 42) # no unicode
41 type2test = unicode
44 # strict assertEqual method: reject implicit bytes/unicode equality
46 if isinstance(first, unicode) or isinstance(second, unicode):
47 self.assertIsInstance(first, unicode)
48 self.assertIsInstance(second, unicode)
62 class usub(unicode)
    [all...]
test_winreg.py 50 (unicode("Unicode Val"), unicode("A Unicode value"), REG_SZ,),
51 ("UnicodeExpand", unicode("The path is %path%"), REG_EXPAND_SZ),
52 ("Multi-unicode", [unicode("Lots"), unicode("of"), unicode("unicode"),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode.py 1 """ Test script for the Unicode implementation.
25 return (42, 42) # no unicode
27 return (42, 42) # no unicode
41 type2test = unicode
44 # strict assertEqual method: reject implicit bytes/unicode equality
46 if isinstance(first, unicode) or isinstance(second, unicode):
47 self.assertIsInstance(first, unicode)
48 self.assertIsInstance(second, unicode)
62 class usub(unicode)
    [all...]
test_winreg.py 50 (unicode("Unicode Val"), unicode("A Unicode value"), REG_SZ,),
51 ("UnicodeExpand", unicode("The path is %path%"), REG_EXPAND_SZ),
52 ("Multi-unicode", [unicode("Lots"), unicode("of"), unicode("unicode"),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicode.py 1 """ Test script for the Unicode implementation.
25 return (42, 42) # no unicode
27 return (42, 42) # no unicode
41 type2test = unicode
44 # strict assertEqual method: reject implicit bytes/unicode equality
46 if isinstance(first, unicode) or isinstance(second, unicode):
47 self.assertIsInstance(first, unicode)
48 self.assertIsInstance(second, unicode)
62 class usub(unicode)
    [all...]
test_winreg.py 50 (unicode("Unicode Val"), unicode("A Unicode value"), REG_SZ,),
51 ("UnicodeExpand", unicode("The path is %path%"), REG_EXPAND_SZ),
52 ("Multi-unicode", [unicode("Lots"), unicode("of"), unicode("unicode"),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
gettext.py 222 return unicode(message)
228 return unicode(msgid1)
230 return unicode(msgid2)
244 def install(self, unicode=False, names=None):
246 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
251 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
320 # Unicode using the character encoding specified in the charset
327 # if the Unicode conversion fails.
333 msgid1 = unicode(msgid1, self._charset)
334 tmsg = [unicode(x, self._charset) for x in tmsg]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gettext.py 220 return unicode(message)
226 return unicode(msgid1)
228 return unicode(msgid2)
242 def install(self, unicode=False, names=None):
244 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
317 # Unicode using the character encoding specified in the charset
324 # if the Unicode conversion fails.
330 msgid1 = unicode(msgid1, self._charset)
331 tmsg = [unicode(x, self._charset) for x in tmsg]
    [all...]
  /external/python/cpython2/Include/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /external/python/cpython2/Lib/
gettext.py 295 return unicode(message)
301 return unicode(msgid1)
303 return unicode(msgid2)
317 def install(self, unicode=False, names=None):
319 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
324 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
393 # Unicode using the character encoding specified in the charset
400 # if the Unicode conversion fails.
406 msgid1 = unicode(msgid1, self._charset)
407 tmsg = [unicode(x, self._charset) for x in tmsg
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
gettext.py 220 return unicode(message)
226 return unicode(msgid1)
228 return unicode(msgid2)
242 def install(self, unicode=False, names=None):
244 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
317 # Unicode using the character encoding specified in the charset
324 # if the Unicode conversion fails.
330 msgid1 = unicode(msgid1, self._charset)
331 tmsg = [unicode(x, self._charset) for x in tmsg
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
gettext.py 220 return unicode(message)
226 return unicode(msgid1)
228 return unicode(msgid2)
242 def install(self, unicode=False, names=None):
244 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
317 # Unicode using the character encoding specified in the charset
324 # if the Unicode conversion fails.
330 msgid1 = unicode(msgid1, self._charset)
331 tmsg = [unicode(x, self._charset) for x in tmsg
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gettext.py 220 return unicode(message)
226 return unicode(msgid1)
228 return unicode(msgid2)
242 def install(self, unicode=False, names=None):
244 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
317 # Unicode using the character encoding specified in the charset
324 # if the Unicode conversion fails.
330 msgid1 = unicode(msgid1, self._charset)
331 tmsg = [unicode(x, self._charset) for x in tmsg
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
unicodeobject.h 8 Unicode implementation based on original code by Fredrik Lundh,
10 Unicode Integration Proposal (see file Misc/unicode.txt).
18 * Yet another Unicode string type for Python. This type supports the
30 * This Unicode String Type is
61 /* --- Internal Unicode Format -------------------------------------------- */
78 /* Setting Py_UNICODE_WIDE enables UCS-4 storage. Otherwise, Unicode
133 /* Py_UNICODE is the native Unicode storage format (code unit) used by
134 Python and represents a single Unicode element in the Unicode
485 PyObject *unicode \/* Unicode object *\/ variable
491 PyObject *unicode \/* Unicode object *\/ variable
764 PyObject *unicode \/* Unicode object *\/ variable
821 PyObject *unicode \/* Unicode object *\/ variable
895 PyObject *unicode \/* Unicode object *\/ variable
934 PyObject *unicode \/* Unicode object *\/ variable
951 PyObject *unicode \/* Unicode object *\/ variable
982 PyObject *unicode \/* Unicode object *\/ variable
1004 PyObject *unicode \/* Unicode object *\/ variable
1095 PyObject *unicode \/* Unicode object *\/ variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gettext.py 220 return unicode(message)
226 return unicode(msgid1)
228 return unicode(msgid2)
242 def install(self, unicode=False, names=None):
244 __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
249 __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
317 # Unicode using the character encoding specified in the charset
324 # if the Unicode conversion fails.
330 msgid1 = unicode(msgid1, self._charset)
331 tmsg = [unicode(x, self._charset) for x in tmsg
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_winreg.py 47 (unicode("Unicode Val"), unicode("A Unicode value"), REG_SZ,),
48 ("UnicodeExpand", unicode("The path is %path%"), REG_EXPAND_SZ),
49 ("Multi-unicode", [unicode("Lots"), unicode("of"), unicode("unicode"),
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize.cc 37 * This function closely reflects the Unicode Normalization Algorithm,
45 * so far it's like Unicode Normalization. However, the decomposition and
79 return (bool) c->unicode->decompose (ab, a, b);
88 return (bool) c->unicode->compose (a, b, ab);
190 hb_unicode_funcs_t::space_t space_type = buffer->unicode->space_fallback_type (u);
222 if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
237 while (buffer->idx < end && unlikely (buffer->unicode->is_variation_selector (buffer->cur().codepoint)))
258 if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
301 buffer->unicode,
  /external/pdfium/core/fxcrt/xml/
cfx_xmlsyntaxparser.cpp 43 uint32_t unicode = 0; local
47 unicode = *pSrc++;
49 if ((uint32_t)unicode < 0x80) {
51 } else if ((uint32_t)unicode < 0x800) {
53 } else if ((uint32_t)unicode < 0x10000) {
55 } else if ((uint32_t)unicode < 0x200000) {
57 } else if ((uint32_t)unicode < 0x4000000) {

Completed in 850 milliseconds

<<11121314151617181920>>