HomeSort by relevance Sort by last modified time
    Searched refs:towctrans (Results 1 - 9 of 9) sorted by null

  /external/libcxx/test/std/strings/c.strings/
cwctype.pass.cpp 86 #ifdef towctrans
87 #error towctrans defined
115 ASSERT_SAME_TYPE(std::wint_t, decltype(std::towctrans(w, std::wctrans_t())));
  /external/libcxx/include/
wctype.h 43 wint_t towctrans(wint_t wc, wctrans_t desc);
74 #undef towctrans macro
  /external/libcxx/test/std/depr/depr.c.headers/
wctype_h.pass.cpp 83 #ifdef towctrans
84 #error towctrans defined
112 static_assert((std::is_same<decltype(towctrans(w, wctr)), wint_t>::value), "");
  /bionic/libc/include/bits/
wctype.h 61 wint_t towctrans(wint_t __wc, wctrans_t __transform) __INTRODUCED_IN(26) __VERSIONER_NO_GUARD;
  /device/linaro/bootloader/edk2/StdLib/Include/
wctype.h 42 wint_t towctrans (wint_t, wctrans_t);
325 valid as the second argument to the towctrans function;
340 wint_t towctrans (wint_t WC, wctrans_t WTr);
  /bionic/tests/
wctype_test.cpp 217 TEST(wctype, towctrans) {
233 EXPECT_EQ(wint_t('a'), towctrans(L'A', wctrans("tolower")));
234 EXPECT_EQ(WEOF, towctrans(WEOF, wctrans("tolower")));
236 EXPECT_EQ(wint_t('A'), towctrans(L'a', wctrans("toupper")));
237 EXPECT_EQ(WEOF, towctrans(WEOF, wctrans("toupper")));
  /bionic/tests/headers/posix/
wctype_h.c 67 FUNCTION(towctrans, wint_t (*f)(wint_t, wctrans_t));
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
iswctype_sb.c 219 wint_t towctrans(wint_t p1, wctrans_t tranfunc) function
  /bionic/libc/bionic/
wctype.cpp 165 wint_t towctrans(wint_t c, wctrans_t t) { function
173 return towctrans(c, t);

Completed in 859 milliseconds