/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | string_istest.py | 9 print("".isdigit()) 10 print("0123456789".isdigit()) 11 print("0123456789a".isdigit()) 12 print("0123456789 ".isdigit())
|
/AliOS-Things-master/components/netmgr/netdev/src/ |
A D | netdev_ipaddr.c | 11 #define isdigit(c) in_range(c, '0', '9') macro 12 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 45 if (!isdigit(c)) in netdev_ip4addr_aton() 66 if (isdigit(c)) in netdev_ip4addr_aton()
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | sscanf.c | 110 while (isdigit(**s)) in skip_atoi() 136 while(isdigit(*str) && (*str)<'8'){ in judge_digit_width() 141 while(isdigit(*str)) { in judge_digit_width() 218 if(isdigit(*fmt)) { in _vsscanf() 363 || (base == 10 && !isdigit(digit)) in _vsscanf() 364 || (base == 8 && (!isdigit(digit) || digit > '7')) in _vsscanf() 365 || (base == 0 && !isdigit(digit))) { in _vsscanf()
|
A D | strproc.h | 21 #define isdigit(c) in_range(c, '0', '9') macro 22 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
|
A D | strtoul.c | 171 if (isdigit(c)) in _strtoul_r()
|
A D | strtol.c | 190 if (isdigit(c)) in _strtol_r()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/ |
A D | ip4_addr.c | 119 #define isdigit(c) in_range(c, '0', '9') macro 120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 170 if (!isdigit(c)) { in ip4addr_aton() 185 if (isdigit(c)) { in ip4addr_aton()
|
/AliOS-Things-master/components/linkkit/iot_coap/server/ |
A D | CoAPPlatform.c | 23 if (!isdigit(c)) in platform_aton() 38 if (isdigit(c)) { in platform_aton()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/ |
A D | ip6_addr.c | 56 #define isdigit(c) in_range(c, '0', '9') macro 57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 135 (isdigit(*s) ? *s - '0' : in ip6addr_aton()
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/ |
A D | stdlib_patch.c | 49 #define isdigit(c) in_range(c, '0', '9') macro 50 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 115 while(isdigit(*str)) { in judge_digit_width() 189 if(isdigit(*fmt)) { in _vsscanf_patch() 317 || (base == 10 && !isdigit(digit)) in _vsscanf_patch() 318 || (base == 8 && (!isdigit(digit) || digit > '7')) in _vsscanf_patch() 319 || (base == 0 && !isdigit(digit))) { in _vsscanf_patch()
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/ram_common/ |
A D | rtl8721d_ram_libc.c | 223 while(isdigit(*fmt1)){ in _rtl_sprintf() 262 while(isdigit(*fmt1)){ in _rtl_printf() 317 while(isdigit(*fmt1)){ in _rtl_sscanf()
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | rdswitch.c | 56 if (! isdigit(ch)) { in read_text_integer() 63 if (! isdigit(ch)) in read_text_integer() 143 if (isdigit(ch)) { /* oops, put it back */ in read_scan_integer()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/port/ |
A D | strtoul.c | 83 if (isdigit(c)) in strtoul()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testhaptic.c | 67 if ((i < 3) && isdigit(name[0]) && ((i == 1) || isdigit(name[1]))) { in main()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | at.c | 55 isdigit((unsigned char)at->buf[at->pos]); in at_get_number() 512 if (!isdigit((unsigned char)at->buf[at->pos])) { in at_list_get_range()
|
/AliOS-Things-master/components/linkkit/iot_coap/client/ |
A D | Cloud_CoAPExport.c | 103 while (len && isdigit(*q)) { in Cloud_CoAPUri_parse()
|
/AliOS-Things-master/components/cjson/src/ |
A D | cJPath.c | 272 if (isdigit(*wordbegin)) { in lex_process()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | utils.c | 183 while (isdigit(c)) { in ppp_vslprintf() 195 while (isdigit(c)) { in ppp_vslprintf()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | ppm2tiff.c | 326 if (isdigit((int)cp[1])) in processCompressOptions()
|
A D | pal2rgb.c | 245 if (isdigit((int)cp[1])) in processCompressOptions()
|
A D | tiff2bw.c | 316 if (isdigit((int)cp[1])) in processCompressOptions()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | run-test262.c | 222 if (isdigit(ca) && isdigit(cb)) { in namelist_cmp() 225 while (isdigit(ca = (unsigned char)*a++)) in namelist_cmp() 227 while (isdigit(cb = (unsigned char)*b++)) in namelist_cmp() 2019 if (optind < argc && !isdigit(argv[optind][0])) { in main()
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | haasboard.py | 260 elif device and device[0].isdigit() and device[-1].isdigit() and device.count(".") == 3:
|
A D | pyboard.py | 264 elif device and device[0].isdigit() and device[-1].isdigit() and device.count(".") == 3:
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | tarith.c | 337 if (c.check_state != exponent && isdigit(ch) && ch != '0') in check_one_character() 403 if (isdigit(ch)) in check_one_character()
|