HomeSort by relevance Sort by last modified time
    Searched refs:wchar_t (Results 126 - 150 of 2618) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
types.pass.cpp 12 // template<> struct char_traits<wchar_t>
14 // typedef wchar_t char_type;
25 static_assert((std::is_same<std::char_traits<wchar_t>::char_type, wchar_t>::value), "");
26 static_assert((std::is_same<std::char_traits<wchar_t>::int_type, std::wint_t>::value), "");
27 static_assert((std::is_same<std::char_traits<wchar_t>::off_type, std::streamoff>::value), "");
28 static_assert((std::is_same<std::char_traits<wchar_t>::pos_type, std::wstreampos>::value), "");
29 static_assert((std::is_same<std::char_traits<wchar_t>::state_type, std::mbstate_t>::value), "");
eq.pass.cpp 12 // template<> struct char_traits<wchar_t>
21 assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
22 assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
lt.pass.cpp 12 // template<> struct char_traits<wchar_t>
21 assert(!std::char_traits<wchar_t>::lt(L'a', L'a'));
22 assert( std::char_traits<wchar_t>::lt(L'A', L'a'));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
wchar.h 44 /* Get size_t, wchar_t, wint_t and NULL from <stddef.h>. */
144 extern wchar_t *wcscpy (wchar_t *__restrict __dest,
145 __const wchar_t *__restrict __src) __THROW;
147 extern wchar_t *wcsncpy (wchar_t *__restrict __dest,
148 __const wchar_t *__restrict __src, size_t __n)
152 extern wchar_t *wcscat (wchar_t *__restrict __dest,
153 __const wchar_t *__restrict __src) __THROW
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcscmp.c 48 wcscmp(const wchar_t *s1, const wchar_t *s2)
54 /* XXX assumes wchar_t = int */
wcscspn.c 40 wcscspn(const wchar_t *s, const wchar_t *set)
42 const wchar_t *p;
43 const wchar_t *q;
wcsspn.c 40 wcsspn(const wchar_t *s, const wchar_t *set)
42 const wchar_t *p;
43 const wchar_t *q;
  /bionic/libc/upstream-openbsd/lib/libc/locale/
wcsxfrm.c 37 wcsxfrm(wchar_t *dest, const wchar_t *src, size_t n)
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
wcscoll.c 43 wcscoll(const wchar_t *s1, const wchar_t *s2)
  /external/clang/test/CodeGen/
2003-08-21-WideString.c 4 typedef __WCHAR_TYPE__ wchar_t;
15 wchar_t *name;
2009-07-15-pad-wchar_t-array.c 4 typedef __WCHAR_TYPE__ wchar_t;
16 wchar_t _sqlState[6] = { L"\0" };
wchar-const.c 6 typedef __WCHAR_TYPE__ wchar_t;
19 extern void foo(const wchar_t* p);
  /external/clang/test/SemaCXX/
