Home
last modified time | relevance | path

Searched refs:isspace (Results 1 – 25 of 25) sorted by relevance

/AliOS-Things-master/components/py_engine/tests/basics/
A Dstring_istest.py1 print("".isspace())
2 print(" \t\n\r\v\f".isspace())
3 print("a".isspace())
4 print(" \t\n\r\v\fa".isspace())
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dsscanf.c100 while (isspace(*str)) in skip_spaces()
178 if(isspace(*fmt)) { in _vsscanf()
206 while(!isspace(*fmt) && *fmt != '%' && *fmt) in _vsscanf()
209 while(!isspace(*str) && *str) in _vsscanf()
292 while(*str && !isspace(*str) && field_width--) { in _vsscanf()
A Dstrtoul.c154 } while (isspace(c)); in _strtoul_r()
A Dstrtol.c154 } while (isspace(c)); in _strtol_r()
A Dstrproc.h24 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro
/AliOS-Things-master/components/netmgr/netdev/src/
A Dnetdev_ipaddr.c14 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro
104 if (c != '\0' && !isspace(c)) in netdev_ip4addr_aton()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/
A Dstdlib_patch.c52 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro
149 if(isspace(*fmt)) { in _vsscanf_patch()
177 while(!isspace(*fmt) && *fmt != '%' && *fmt) in _vsscanf_patch()
180 while(!isspace(*str) && *str) in _vsscanf_patch()
263 while(*str && !isspace(*str) && field_width--) { in _vsscanf_patch()
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/
A Dip4_addr.c122 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro
214 if (c != '\0' && !isspace(c)) { in ip4addr_aton()
/AliOS-Things-master/components/linkkit/iot_coap/server/
A DCoAPPlatform.c66 if (c != '\0' && !isspace(c)) in platform_aton()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/port/
A Dstrtoul.c62 } while (isspace(c)); in strtoul()
A Dstrtoull.c60 } while (isspace((unsigned char)c)); in strtoull()
/AliOS-Things-master/hardware/chip/haas1000/release/auto_build_tool/
A Dhaas1000_genbin.py81 if para_key[0:1].isspace() == False:
123 if is_list == True & para_key[:3].isspace() == True :
124 if para_val[0].isspace() == True:
/AliOS-Things-master/hardware/chip/rtl872xd/release/auto_build_tool/
A Dgenbin.py81 if para_key[0:1].isspace() == False:
123 if is_list == True & para_key[:3].isspace() == True :
124 if para_val[0].isspace() == True:
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Drdswitch.c54 } while (isspace(ch)); in read_text_integer()
141 while (ch != EOF && isspace(ch)) in read_scan_integer()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dunicode_gen.c132 while (isspace(*p)) in get_field_str()
304 while (isspace(*p)) in parse_unicode_data()
439 while (isspace(*p)) in parse_special_casing()
515 while (isspace(*p)) in parse_case_folding()
531 while (isspace(*p)) in parse_case_folding()
562 while (isspace(*p)) in parse_composition_exclusions()
590 while (isspace(*p)) in parse_derived_core_properties()
646 while (isspace(*p)) in parse_derived_norm_properties()
696 while (isspace(*p)) in parse_prop_list()
750 while (isspace(*p)) in parse_scripts()
[all …]
A Drun-test262.c157 while (len > 0 && isspace((unsigned char)p[len - 1])) in str_strip()
159 while (isspace((unsigned char)*p)) in str_strip()
847 return (c == '\0' || isspace((unsigned char)c) || c == ','); in is_word_sep()
1101 if (isspace(c)) { in skip_comments()
1629 while (isspace(*q)) in run_test()
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/
A Dip6_addr.c59 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro
/AliOS-Things-master/components/py_engine/engine/py/
A Dmakeqstrdefs.py83 if line.isspace():
/AliOS-Things-master/components/ble_host/script/Kconfiglib-10.21.0/
A Dkconfiglib.py1895 if s.isspace() or s.lstrip().startswith("#"):
2065 while i < len(s) and s[i].isspace():
2179 if s.isspace():
2255 while end_i < len(s) and s[end_i].isspace():
2872 if not line or not line.isspace():
2901 while line and (line.isspace() or indentation(line) >= indent):
/AliOS-Things-master/components/ble_mesh/script/Kconfiglib-10.21.0/
A Dkconfiglib.py1895 if s.isspace() or s.lstrip().startswith("#"):
2065 while i < len(s) and s[i].isspace():
2179 if s.isspace():
2255 while end_i < len(s) and s[end_i].isspace():
2872 if not line or not line.isspace():
2901 while line and (line.isspace() or indentation(line) >= indent):
/AliOS-Things-master/components/oss/src/utils/
A DUtils.cc551 ….begin(), std::find_if(copy.begin(), copy.end(), [](unsigned char ch) { return !::isspace(ch); })); in LeftTrim()
558 …copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](unsigned char ch) { return !::isspace(ch); … in RightTrim()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_stdlib.c464 int SDL_isspace(int x) { return isspace(x); } in SDL_isspace()
/AliOS-Things-master/components/oss/src/external/tinyxml2/
A Dtinyxml2.h576 return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) ); in IsWhiteSpace()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dpngfix.c924 else if (isspace(UCHAR_MAX & *str)) in emit_string()
/AliOS-Things-master/components/py_engine/engine/tools/
A Duncrustify.cfg3014 # See https://en.cppreference.com/w/cpp/string/byte/isspace

Completed in 71 milliseconds