Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/pybench/
DUnicode.py401 s.isnumeric()
411 s.isnumeric()
421 s.isnumeric()
431 s.isnumeric()
441 s.isnumeric()
/external/python/cpython2/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
/external/mesa3d/.gitlab-ci/tracie/
Ddump_trace_images.py56 if len(s) >= 1 and s[0].isnumeric():
66 if len(c) >= 2 and c[1].isnumeric():
/external/python/cpython2/Lib/test/
Dtest_unicodedata.py36 u"01"[char.isnumeric()],
47 u"01"[(char + u'123').isnumeric()],
Dtest_bool.py238 self.assertIs(unicode("0123", 'ascii').isnumeric(), True)
239 self.assertIs(unicode("xyz", 'ascii').isnumeric(), False)
Dtest_unicode.py426 self.assertRaises(TypeError, u"abc".isnumeric, 42)
432 self.assertFalse(ch.isnumeric(), '{!r} is not numeric.'.format(ch))
435 self.assertTrue(ch.isnumeric(), '{!r} is numeric.'.format(ch))
/external/angle/src/tests/restricted_traces/
Dgen_restricted_traces.py244 assert context.isnumeric(), "Failed to find trace context number"
/external/python/cpython3/Lib/test/
Dtest_unicodedata.py34 "01"[char.isnumeric()],
45 "01"[(char + '123').isnumeric()],
Dtest_bool.py218 self.assertIs("0123".isnumeric(), True)
219 self.assertIs("xyz".isnumeric(), False)
Dtest_unicode.py699 self.assertRaises(TypeError, "abc".isnumeric, 42)
703 self.assertFalse(ch.isnumeric(), '{!a} is not numeric.'.format(ch))
706 self.assertTrue(ch.isnumeric(), '{!a} is numeric.'.format(ch))
Dtest_zlib.py776 elif not v[-1].isnumeric():
/external/tensorflow/tensorflow/python/framework/
Dconvert_to_constants.py311 if len(name_elts) > 1 and name_elts[-1].isnumeric():
676 if len(elements) == 2 and elements[1].isnumeric():
/external/python/cpython3/Lib/collections/
D__init__.py1424 def isnumeric(self): member in UserString
1425 return self.data.isnumeric()
/external/python/cpython2/Doc/howto/
Dpyporting.rst230 isnumeric
/external/python/cpython3/Doc/howto/
Dpyporting.rst236 isnumeric
/external/python/cpython3/Doc/library/
Dstdtypes.rst1675 ``c.isdigit()``, or ``c.isnumeric()``.
1741 .. method:: str.isnumeric()
/external/python/cpython2/Doc/library/
Dstdtypes.rst1402 .. method:: unicode.isnumeric()
/external/python/cpython2/Misc/
DHISTORY594 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to
/external/python/cpython3/Misc/
DHISTORY17978 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to