Searched refs:isnumeric (Results 1 – 22 of 22) 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/python/bumble/bumble/transport/ |
D | serial.py | 57 elif part.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/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/tensorflow/tensorflow/python/distribute/coordinator/ |
D | watchdog.py | 30 "").isnumeric():
|
/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/python/cpython3/Lib/test/ |
D | test_unicodedata.py | 35 "01"[char.isnumeric()], 46 "01"[(char + '123').isnumeric()],
|
D | test_bool.py | 209 self.assertIs("0123".isnumeric(), True) 210 self.assertIs("xyz".isnumeric(), False)
|
D | test_unicode.py | 726 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))
|
D | test_zlib.py | 784 elif not v[-1].isnumeric():
|
/external/cronet/buildtools/third_party/libc++/trunk/utils/ |
D | generate_feature_test_macro_components.py | 1071 assert not get_std_number(std_dialects[-1]).isnumeric()
|
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants.py | 325 if len(name_elts) > 1 and name_elts[-1].isnumeric(): 692 if len(elements) == 2 and elements[1].isnumeric():
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 1472 def isnumeric(self): member in UserString 1473 return self.data.isnumeric()
|
/external/python/cpython3/Doc/howto/ |
D | pyporting.rst | 236 isnumeric
|
/external/python/cpython2/Doc/howto/ |
D | pyporting.rst | 230 isnumeric
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 1709 ``c.isdigit()``, or ``c.isnumeric()``. 1775 .. 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
|