/third_party/icu/icu4c/source/test/iotest/ |
H A D | stream.cpp | 57 UnicodeString str2 = UNICODE_STRING_SIMPLE(" <<"); in TestStream() local 97 outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << UTF8_NEW_LINE << str4 << ends; in TestStream()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | system-jit-metadata-win.h | 78 const str_bytes<size2>& str2) { in JoinBytes() 81 return str_bytes<size1 + size2>{str1, idx1, str2, idx2}; in JoinBytes() 77 JoinBytes(const str_bytes<size1>& str1, const str_bytes<size2>& str2) JoinBytes() argument
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil.c | 1553 char *str2 = NULL; in __cil_level_strlen() local 1569 str2 = cat->datum.fqn; in __cil_level_strlen() 1574 str_len += strlen(str1) + strlen(str2) + strlen(cat->datum.fqn) + 2; in __cil_level_strlen() 1576 str_len += strlen(str1) + strlen(str2) + strlen(cat->datum.fqn) + 2; in __cil_level_strlen() 1589 str_len += strlen(str1) + strlen(str2) + 1; in __cil_level_strlen() 1591 str_len += strlen(str1) + strlen(str2) + 1; in __cil_level_strlen() 1606 char *str2 = NULL; in __cil_level_to_string() local 1625 str2 = cat->datum.fqn; in __cil_level_to_string() 1631 buf_pos = sprintf(str_tmp, "%s,%s,%s", str1, str2, cat->datum.fqn); in __cil_level_to_string() 1634 buf_pos = sprintf(str_tmp, "%s.%s,%s",str1, str2, ca in __cil_level_to_string() [all...] |
/kernel/linux/linux-5.10/drivers/target/iscsi/ |
H A D | iscsi_target_configfs.c | 161 char *str, *str2, *ip_str, *port_str; in lio_target_call_addnptotpg() local 176 str2 = strstr(str, "]"); in lio_target_call_addnptotpg() 177 if (!str2) { in lio_target_call_addnptotpg() 184 *str2 = '\0'; /* Terminate the unbracketed IPv6 address */ in lio_target_call_addnptotpg() 185 str2++; /* Skip over the \0 */ in lio_target_call_addnptotpg() 187 port_str = strstr(str2, ":"); in lio_target_call_addnptotpg()
|
/kernel/linux/linux-6.6/drivers/target/iscsi/ |
H A D | iscsi_target_configfs.c | 161 char *str, *str2, *ip_str, *port_str; in lio_target_call_addnptotpg() local 175 str2 = strstr(str, "]"); in lio_target_call_addnptotpg() 176 if (!str2) { in lio_target_call_addnptotpg() 183 *str2 = '\0'; /* Terminate the unbracketed IPv6 address */ in lio_target_call_addnptotpg() 184 str2++; /* Skip over the \0 */ in lio_target_call_addnptotpg() 186 port_str = strstr(str2, ":"); in lio_target_call_addnptotpg()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | regcoll.cpp | 1195 UChar str2[maxLength]; in caseFirstCompressionSub() local 1202 str1[i] = str2[i] = (UChar)0x61; // 'a' in caseFirstCompressionSub() 1205 str2[i] = (UChar)0x61; // 'a' in caseFirstCompressionSub() 1209 col->getCollationKey(str2, len, key2, status); in caseFirstCompressionSub() 1212 UCollationResult cmpCol = col->compare(str1, len, str2, len, status); in caseFirstCompressionSub() 1218 + "): str1=" + UnicodeString(str1, len) + ", str2=" + UnicodeString(str2, len) in caseFirstCompressionSub()
|
H A D | tchcfmt.cpp | 568 double v2, const char* str2, in _testPattern() 590 const char* str[] = {str1, str2, str3}; in _testPattern() 565 _testPattern(const char* pattern, UBool isValid, double v1, const char* str1, double v2, const char* str2, double v3, const char* str3) _testPattern() argument
|
/third_party/cJSON/tests/ |
H A D | misc_tests.c | 623 char *str2 = NULL; in cjson_delete_item_from_array_should_not_broken_list_structure() local 638 str2 = cJSON_PrintUnformatted(root); in cjson_delete_item_from_array_should_not_broken_list_structure() 639 TEST_ASSERT_EQUAL_STRING(expected_json2, str2); in cjson_delete_item_from_array_should_not_broken_list_structure() 640 free(str2); in cjson_delete_item_from_array_should_not_broken_list_structure()
|
/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/include/ |
H A D | hal_com.h | 148 bool eqNByte(u8 *str1, u8 *str2, u32 num);
|
/third_party/ffmpeg/libavformat/ |
H A D | rtmppkt.h | 229 * @param str2 second string to write, may be null 231 void ff_amf_write_string2(uint8_t **dst, const char *str1, const char *str2);
|
/third_party/jerryscript/jerry-core/api/ |
H A D | generate-bytecode.c | 49 char* splice_path(char* str1, char* str2) { in splice_path() argument 51 int len2 = strlen(str2); in splice_path() 52 int res_len = len1 + len2 + 1; // str1 + "/" + str2 in splice_path() 69 || (strcat_s(res, res_len + 1, str2) != 0)) { in splice_path()
|
/third_party/toybox/kconfig/ |
H A D | expr.c | 946 const char *str1, *str2; in expr_calc_value() local 970 str2 = sym_get_string_value(e->right.sym); in expr_calc_value() 971 return !strcmp(str1, str2) ? yes : no; in expr_calc_value() 976 str2 = sym_get_string_value(e->right.sym); in expr_calc_value() 977 return !strcmp(str1, str2) ? no : yes; in expr_calc_value()
|
/third_party/python/Programs/ |
H A D | _testembed.c | 1903 PyObject *str1, *str2; in test_unicode_id_init() local 1909 str2 = PyUnicode_FromString("test_unicode_id_init"); in test_unicode_id_init() 1910 assert(str2 != NULL); in test_unicode_id_init() 1912 assert(PyUnicode_Compare(str1, str2) == 0); in test_unicode_id_init() 1915 Py_DECREF(str2); in test_unicode_id_init()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ulistfmttest.c | 41 static const UChar str2[] = { 0x43,0x63,0x63,0 }; /* "Ccc" */ variable 44 static const UChar* strings[] = { str0, str1, str2, str3, str4 };
|
H A D | capitst.c | 987 UChar str2[] = { 0x0B70, 0 }; in TestBengaliSortKey() local 1020 sortKeyLen2 = ucol_getSortKey(c2, str2, -1, NULL, 0); in TestBengaliSortKey() 1022 ucol_getSortKey(c2,str2,-1,sortKey2, sortKeyLen2+1); in TestBengaliSortKey() 1028 result=ucol_strcoll(c2, str1, -1, str2, -1); in TestBengaliSortKey() 1030 log_err("Error: %s was not less than %s: result=%d.\n", aescstrdup(str1,-1), aescstrdup(str2,-1), result); in TestBengaliSortKey() 1032 log_info("[%s] -> %s (%d, from rule)\n", aescstrdup(str2,-1), sortKeyStr2, sortKeyLen2); in TestBengaliSortKey() 1034 log_verbose("OK: %s was less than %s: result=%d.\n", aescstrdup(str1,-1), aescstrdup(str2,-1), result); in TestBengaliSortKey() 1036 log_verbose("[%s] -> %s (%d, from rule)\n", aescstrdup(str2,-1), sortKeyStr2, sortKeyLen2); in TestBengaliSortKey()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast-value-factory.cc | 364 const AstRawString* str2) { in NewConsString() 367 ->AddString(single_parse_zone(), str2); in NewConsString() 363 NewConsString(const AstRawString* str1, const AstRawString* str2) NewConsString() argument
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | annotate.c | 3165 static unsigned int parse_percent_type(char *str1, char *str2) in parse_percent_type() argument 3170 if (!strcmp("local", str2)) in parse_percent_type() 3172 else if (!strcmp("global", str2)) in parse_percent_type() 3177 if (!strcmp("local", str2)) in parse_percent_type() 3179 else if (!strcmp("global", str2)) in parse_percent_type() 3191 char *str1, *str2; in annotate_parse_percent_type() local 3198 str2 = strchr(str1, '-'); in annotate_parse_percent_type() 3199 if (!str2) in annotate_parse_percent_type() 3202 *str2++ = 0; in annotate_parse_percent_type() 3204 type = parse_percent_type(str1, str2); in annotate_parse_percent_type() [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | annotate.c | 3364 static unsigned int parse_percent_type(char *str1, char *str2) in parse_percent_type() argument 3369 if (!strcmp("local", str2)) in parse_percent_type() 3371 else if (!strcmp("global", str2)) in parse_percent_type() 3376 if (!strcmp("local", str2)) in parse_percent_type() 3378 else if (!strcmp("global", str2)) in parse_percent_type() 3390 char *str1, *str2; in annotate_parse_percent_type() local 3397 str2 = strchr(str1, '-'); in annotate_parse_percent_type() 3398 if (!str2) in annotate_parse_percent_type() 3401 *str2++ = 0; in annotate_parse_percent_type() 3403 type = parse_percent_type(str1, str2); in annotate_parse_percent_type() [all...] |
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | ahci_imx.c | 333 u32 str1, str2, str3, str4; in sata_ahci_read_temperature() local 367 str2 = (rtune_ctl_reg) & 0x3; in sata_ahci_read_temperature() 397 rtune_ctl_reg = (rtune_ctl_reg & 0xFFC) | (str2); in sata_ahci_read_temperature()
|
/third_party/libabigail/include/ |
H A D | abg-diff-utils.h | 1252 compute_middle_snake(const char* str1, const char* str2, 1419 const char* str2, 2010 compute_lcs(const char* str1, const char* str2, int &ses_len, string& lcs); 2013 compute_ses(const char* str1, const char* str2, edit_script& ses);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
H A D | RBBIAPITest.java | 136 String str2 = "Second string."; in TestGetSetText() 141 //CharacterIterator text2 = new StringCharacterIterator(str2); in TestGetSetText() 149 wordIter1.setText(str2); in TestGetSetText()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | RBBIAPITest.java | 133 String str2 = "Second string."; in TestGetSetText() 138 //CharacterIterator text2 = new StringCharacterIterator(str2); in TestGetSetText() 146 wordIter1.setText(str2); in TestGetSetText()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
H A D | ChineseTest.java | 662 String str2 = fmt2.format(time2); in TestCoverage() 663 logln("Chinese calendar time: " + time2 + " result: " + str2); in TestCoverage()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
H A D | ChineseTest.java | 665 String str2 = fmt2.format(time2); in TestCoverage() 666 logln("Chinese calendar time: " + time2 + " result: " + str2); in TestCoverage()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-strings.cc | 165 Handle<String> str2 = args.at<String>(1); in RUNTIME_FUNCTION() local 168 isolate->factory()->NewConsString(str1, str2)); in RUNTIME_FUNCTION()
|