Searched refs:towlower (Results 1 – 14 of 14) sorted by relevance
/bionic/benchmarks/ |
D | wctype_benchmark.cpp | 22 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towlower_ascii_y, towlower('X')); 23 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towlower_ascii_n, towlower('x')); 25 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towlower_unicode_y, towlower(0x0391)); 26 BIONIC_TRIVIAL_BENCHMARK(BM_wctype_towlower_unicode_n, towlower(0x03b1));
|
/bionic/tests/ |
D | wctype_test.cpp | 103 TEST(wctype, towlower) { in TEST() argument 104 EXPECT_EQ(WEOF, towlower(WEOF)); in TEST() 105 EXPECT_EQ(wint_t('!'), towlower(L'!')); in TEST() 106 EXPECT_EQ(wint_t('a'), towlower(L'a')); in TEST() 107 EXPECT_EQ(wint_t('a'), towlower(L'A')); in TEST() 109 EXPECT_EQ(wint_t(L'ç'), towlower(L'ç')); in TEST() 110 EXPECT_EQ(wint_t(L'ç'), towlower(L'Ç')); in TEST() 111 EXPECT_EQ(wint_t(L'δ'), towlower(L'δ')); in TEST() 112 EXPECT_EQ(wint_t(L'δ'), towlower(L'Δ')); in TEST() 120 EXPECT_EQ(WEOF, towlower(WEOF)); in TEST()
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcscasecmp.c | 41 c1 = towlower(*s1); in wcscasecmp() 42 c2 = towlower(*s2); in wcscasecmp()
|
D | wcsncasecmp.c | 43 c1 = towlower(*s1); in wcsncasecmp() 44 c2 = towlower(*s2); in wcsncasecmp()
|
/bionic/libc/bionic/ |
D | wctype.cpp | 119 wint_t towlower(wint_t wc) { in towlower() function 144 wint_t towlower_l(wint_t c, locale_t) { return towlower(c); } in towlower_l() 178 if (t == wctrans_tolower) return towlower(c); in towctrans()
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regex2.h | 144 if (ch == towlower(cs->wides[i]) || in CHIN1() 168 return (CHIN1(cs, ch) || CHIN1(cs, towlower(ch)) || in CHIN()
|
D | utils.h | 57 #define towlower(a) tolower(a) macro
|
D | regcomp.c | 1475 return(towlower(ch)); 1783 if ((nch = towlower(ch)) < NC)
|
/bionic/libc/include/bits/ |
D | wctype.h | 53 wint_t towlower(wint_t __wc);
|
/bionic/tests/headers/posix/ |
D | wctype_h.c | 69 FUNCTION(towlower, wint_t (*f)(wint_t)); in wctype_h()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 1082 towlower
|
/bionic/libc/ |
D | libc.map.txt | 1098 towlower;
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 1098 towlower;
|
/bionic/benchmarks/linker_relocation/gen/ |
D | liblinker_reloc_bench_063.S | 11184 CALL(towlower)
|