/aosp12/bionic/libc/upstream-netbsd/lib/libc/inet/ |
H A D | nsap_addr.c | 75 c = toupper(c); in inet_nsap_addr() 80 c = toupper(c); in inet_nsap_addr()
|
/aosp12/bionic/tests/ |
H A D | ctype_test.cpp | 317 TEST(ctype, toupper) { in TEST() argument 318 EXPECT_EQ('!', toupper('!')); in TEST() 319 EXPECT_EQ('A', toupper('a')); in TEST() 320 EXPECT_EQ('A', toupper('A')); in TEST()
|
/aosp12/bionic/benchmarks/ |
H A D | ctype_benchmark.cpp | 82 BIONIC_TRIVIAL_BENCHMARK(BM_ctype_toupper_y, toupper('x')); 83 BIONIC_TRIVIAL_BENCHMARK(BM_ctype_toupper_n, toupper('X'));
|
/aosp12/frameworks/native/libs/ftl/ |
H A D | small_map_test.cpp | 120 EXPECT_EQ(map.find('c', [](char c) { return std::toupper(c); }), 'Z'); in TEST() 125 EXPECT_TRUE(map.find('c', [](char& c) { c = std::toupper(c); })); in TEST()
|
/aosp12/system/bt/gd/packet/parser/ |
H A D | util.h | 96 c = std::toupper(c); in UnderscoreToCamelCase() 119 c = std::toupper(c); in ConstantCaseToCamelCase()
|
/aosp12/system/iorap/src/common/ |
H A D | cmd_utils.h | 132 std::transform(env_str.begin(), env_str.end(), env_str.begin(), ::toupper); in GetEnvOrProperty() 151 std::transform(env_str.begin(), env_str.end(), env_str.begin(), ::toupper); in GetBoolEnvOrProperty()
|
/aosp12/frameworks/native/libs/ui/tools/ |
H A D | lutgen.cpp | 155 transform(src.begin(), src.end(), src.begin(), ::toupper); in main() 156 transform(dst.begin(), dst.end(), dst.begin(), ::toupper); in main()
|
/aosp12/frameworks/base/libs/androidfw/ |
H A D | Locale.cpp | 43 region[i++] = ::toupper(*region_chars); in set_region() 52 script[i++] = ::toupper(*script_chars); in set_script()
|
H A D | ConfigDescription.cpp | 386 if (toupper(c[0]) != 'D' || toupper(c[1]) != 'P' || toupper(c[2]) != 'I' || in parseDensity()
|
/aosp12/bionic/libc/bionic/ |
H A D | ctype.cpp | 83 return toupper(c); in toupper_l()
|
H A D | wctype.cpp | 140 return u_toupper ? u_toupper(wc) : toupper(wc); in towupper()
|
/aosp12/system/logging/liblog/ |
H A D | properties.cpp | 184 switch (toupper(c)) { /* if invalid, resort to global */ in __android_log_level() 228 switch (toupper(c)) { in __android_log_level()
|
/aosp12/system/bt/btif/src/ |
H A D | btif_util.cc | 95 c = (toupper(*p_ascii) - 'A' + 10) << 4; in ascii_2_hex() 102 c |= (toupper(*p_ascii) - 'A' + 10); in ascii_2_hex()
|
/aosp12/bionic/tests/headers/posix/ |
H A D | ctype_h.c | 63 FUNCTION(toupper, int (*f)(int)); in ctype_h()
|
/aosp12/system/tools/hidl/host_utils/ |
H A D | StringHelper.cpp | 43 ch = toupper(ch); in Uppercase() 63 out[0] = toupper(out[0]); in Capitalize()
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/ |
H A D | capitalize.cpp | 30 buffer_.push_back(std::toupper(str[i])); in String()
|
/aosp12/system/testing/gtest_extras/ |
H A D | Options.cpp | 85 [](char c) { return std::toupper(c); }); in PrintError() 337 [](char c) { return std::toupper(c); }); in Process()
|
/aosp12/bionic/libc/dns/nameser/ |
H A D | ns_ttl.c | 117 ch = toupper(ch); in ns_parse_ttl()
|
/aosp12/bionic/libc/include/bits/ |
H A D | ctype_inlines.h | 161 __BIONIC_CTYPE_INLINE int toupper(int __ch) { in toupper() function
|
/aosp12/bionic/libc/tzcode/ |
H A D | strftime.c | 651 while (pt < ptlim && (*pt = toupper(*str++)) != '\0') { in _add() 661 c = toupper(c); in _add()
|
/aosp12/frameworks/rs/script_api/ |
H A D | Utilities.cpp | 53 result += toupper(source[s]); in capitalize()
|
H A D | GenerateHeaderFiles.cpp | 35 s += toupper(c); in makeGuardString()
|
/aosp12/frameworks/base/tools/aapt/ |
H A D | AaptConfig.cpp | 629 if (toupper(c[0]) != 'D' || in parseDensity() 630 toupper(c[1]) != 'P' || in parseDensity() 631 toupper(c[2]) != 'I' || in parseDensity()
|
/aosp12/hardware/broadcom/libbt/src/ |
H A D | hardware.c | 416 if (toupper(p_str1[i]) != toupper(p_str2[i])) in hw_strncmp() 676 *(p_name+i) = toupper(*(p_name+i)); in hw_config_cback()
|
/aosp12/system/tools/aidl/ |
H A D | diagnostics.cpp | 161 for (auto& c : name) c = std::toupper(c); in ToUpper()
|