/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 172 IMGUI_API int ImStricmp(const char* str1, const char* str2); 173 IMGUI_API int ImStrnicmp(const char* str1, const char* str2, size_t count);
|
H A D | imgui.cpp | 1281 int ImStricmp(const char* str1, const char* str2) 1284 while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } 1288 int ImStrnicmp(const char* str1, const char* str2, size_t count) 1291 while (count > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; count--; }
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | string_view_test.cc | 126 const mstring str2("SLEEPING!"); in TEST() 131 absl::string_view s2(str2); in TEST()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | speed.c | 107 static void pkey_print_message(const char *str, const char *str2, 3390 static void pkey_print_message(const char *str, const char *str2, long num, in pkey_print_message() argument 3395 : "Doing %u bits %s %s's for %ds: ", bits, str, str2, tm); in pkey_print_message()
|
/third_party/openssl/apps/ |
H A D | speed.c | 107 static void pkey_print_message(const char *str, const char *str2, 3366 static void pkey_print_message(const char *str, const char *str2, long num, in pkey_print_message() argument 3371 : "Doing %u bits %s %s's for %ds: ", bits, str, str2, tm); in pkey_print_message()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | checkpatch.pl | 682 my ($str1, $str2) = @_; 684 $str2 = lc($str2); 686 $str2 =~ s/-//g; 688 my $len2 = length($str2); 697 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | NumberFormatTest.java | 2029 String str2 = tasks[i-2].result(); in TestThreadedFormat() 2030 if (!str1.equals(str2)) { in TestThreadedFormat() 2033 System.out.println(str2); in TestThreadedFormat() 2038 str1 = str2; in TestThreadedFormat() 5330 String str2 = fmt.format(new CurrencyAmount(123.45, Currency.getInstance("EUR"))); in Test10997() 5332 assertEquals("minFrac 4 should be respected in different currency", "€123.4500", str2); in Test10997()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | NumberFormatTest.java | 2026 String str2 = tasks[i-2].result(); in TestThreadedFormat() 2027 if (!str1.equals(str2)) { in TestThreadedFormat() 2030 System.out.println(str2); in TestThreadedFormat() 2035 str1 = str2; in TestThreadedFormat() 5330 String str2 = fmt.format(new CurrencyAmount(123.45, Currency.getInstance("EUR"))); in Test10997() 5332 assertEquals("minFrac 4 should be respected in different currency", "€123.4500", str2); in Test10997()
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 636 my ($str1, $str2) = @_; 638 $str2 = lc($str2); 640 $str2 =~ s/-//g; 642 my $len2 = length($str2); 651 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {
|
/third_party/elfutils/libcpu/ |
H A D | i386_data.h | 63 unsigned int str2 : STR2_BITS; member
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | tzregts.cpp | 131 UnicodeString str, str2; in Test4073215() local 194 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE")); in Test4073215() 198 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE")); in Test4073215() 202 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE")); in Test4073215()
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
H A D | btf.c | 1386 const char *str2 = btf->strs_data + (long)key2; in strs_hash_equal_fn() local 1388 return strcmp(str1, str2) == 0; in strs_hash_equal_fn()
|
/third_party/cJSON/tests/unity/test/tests/ |
H A D | testunity.c | 1809 const char str2[] = { 0x41, 0x42, 0x04, 0x00 }; in testNotEqualString5() local 1811 TEST_ASSERT_EQUAL_STRING(str1, str2); in testNotEqualString5()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_internal.h | 308 IMGUI_API int ImStricmp(const char* str1, const char* str2); 309 IMGUI_API int ImStrnicmp(const char* str1, const char* str2, size_t count);
|
H A D | imgui.cpp | 1333 int ImStricmp(const char* str1, const char* str2) 1336 while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } 1340 int ImStrnicmp(const char* str1, const char* str2, size_t count) 1343 while (count > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; count--; }
|
/third_party/googletest/googletest/test/ |
H A D | gtest_unittest.cc | 4775 static const ::std::string str2(str1); in TEST() 4776 EXPECT_EQ(str1, str2); in TEST()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumber.cpp | 7704 /* str2 is the other; it must be the same length as str1 */ 7707 /* length as str1 and str2, and each character of targ is in either */ 7708 /* str1 or str2 in the corresponding position), or 0 otherwise */ 7714 static Flag decBiStr(const char *targ, const char *str1, const char *str2) { argument 7715 for (;;targ++, str1++, str2++) { 7716 if (*targ!=*str1 && *targ!=*str2) return 0;
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumber.cpp | 7704 /* str2 is the other; it must be the same length as str1 */ 7707 /* length as str1 and str2, and each character of targ is in either */ 7708 /* str1 or str2 in the corresponding position), or 0 otherwise */ 7714 static Flag decBiStr(const char *targ, const char *str1, const char *str2) { argument 7715 for (;;targ++, str1++, str2++) { 7716 if (*targ!=*str1 && *targ!=*str2) return 0;
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumber.cpp | 7704 /* str2 is the other; it must be the same length as str1 */ 7707 /* length as str1 and str2, and each character of targ is in either */ 7708 /* str1 or str2 in the corresponding position), or 0 otherwise */ 7714 static Flag decBiStr(const char *targ, const char *str1, const char *str2) { argument 7715 for (;;targ++, str1++, str2++) { 7716 if (*targ!=*str1 && *targ!=*str2) return 0;
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |