/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | compat.h | 72 extern char *strsep(char **stringp, const char *delim);
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_util.h | 89 * @param delim delimiter. 92 static std::vector<std::string> StringSplit(const std::string &in, const std::string &delim);
|
/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/include/ |
H A D | dialog_session_info.h | 44 void Split(const std::string &str, const std::string &delim, std::vector<std::string> &vec);
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deStringUtil.hpp | 48 std::vector<std::string> splitString (const std::string& s, char delim='\0');
|
/third_party/python/Lib/tomllib/ |
H A D | _parser.py | 527 delim = "'" 538 delim = '"' 543 if not src.startswith(delim, pos): 546 if not src.startswith(delim, pos): 547 return pos, result + delim 549 return pos, result + (delim * 2)
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | common.c | 1076 * @delim: a string of delimiters 1089 const char * cstr_token(const char *str, const char *delim, const char **last) in cstr_token() argument 1093 if (!str || !delim || !last) in cstr_token() 1099 while (*token && os_strchr(delim, *token)) in cstr_token() 1107 while (*end && !os_strchr(delim, *end)) in cstr_token() 1118 * @delim: String of delimiters 1123 char * str_token(char *str, const char *delim, char **context) in str_token() argument 1125 char *token = (char *) cstr_token(str, delim, (const char **) context); in str_token()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | punyref.cpp | 57 /* delim(cp) tests whether cp is a delimiter: */ 58 #define delim(cp) ((cp) == delimiter) macro 238 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j; in punycode_decode()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
H A D | GPUAdapter.cpp | 25 std::vector<std::string> Split(const std::string& s, char delim) { in Split() argument 35 if (s[i] == delim) { in Split()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Timer.h | 224 const char *printJSONValues(raw_ostream &OS, const char *delim); 227 static const char *printAllJSONValues(raw_ostream &OS, const char *delim);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Timer.h | 223 const char *printJSONValues(raw_ostream &OS, const char *delim); 224 static const char *printAllJSONValues(raw_ostream &OS, const char *delim);
|
/third_party/python/Lib/ |
H A D | optparse.py | 234 def set_short_opt_delimiter(self, delim): 235 if delim not in ("", " "): 237 "invalid metavar delimiter for short options: %r" % delim) 238 self._short_opt_fmt = "%s" + delim + "%s" 240 def set_long_opt_delimiter(self, delim): 241 if delim not in ("=", " "): 243 "invalid metavar delimiter for long options: %r" % delim) 244 self._long_opt_fmt = "%s" + delim + "%s"
|
/third_party/selinux/checkpolicy/ |
H A D | module_compiler.c | 220 char *bounds_id, *delim; in role_implicit_bounds() local 222 delim = strrchr(role_id, '.'); in role_implicit_bounds() 223 if (!delim) in role_implicit_bounds() 231 bounds_id[(size_t)(delim - role_id)] = '\0'; in role_implicit_bounds() 465 char *bounds_id, *delim; in user_implicit_bounds() local 467 delim = strrchr(user_id, '.'); in user_implicit_bounds() 468 if (!delim) in user_implicit_bounds() 476 bounds_id[(size_t)(delim - user_id)] = '\0'; in user_implicit_bounds()
|
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_output.c | 65 trace_print_flags_seq(struct trace_seq *p, const char *delim, in trace_print_flags_seq() argument 82 if (!first && delim) in trace_print_flags_seq() 83 trace_seq_puts(p, delim); in trace_print_flags_seq() 91 if (!first && delim) in trace_print_flags_seq() 92 trace_seq_puts(p, delim); in trace_print_flags_seq() 129 trace_print_flags_seq_u64(struct trace_seq *p, const char *delim, in trace_print_flags_seq_u64() argument 146 if (!first && delim) in trace_print_flags_seq_u64() 147 trace_seq_puts(p, delim); in trace_print_flags_seq_u64() 155 if (!first && delim) in trace_print_flags_seq_u64() 156 trace_seq_puts(p, delim); in trace_print_flags_seq_u64() 1073 trace_ctxwake_print(struct trace_iterator *iter, char *delim) trace_ctxwake_print() argument [all...] |
/kernel/linux/linux-6.6/net/ceph/ |
H A D | messenger.c | 1221 char delim, const char **ipend) in ceph_pton() 1225 if (in4_pton(str, len, (u8 *)&((struct sockaddr_in *)&addr->in_addr)->sin_addr.s_addr, delim, ipend)) { in ceph_pton() 1230 if (in6_pton(str, len, (u8 *)&((struct sockaddr_in6 *)&addr->in_addr)->sin6_addr.s6_addr, delim, ipend)) { in ceph_pton() 1243 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_dns_resolve_name() 1253 delim_p = memchr(name, delim, namelen); in ceph_dns_resolve_name() 1288 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_dns_resolve_name() 1299 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_parse_server_name() 1303 ret = ceph_pton(name, namelen, addr, delim, ipend); in ceph_parse_server_name() 1305 ret = ceph_dns_resolve_name(name, namelen, addr, delim, ipend); in ceph_parse_server_name() 1316 int max_count, int *count, char delim) in ceph_parse_ips() 1220 ceph_pton(const char *str, size_t len, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_pton() argument 1242 ceph_dns_resolve_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_dns_resolve_name() argument 1287 ceph_dns_resolve_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_dns_resolve_name() argument 1298 ceph_parse_server_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_parse_server_name() argument 1314 ceph_parse_ips(const char *c, const char *end, struct ceph_entity_addr *addr, int max_count, int *count, char delim) ceph_parse_ips() argument [all...] |
/foundation/resourceschedule/background_task_mgr/services/continuous_task/include/ |
H A D | task_notification_subscriber.h | 46 std::vector<std::string> StringSplit(const std::string &str, const char &delim);
|
/foundation/communication/nfc/services/src/card_emulation/ |
H A D | setting_data_share_impl.h | 41 void Split(const std::string &str, const std::string &delim, std::vector<std::string> &vec);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | string_utils.h | 30 static std::vector<std::string> Split(const std::string &str, const std::string &delim);
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | gdb-remote-util.h | 35 const char* delim);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | wpa_common.c | 2485 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim) in wpa_write_ciphers() argument 2492 pos == start ? "" : delim); in wpa_write_ciphers() 2499 pos == start ? "" : delim); in wpa_write_ciphers() 2506 pos == start ? "" : delim); in wpa_write_ciphers() 2513 pos == start ? "" : delim); in wpa_write_ciphers() 2520 pos == start ? "" : delim); in wpa_write_ciphers() 2527 pos == start ? "" : delim); in wpa_write_ciphers() 2534 pos == start ? "" : delim); in wpa_write_ciphers() 2541 pos == start ? "" : delim); in wpa_write_ciphers() 2548 pos == start ? "" : delim); in wpa_write_ciphers() [all...] |
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/Util/src/util/ |
H A D | io_util.cpp | 56 if (const auto delim = version.find('.'); delim != string::npos) { in CheckCompatibility() 57 std::from_chars(version.data(), version.data() + delim, versionMajor); in CheckCompatibility() 58 const size_t minorStart = delim + 1; in CheckCompatibility()
|
/third_party/rust/crates/syn/src/ |
H A D | token.rs | 489 ($($delim:ident pub struct $name:ident #[$doc:meta])*) => { 556 printing::delim(Delimiter::$delim, self.span.join(), tokens, inner); in surround() 685 printing::delim(Delimiter::None, self.span, tokens, inner); in surround() 1128 pub(crate) fn delim( 1129 delim: Delimiter, 1134 let mut g = Group::new(delim, inner);
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_conntrack_expect.c | 611 char *delim = ""; in exp_seq_show() local 628 delim = ","; in exp_seq_show() 631 seq_printf(s, "%sINACTIVE", delim); in exp_seq_show() 632 delim = ","; in exp_seq_show() 635 seq_printf(s, "%sUSERSPACE", delim); in exp_seq_show()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conntrack_expect.c | 631 char *delim = ""; in exp_seq_show() local 648 delim = ","; in exp_seq_show() 651 seq_printf(s, "%sINACTIVE", delim); in exp_seq_show() 652 delim = ","; in exp_seq_show() 655 seq_printf(s, "%sUSERSPACE", delim); in exp_seq_show()
|
/foundation/ability/ability_base/interfaces/kits/native/want/include/ |
H A D | element_name.h | 91 void Split(const std::string &str, const std::string &delim, std::vector<std::string> &vec);
|
/foundation/multimedia/player_framework/services/utils/include/ |
H A D | xml_parse.h | 47 const std::string &str, const std::string &delim, std::vector<std::string> &spilt) const final;
|