Searched refs:towupper (Results 1 – 9 of 9) sorted by relevance
/bionic/benchmarks/ |
D | wctype_benchmark.cpp | 28 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towupper_ascii_y, towupper('x')); 29 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towupper_ascii_n, towupper('X')); 31 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towupper_unicode_y, towupper(0x03b1)); 32 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towupper_unicode_n, towupper(0x0391));
|
/bionic/tests/ |
D | wctype_test.cpp | 134 TEST(wctype, towupper) { in TEST() argument 135 EXPECT_EQ(WEOF, towupper(WEOF)); in TEST() 136 EXPECT_EQ(wint_t('!'), towupper(L'!')); in TEST() 137 EXPECT_EQ(wint_t('A'), towupper(L'a')); in TEST() 138 EXPECT_EQ(wint_t('A'), towupper(L'A')); in TEST() 140 EXPECT_EQ(wint_t(L'Ç'), towupper(L'ç')); in TEST() 141 EXPECT_EQ(wint_t(L'Ç'), towupper(L'Ç')); in TEST() 142 EXPECT_EQ(wint_t(L'Δ'), towupper(L'δ')); in TEST() 143 EXPECT_EQ(wint_t(L'Δ'), towupper(L'Δ')); in TEST()
|
/bionic/libc/bionic/ |
D | wctype.cpp | 130 wint_t towupper(wint_t wc) { in towupper() function 143 wint_t towupper_l(wint_t c, locale_t) { return towupper(c); } in towupper_l() 179 if (t == wctrans_toupper) return towupper(c); in towctrans()
|
/bionic/libc/include/bits/ |
D | wctype.h | 54 wint_t towupper(wint_t __wc);
|
/bionic/tests/headers/posix/ |
D | wctype_h.c | 71 FUNCTION(towupper, wint_t (*f)(wint_t)); in wctype_h()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 1084 towupper
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 1102 towupper;
|
/bionic/libc/ |
D | libc.map.txt | 1102 towupper;
|
/bionic/benchmarks/linker_relocation/gen/ |
D | liblinker_reloc_bench_063.S | 11183 CALL(towupper)
|