Searched refs:isnumeric (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython2/Tools/pybench/ |
D | Unicode.py | 401 s.isnumeric() 411 s.isnumeric() 421 s.isnumeric() 431 s.isnumeric() 441 s.isnumeric()
|
/external/mesa3d/.gitlab-ci/tracie/ |
D | dump_trace_images.py | 56 if len(s) >= 1 and s[0].isnumeric(): 66 if len(c) >= 2 and c[1].isnumeric():
|
/external/python/cpython2/Lib/ |
D | mhlib.py | 194 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):
|
D | UserString.py | 96 def isnumeric(self): return self.data.isnumeric() member in UserString
|
/external/python/cpython2/Lib/test/ |
D | test_unicodedata.py | 36 u"01"[char.isnumeric()], 47 u"01"[(char + u'123').isnumeric()],
|
D | test_bool.py | 238 self.assertIs(unicode("0123", 'ascii').isnumeric(), True) 239 self.assertIs(unicode("xyz", 'ascii').isnumeric(), False)
|
D | test_unicode.py | 426 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/ |
D | gen_restricted_traces.py | 244 assert context.isnumeric(), "Failed to find trace context number"
|
/external/python/cpython3/Lib/test/ |
D | test_unicodedata.py | 34 "01"[char.isnumeric()], 45 "01"[(char + '123').isnumeric()],
|
D | test_bool.py | 218 self.assertIs("0123".isnumeric(), True) 219 self.assertIs("xyz".isnumeric(), False)
|
D | test_unicode.py | 699 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))
|
D | test_zlib.py | 776 elif not v[-1].isnumeric():
|
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants.py | 311 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__.py | 1424 def isnumeric(self): member in UserString 1425 return self.data.isnumeric()
|
/external/python/cpython2/Doc/howto/ |
D | pyporting.rst | 230 isnumeric
|
/external/python/cpython3/Doc/howto/ |
D | pyporting.rst | 236 isnumeric
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 1675 ``c.isdigit()``, or ``c.isnumeric()``. 1741 .. method:: str.isnumeric()
|
/external/python/cpython2/Doc/library/ |
D | stdtypes.rst | 1402 .. method:: unicode.isnumeric()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 594 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17978 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to
|