Home
last modified time | relevance | path

Searched refs:isdecimal (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Tools/pybench/
DUnicode.py398 s.isdecimal()
408 s.isdecimal()
418 s.isdecimal()
428 s.isdecimal()
438 s.isdecimal()
/external/tensorflow/tensorflow/python/framework/
Dload_library.py114 return filename[index + 4].isdecimal()
/external/vulkan-validation-layers/scripts/
Dvk_validation_stats.py219 if (vuid_string[-5:-1].isdecimal()):
287 if (vuid[-5:-1].isdecimal()):
357 if (vuid_str[-5:-1].isdecimal()):
/external/python/cpython2/Lib/
DUserString.py93 def isdecimal(self): return self.data.isdecimal() member in UserString
/external/python/cpython2/Lib/test/
Dtest_unicodedata.py33 u"01"[char.isdecimal()],
44 u"01"[(char + u'123').isdecimal()],
Dtest_bool.py232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False)
Dtest_unicode.py398 self.assertFalse(ch.isdecimal(), '{!r} is not decimal.'.format(ch))
400 self.assertTrue(ch.isdecimal(), '{!r} is decimal.'.format(ch))
/external/python/cpython3/Lib/test/
Dtest_unicodedata.py31 "01"[char.isdecimal()],
42 "01"[(char + '123').isdecimal()],
Dtest_bool.py216 self.assertIs("0123".isdecimal(), True)
217 self.assertIs("xyz".isdecimal(), False)
Dtest_unicode.py673 self.assertFalse(ch.isdecimal(), '{!a} is not decimal.'.format(ch))
675 self.assertTrue(ch.isdecimal(), '{!a} is decimal.'.format(ch))
/external/python/cpython3/Lib/collections/
D__init__.py1412 def isdecimal(self): member in UserString
1413 return self.data.isdecimal()
/external/python/cpython2/Doc/howto/
Dpyporting.rst228 isdecimal
/external/python/cpython3/Doc/howto/
Dpyporting.rst234 isdecimal
/external/python/cpython3/Doc/library/
Dstdtypes.rst1674 of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
1696 .. method:: str.isdecimal()
/external/python/cpython2/Doc/library/
Dstdtypes.rst1409 .. method:: unicode.isdecimal()