Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
Dgen_restricted_traces.py302 assert context.isnumeric(), 'Trace context number is not numeric: %s' % context
310 assert context.isnumeric(), 'Trace context number is not numeric: %s' % context
/third_party/python/Lib/test/
Dtest_unicodedata.py35 "01"[char.isnumeric()],
46 "01"[(char + '123').isnumeric()],
Dtest_bool.py209 self.assertIs("0123".isnumeric(), True)
210 self.assertIs("xyz".isnumeric(), False)
Dtest_unicode.py726 self.assertRaises(TypeError, "abc".isnumeric, 42)
730 self.assertFalse(ch.isnumeric(), '{!a} is not numeric.'.format(ch))
733 self.assertTrue(ch.isnumeric(), '{!a} is numeric.'.format(ch))
Dtest_zlib.py784 elif not v[-1].isnumeric():
/third_party/python/Lib/collections/
D__init__.py1468 def isnumeric(self): member in UserString
1469 return self.data.isnumeric()
/third_party/python/Doc/howto/
Dpyporting.rst236 isnumeric
/third_party/python/Doc/library/
Dstdtypes.rst1716 ``c.isdigit()``, or ``c.isnumeric()``.
1782 .. method:: str.isnumeric()
/third_party/python/Misc/
DHISTORY17978 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to