ms-wchar.cpp 3 wchar_t f();
4 __wchar_t f(); // No error, wchar_t and __wchar_t are the same type.
11 wchar_t u[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/
ctor.pass.cpp 37 std::locale l(std::locale::classic(), new my_facet<wchar_t>);
38 assert(my_facet<wchar_t>::count == 1);
40 assert(my_facet<wchar_t>::count == 0);
42 my_facet<wchar_t> f(1);
43 assert(my_facet<wchar_t>::count == 1);
46 assert(my_facet<wchar_t>::count == 1);
48 assert(my_facet<wchar_t>::count == 1);
50 assert(my_facet<wchar_t>::count == 0);
types.pass.cpp 29 assert(std::has_facet<std::ctype<wchar_t> >(l));
30 const std::ctype<wchar_t>& f = std::use_facet<std::ctype<wchar_t> >(l);
33 (void)std::ctype<wchar_t>::id;
35 static_assert((std::is_same<std::ctype<wchar_t>::char_type, wchar_t>::value), "");
36 static_assert((std::is_base_of<std::ctype_base, std::ctype<wchar_t> >::value), "");
37 static_assert((std::is_base_of<std::locale::facet, std::ctype<wchar_t> >::value), "");
  /external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eq.pass.cpp 12 // template<> struct char_traits<wchar_t>
21 assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
22 assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
lt.pass.cpp 12 // template<> struct char_traits<wchar_t>
21 assert(!std::char_traits<wchar_t>::lt(L'a', L'a'));
22 assert( std::char_traits<wchar_t>::lt(L'A', L'a'));
  /external/pdfium/core/fpdfapi/font/
cpdf_fontencoding.h 26 uint32_t FT_CharCodeFromUnicode(int encoding, wchar_t unicode);
27 wchar_t FT_UnicodeFromCharCode(int encoding, uint32_t charcode);
29 wchar_t PDF_UnicodeFromAdobeName(const char* name);
30 ByteString PDF_AdobeNameFromUnicode(wchar_t unicode);
46 wchar_t UnicodeFromCharCode(uint8_t charcode) const {
49 int CharCodeFromUnicode(wchar_t unicode) const;
51 void SetUnicode(uint8_t charcode, wchar_t unicode) {
58 wchar_t m_Unicodes[256];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
wchar2.h 25 extern wchar_t *__wmemcpy_chk (wchar_t *__restrict __s1,
26 __const wchar_t *__restrict __s2, size_t __n,
28 extern wchar_t *__REDIRECT_NTH (__wmemcpy_alias,
29 (wchar_t *__restrict __s1,
30 __const wchar_t *__restrict __s2, size_t __n),
32 extern wchar_t *__REDIRECT_NTH (__wmemcpy_chk_warn,
33 (wchar_t *__restrict __s1,
34 __const wchar_t *__restrict __s2, size_t __n,
39 __extern_always_inline wchar_t *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
wchar2.h 25 extern wchar_t *__wmemcpy_chk (wchar_t *__restrict __s1,
26 __const wchar_t *__restrict __s2, size_t __n,
28 extern wchar_t *__REDIRECT_NTH (__wmemcpy_alias,
29 (wchar_t *__restrict __s1,
30 __const wchar_t *__restrict __s2, size_t __n),
32 extern wchar_t *__REDIRECT_NTH (__wmemcpy_chk_warn,
33 (wchar_t *__restrict __s1,
34 __const wchar_t *__restrict __s2, size_t __n,
39 __extern_always_inline wchar_t *
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
wchar.i 15 %types(wchar_t *);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype/
ctor.pass.cpp 37 std::locale l(std::locale::classic(), new my_facet<wchar_t>);
38 assert(my_facet<wchar_t>::count == 1);
40 assert(my_facet<wchar_t>::count == 0);
42 my_facet<wchar_t> f(1);
43 assert(my_facet<wchar_t>::count == 1);
46 assert(my_facet<wchar_t>::count == 1);
48 assert(my_facet<wchar_t>::count == 1);
50 assert(my_facet<wchar_t>::count == 0);
types.pass.cpp 29 assert(std::has_facet<std::ctype<wchar_t> >(l));
30 const std::ctype<wchar_t>& f = std::use_facet<std::ctype<wchar_t> >(l);
33 (void)std::ctype<wchar_t>::id;
35 static_assert((std::is_same<std::ctype<wchar_t>::char_type, wchar_t>::value), "");
36 static_assert((std::is_base_of<std::ctype_base, std::ctype<wchar_t> >::value), "");
37 static_assert((std::is_base_of<std::locale::facet, std::ctype<wchar_t> >::value), "");
  /external/libcxx/test/libcxx/input.output/iostream.format/input.streams/
traits_mismatch.fail.cpp 22 : public std::basic_istream<char, std::char_traits<wchar_t> > {};
  /external/libcxx/test/libcxx/input.output/iostream.format/output.streams/
traits_mismatch.fail.cpp 22 : public std::basic_ostream<char, std::char_traits<wchar_t> > {};

Completed in 590 milliseconds

1 2 3 4 56 7 8 91011>>