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.py121 return filename[index + 4].isdecimal()
/external/python/cpython3/Lib/test/
Dtest_unicodedata.py33 "01"[char.isdecimal()],
44 "01"[(char + '123').isdecimal()],
Dtest_bool.py218 self.assertIs("0123".isdecimal(), True)
219 self.assertIs("xyz".isdecimal(), False)
Dtest_unicode.py660 self.assertFalse(ch.isdecimal(), '{!a} is not decimal.'.format(ch))
662 self.assertTrue(ch.isdecimal(), '{!a} is decimal.'.format(ch))
/external/vulkan-validation-layers/scripts/
Dvk_validation_stats.py221 if (vuid_string[-5:-1].isdecimal()):
305 if (vuid[-5:-1].isdecimal()):
375 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/collections/
D__init__.py1231 def isdecimal(self): return self.data.isdecimal() member in UserString
/external/python/cpython2/Doc/howto/
Dpyporting.rst228 isdecimal
/external/python/cpython3/Doc/howto/
Dpyporting.rst228 isdecimal
/external/python/cpython3/Doc/library/
Dstdtypes.rst1654 of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
1676 .. method:: str.isdecimal()
/external/python/cpython2/Doc/library/
Dstdtypes.rst1409 .. method:: unicode.isdecimal()