HomeSort by relevance Sort by last modified time
    Searched refs:unicodedata (Results 26 - 50 of 74) sorted by null

12 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringprep.py 8 from unicodedata import ucd_3_2_0 as unicodedata
10 assert unicodedata.unidata_version == '3.2.0'
13 if unicodedata.category(code) != 'Cn': return False
197 b = unicodedata.normalize("NFKC", al)
199 c = unicodedata.normalize("NFKC", bl)
211 return unicodedata.category(code) == "Zs" and code != u" "
214 return unicodedata.category(code) == "Zs"
218 return ord(code) < 128 and unicodedata.category(code) == "Cc"
224 if unicodedata.category(code) == "Cc": return Tru
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringprep.py 8 from unicodedata import ucd_3_2_0 as unicodedata
10 assert unicodedata.unidata_version == '3.2.0'
13 if unicodedata.category(code) != 'Cn': return False
197 b = unicodedata.normalize("NFKC", al)
199 c = unicodedata.normalize("NFKC", bl)
211 return unicodedata.category(code) == "Zs" and code != u" "
214 return unicodedata.category(code) == "Zs"
218 return ord(code) < 128 and unicodedata.category(code) == "Cc"
224 if unicodedata.category(code) == "Cc": return Tru
    [all...]
  /external/markdown/markdown/extensions/
toc.py 125 import unicodedata
126 value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /external/python/cpython2/Lib/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 4 from unicodedata import ucd_3_2_0 as unicodedata
25 label = unicodedata.normalize("NFKC", label)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a"))
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
test_inspect.py 20 import unicodedata
374 not hasattr(unicodedata, '__file__') or
375 unicodedata.__file__[-4:] in (".pyc", ".pyo"),
376 "unicodedata is not an external binary module")
378 self.assertRaises(IOError, inspect.getsource, unicodedata)
379 self.assertRaises(IOError, inspect.findsource, unicodedata)
  /external/python/cpython2/Lib/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a")
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
test_inspect.py 21 import unicodedata
23 unicodedata = None variable
409 not hasattr(unicodedata, '__file__') or
410 unicodedata.__file__[-4:] in (".pyc", ".pyo"),
411 "unicodedata is not an external binary module")
413 self.assertRaises(IOError, inspect.getsource, unicodedata)
414 self.assertRaises(IOError, inspect.findsource, unicodedata)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a")
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a")
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a")
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 1 """ Test script for the unicodedata module.
71 # In case unicodedata is not available, this will raise an ImportError,
73 import unicodedata
74 self.db = unicodedata
224 # Decoding \N escapes requires the unicodedata module. If it can't be
229 "sys.modules['unicodedata'] = None;" \
232 # We use a subprocess because the unicodedata module may already have
238 "(can't load unicodedata module)"
271 import unicodedata
273 self.assertTrue(unicodedata.mirrored(u"\u0f3a")
    [all...]
test_normalization.py 7 from unicodedata import normalize, unidata_version
  /external/python/cpython2/RISCOS/
Makefile 89 @.^.Lib.unicodedata/pyd\
319 @.^.Lib.unicodedata/pyd: @.^.Modules.o.unicodedata s.linktab
320 $(MAKEDLK) -d @.^.Lib.unicodedata/pyd -s s.linktab -o @.^.Modules.o.unicodedata -e initunicodedata

Completed in 546 milliseconds

12 3