Searched refs:uni (Results 1 - 25 of 29) sorted by relevance

12

/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_pprint.py7 uni = unicode variable
9 def uni(x): function
44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
114 for simple in (0, 0L, 0+0j, 0.0, "", uni(""),
119 -6, -6L, -6-6j, -1.5, "x", uni("x"), (3,), [3], {3: 6},
H A Dtest_multibytecodec.py221 uni = u':hu4:unit\xe9 de famille'
222 self.assertEqual(iso2022jp2.decode('iso2022-jp-2'), uni)
H A Dtest_multibytecodec_support.py321 for uni, coded in uc:
322 unich = unichr(int(uni, 16))
H A Dtest_codecs.py905 for uni, puny in punycode_testcases:
911 self.assertEqual(uni.encode("punycode").lower(), puny.lower())
914 for uni, puny in punycode_testcases:
915 self.assertEqual(uni, puny.decode("punycode"))
934 for internal, uni in ok:
937 self.assertEqual(uni, internal.decode("unicode_internal"))
H A Dtest_codeccallbacks.py298 for uni in [ s*l for s in (u"x", u"\u3042", u"a\xe4") ]:
303 uni.encode(enc, err)
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_pprint.py7 uni = unicode variable
9 def uni(x): function
44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
114 for simple in (0, 0L, 0+0j, 0.0, "", uni(""),
119 -6, -6L, -6-6j, -1.5, "x", uni("x"), (3,), [3], {3: 6},
H A Dtest_multibytecodec.py221 uni = u':hu4:unit\xe9 de famille'
222 self.assertEqual(iso2022jp2.decode('iso2022-jp-2'), uni)
H A Dtest_multibytecodec_support.py321 for uni, coded in uc:
322 unich = unichr(int(uni, 16))
H A Dtest_codecs.py905 for uni, puny in punycode_testcases:
911 self.assertEqual(uni.encode("punycode").lower(), puny.lower())
914 for uni, puny in punycode_testcases:
915 self.assertEqual(uni, puny.decode("punycode"))
934 for internal, uni in ok:
937 self.assertEqual(uni, internal.decode("unicode_internal"))
H A Dtest_codeccallbacks.py298 for uni in [ s*l for s in (u"x", u"\u3042", u"a\xe4") ]:
303 uni.encode(enc, err)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_pprint.py7 uni = unicode variable
9 def uni(x): function
44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
114 for simple in (0, 0L, 0+0j, 0.0, "", uni(""),
119 -6, -6L, -6-6j, -1.5, "x", uni("x"), (3,), [3], {3: 6},
H A Dtest_multibytecodec.py221 uni = u':hu4:unit\xe9 de famille'
222 self.assertEqual(iso2022jp2.decode('iso2022-jp-2'), uni)
H A Dtest_multibytecodec_support.py321 for uni, coded in uc:
322 unich = unichr(int(uni, 16))
H A Dtest_codecs.py905 for uni, puny in punycode_testcases:
911 self.assertEqual(uni.encode("punycode").lower(), puny.lower())
914 for uni, puny in punycode_testcases:
915 self.assertEqual(uni, puny.decode("punycode"))
934 for internal, uni in ok:
937 self.assertEqual(uni, internal.decode("unicode_internal"))
H A Dtest_codeccallbacks.py298 for uni in [ s*l for s in (u"x", u"\u3042", u"a\xe4") ]:
303 uni.encode(enc, err)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_pprint.py7 uni = unicode variable
9 def uni(x): function
44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
114 for simple in (0, 0L, 0+0j, 0.0, "", uni(""),
119 -6, -6L, -6-6j, -1.5, "x", uni("x"), (3,), [3], {3: 6},
H A Dtest_multibytecodec.py221 uni = u':hu4:unit\xe9 de famille'
222 self.assertEqual(iso2022jp2.decode('iso2022-jp-2'), uni)
H A Dtest_multibytecodec_support.py321 for uni, coded in uc:
322 unich = unichr(int(uni, 16))
H A Dtest_codecs.py905 for uni, puny in punycode_testcases:
911 self.assertEqual(uni.encode("punycode").lower(), puny.lower())
914 for uni, puny in punycode_testcases:
915 self.assertEqual(uni, puny.decode("punycode"))
934 for internal, uni in ok:
937 self.assertEqual(uni, internal.decode("unicode_internal"))
H A Dtest_codeccallbacks.py298 for uni in [ s*l for s in (u"x", u"\u3042", u"a\xe4") ]:
303 uni.encode(enc, err)
/prebuilts/gdb/darwin-x86/lib/python2.7/json/
H A Ddecoder.py124 uni = int(esc, 16)
126 if 0xd800 <= uni <= 0xdbff and sys.maxunicode > 65535:
134 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
136 char = unichr(uni)
/prebuilts/gdb/linux-x86/lib/python2.7/json/
H A Ddecoder.py124 uni = int(esc, 16)
126 if 0xd800 <= uni <= 0xdbff and sys.maxunicode > 65535:
134 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
136 char = unichr(uni)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
H A Ddecoder.py124 uni = int(esc, 16)
126 if 0xd800 <= uni <= 0xdbff and sys.maxunicode > 65535:
134 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
136 char = unichr(uni)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
H A Ddecoder.py124 uni = int(esc, 16)
126 if 0xd800 <= uni <= 0xdbff and sys.maxunicode > 65535:
134 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
136 char = unichr(uni)
/prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
H A Dclover-3.1.12.jarMETA-INF/ META-INF/MANIFEST.MF license/ com/ com/atlassian/ com/atlassian/clover/ com/atlassian/clover/ ...

Completed in 649 milliseconds

12