/third_party/python/Lib/email/ |
H A D | message.py | 622 return ctype.split('/')[0] 631 return ctype.split('/')[1] 661 name, val = p.split('=', 1) 676 split on the `=' sign. The left hand side of the `=' is the key, 1007 maintype, subtype = part.get_content_type().split('/') 1068 maintype, subtype = self.get_content_type().split('/') 1105 maintype, subtype = part.get_content_type().split('/')
|
/applications/standard/contacts_data/ability/sinicization/src/ |
H A D | character_transliterate.cpp | 2088 std::wstring CharacterTransliterate::Join(std::vector<std::vector<std::wstring>> strVector, std::wstring split) in Join() argument 2096 str.append(split); in Join()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/ |
H A D | at_parse.c | 147 hi_u32 at_cmd_token_split(hi_char *cmd, hi_char split, at_cmd_attr *cmd_parsed) in at_cmd_token_split() argument 173 if ((*p == split) && (*(p - 1) != '\\')) { in at_cmd_token_split()
|
/foundation/ability/idl_tool/test/sa_test/ |
H A D | test_base.py | 132 result_lines = result.split("\n") 133 target_lines = target.split("\n")
|
/foundation/ability/idl_tool/test/hdi_unittest/base/ |
H A D | util.py | 192 result_lines = result.split("\n") 193 target_lines = target.split("\n")
|
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/ |
H A D | main.js | 139 let prNumber = originUrl.split("/")[originUrl.split("/").length - 1];
|
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/utils/ |
H A D | wifi_global_func.h | 84 * @Description Split string to vector accord split 87 * @param split - split string 90 void SplitString(const std::string &str, const std::string &split, std::vector<std::string> &vec); 192 * @param str - split string 193 * @param split - characters used for splitting 196 std::vector<int> SplitStringToIntVector(const std::string &str, const std::string &split);
|
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | cdomain.py | 175 arglist = [a.strip() for a in arglist.split(",")] 178 if len(arglist[0].split(" ")) > 1:
|
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | cdomain.py | 175 arglist = [a.strip() for a in arglist.split(",")] 178 if len(arglist[0].split(" ")) > 1:
|
/kernel/linux/linux-5.10/scripts/gdb/linux/ |
H A D | symbols.py | 112 module_addr = str(module['core_layout']['base']).split()[0] 167 self.module_paths = [os.path.expanduser(p) for p in arg.split()]
|
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | symbols.py | 116 module_addr = str(module['mem'][constants.LX_MOD_TEXT]['base']).split()[0] 172 for p in arg.split()]
|
/third_party/gn/examples/ios/build/toolchain/apple/ |
H A D | swiftc.py | 115 output, inputs = line.split(' : ', 2) 123 for path in inputs.split():
|
/third_party/cJSON/tests/unity/auto/ |
H A D | stylize_as_junit.rb | 98 test_file_str = test_file_str.split(':') 143 _src_file, src_line, test_name, status, msg = line.split(/:/)
|
/third_party/googletest/googletest/test/ |
H A D | googletest-output-test.py | 302 normalized_golden.split('\n'), 303 normalized_actual.split('\n'),
|
/third_party/PyYAML/tests/lib/ |
H A D | test_appliance.py | 46 include_functions.extend(os.environ['YAML_TEST_FUNCTIONS'].split()) 50 include_filenames.extend(os.environ['YAML_TEST_FILENAMES'].split())
|
H A D | test_input_output.py | 8 value = ' '.join(data.split()) 54 value = ' '.join(data.split())
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | TestUtil.java | 266 String[] numbers = verstr.split("\\."); in getJavaVersion() 271 String[] numbers = verstr.split("\\.|-"); in getJavaVersion()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestUtil.java | 267 String[] numbers = verstr.split("\\."); in getJavaVersion() 272 String[] numbers = verstr.split("\\.|-"); in getJavaVersion()
|
/third_party/mbedtls/tests/scripts/ |
H A D | generate_pkcs7_tests.py | 59 lines = [line.strip() for line in data.split('\n') if len(line.strip()) > 1] 68 latest_test_num = float(tests[-1].name.split('#')[1])
|
/third_party/jerryscript/tools/runners/ |
H A D | run-test-suite.py | 47 script_args.skip_list = script_args.skip_list.split(',') 51 script_args.skip_file = script_args.skip_file.split(',')
|
/third_party/node/lib/ |
H A D | punycode.js | 83 const parts = domain.split('@'); 91 // Avoid `split(regex)` for IE8 compatibility. See #17. 93 const labels = domain.split('.');
|
/third_party/node/test/pseudo-tty/ |
H A D | testcfg.py | 71 raw_lines = (output.stdout + output.stderr).split('\n') 104 result += flags_match.group(1).strip().split()
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | role.js | 165 const targetParts = target.split('/'); 166 const patternParts = pattern.split('/');
|
/third_party/node/deps/npm/node_modules/negotiator/lib/ |
H A D | mediaType.js | 254 var accepts = accept.split(','); 276 var parameters = str.split(';');
|
/third_party/libinput/tools/ |
H A D | libinput-analyze-recording.py | 102 ignored_axes = [libevdev.evbit(axis) for axis in args.ignore.split(",") if axis] 103 only_axes = [libevdev.evbit(axis) for axis in args.only.split(",") if axis]
|