Home
last modified time | relevance | path

Searched refs:isnumeric (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DUnicode.py401 s.isnumeric()
411 s.isnumeric()
421 s.isnumeric()
431 s.isnumeric()
441 s.isnumeric()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dmhlib.py194 if subname[0] == ',' or isnumeric(subname): continue
218 if protect and isnumeric(protect):
239 def isnumeric(str): function
368 if not isnumeric(tail):
423 if isnumeric(seq):
432 if isnumeric(seq):
DUserString.py96 def isnumeric(self): return self.data.isnumeric() member in UserString
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_unicodedata.py36 u"01"[char.isnumeric()],
47 u"01"[(char + u'123').isnumeric()],
Dtest_bool.py239 self.assertIs(unicode("0123", 'ascii').isnumeric(), True)
240 self.assertIs(unicode("xyz", 'ascii').isnumeric(), False)
Dtest_unicode.py324 self.assertRaises(TypeError, u"abc".isnumeric, 42)