HomeSort by relevance Sort by last modified time
    Searched full:char32_t (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Parser/
char-literal-printing.c 52 char32_t test39(void) { return U'\\'; }
53 char32_t test40(void) { return U'\''; }
54 char32_t test41(void) { return U'\a'; }
55 char32_t test42(void) { return U'\b'; }
56 char32_t test43(void) { return U'\e'; }
57 char32_t test44(void) { return U'\f'; }
58 char32_t test45(void) { return U'\n'; }
59 char32_t test46(void) { return U'\r'; }
60 char32_t test47(void) { return U'\t'; }
61 char32_t test48(void) { return U'\v';
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-type-convert-construct.cpp 8 char32_t *Ustr;
9 Ustr = U"a UTF-32 string"; // expected-error {{assigning to 'char32_t *' from incompatible type 'const char32_t [16]'}}
19 char32_t *URstr;
20 URstr = UR"foo(a UTF-32 raw string)foo"; // expected-error {{assigning to 'char32_t *' from incompatible type 'const char32_t [20]'}}
literal-operators.cpp 22 void operator "" _good (char32_t);
30 void operator "" _good (const char32_t *, size_t);
  /external/clang/test/CXX/lex/lex.literal/lex.ccon/
p1.cpp 14 extern char32_t e;
  /external/clang/test/Lexer/
string_concat.cpp 19 const char32_t* m = U"abc" u8"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
20 const char32_t* n = U"abc" u"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
21 const char32_t* o = U"abc" L"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
22 const char32_t* p = U"abc" u8R"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
23 const char32_t* q = U"abc" uR"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
24 const char32_t* r = U"abc" LR"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
cxx0x_keyword_as_cxx98.cpp 30 int char32_t; // expected-warning {{'char32_t' is a keyword in C++11}} variable
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring_fwd.h 77 typedef __versa_string<char32_t> __u32vstring;
80 __versa_string<char32_t, std::char_traits<char32_t>,
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring_fwd.h 77 typedef __versa_string<char32_t> __u32vstring;
80 __versa_string<char32_t, std::char_traits<char32_t>,
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring_fwd.h 77 typedef __versa_string<char32_t> __u32vstring;
80 __versa_string<char32_t, std::char_traits<char32_t>,
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /external/sqlite/android/
PhoneticStringUtils.cpp 35 static int GetHiraganaFromHalfwidthKatakana(char32_t codepoint,
36 char32_t next_codepoint,
167 static int GetNormalizedKana(char32_t codepoint,
168 char32_t next_codepoint,
184 int GetNormalizedCodePoint(char32_t codepoint,
185 char32_t next_codepoint,
215 int (*get_codepoint_function)(char32_t, char32_t, bool*)) {
224 char32_t codepoints[MAX_CODEPOINTS]; // if array size is changed the for loop needs to be changed
240 static_cast<char32_t>(ret)
    [all...]
PhoneticStringUtils.h 34 int GetNormalizedCodePoint(char32_t codepoint,
35 char32_t next_codepoint,
  /frameworks/base/include/utils/
Unicode.h 25 typedef uint32_t char32_t; typedef
48 // Standard string functions on char32_t strings.
49 size_t strlen32(const char32_t *);
50 size_t strnlen32(const char32_t *, size_t);
56 ssize_t utf32_to_utf8_length(const char32_t *src, size_t src_len);
93 void utf32_to_utf8(const char32_t* src, size_t src_len, char* dst);
98 * If returned value is positive, it is able to be converted to char32_t, which
145 void utf8_to_utf32(const char* src, size_t src_len, char32_t* dst);
String8.h 47 explicit String8(const char32_t* o);
48 explicit String8(const char32_t* o, size_t numChars);
70 status_t setTo(const char32_t* other,
86 void getUtf32(char32_t* dst) const;
  /external/clang/test/CodeGen/
char-literal.c 35 char32_t Ua = U'a';
39 char32_t Ub = U'ab';
60 char32_t Uc = U'\uF00B';
76 char32_t Ud = U'\U0010F00B';
91 char32_t Ue = U'\u1234\U0010F00B';
string-literal.c 31 const char32_t *c = U"CD";
34 const char32_t *d = U"\u1235\U0010F00C";
37 const char32_t *o = "\u1235" U"\U0010F00B";
63 const char32_t *k = UR"bar(IJ)bar";
  /frameworks/base/libs/utils/
Unicode.cpp 44 static const char32_t kByteMask = 0x000000BF;
45 static const char32_t kByteMark = 0x00000080;
49 static const char32_t kUnicodeSurrogateHighStart = 0x0000D800;
50 static const char32_t kUnicodeSurrogateHighEnd = 0x0000DBFF;
51 static const char32_t kUnicodeSurrogateLowStart = 0x0000DC00;
52 static const char32_t kUnicodeSurrogateLowEnd = 0x0000DFFF;
53 static const char32_t kUnicodeSurrogateStart = kUnicodeSurrogateHighStart;
54 static const char32_t kUnicodeSurrogateEnd = kUnicodeSurrogateLowEnd;
55 static const char32_t kUnicodeMaxCodepoint = 0x0010FFFF;
67 static const char32_t kFirstByteMark[] =
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stringfwd.h 68 template<> struct char_traits<char32_t>;
71 typedef basic_string<char32_t> u32string;
atomicfwd_cxx.h 105 typedef __atomic_base<char32_t> atomic_char32_t;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stringfwd.h 68 template<> struct char_traits<char32_t>;
71 typedef basic_string<char32_t> u32string;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stringfwd.h 68 template<> struct char_traits<char32_t>;
71 typedef basic_string<char32_t> u32string;
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
limits 616 /// numeric_limits<char32_t> specialization.
618 struct numeric_limits<char32_t>
622 static char32_t min() throw()
623 { return __glibcxx_min (char32_t); }
624 static char32_t max() throw()
625 { return __glibcxx_max (char32_t); }
627 static const int digits = __glibcxx_digits (char32_t);
628 static const int digits10 = __glibcxx_digits10 (char32_t);
629 static const bool is_signed = __glibcxx_signed (char32_t);
633 static char32_t epsilon() throw(
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
limits 616 /// numeric_limits<char32_t> specialization.
618 struct numeric_limits<char32_t>
622 static char32_t min() throw()
623 { return __glibcxx_min (char32_t); }
624 static char32_t max() throw()
625 { return __glibcxx_max (char32_t); }
627 static const int digits = __glibcxx_digits (char32_t);
628 static const int digits10 = __glibcxx_digits10 (char32_t);
629 static const bool is_signed = __glibcxx_signed (char32_t);
633 static char32_t epsilon() throw(
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
limits 616 /// numeric_limits<char32_t> specialization.
618 struct numeric_limits<char32_t>
622 static char32_t min() throw()
623 { return __glibcxx_min (char32_t); }
624 static char32_t max() throw()
625 { return __glibcxx_max (char32_t); }
627 static const int digits = __glibcxx_digits (char32_t);
628 static const int digits10 = __glibcxx_digits10 (char32_t);
629 static const bool is_signed = __glibcxx_signed (char32_t);
633 static char32_t epsilon() throw(
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
limits 616 /// numeric_limits<char32_t> specialization.
618 struct numeric_limits<char32_t>
622 static char32_t min() throw()
623 { return __glibcxx_min (char32_t); }
624 static char32_t max() throw()
625 { return __glibcxx_max (char32_t); }
627 static const int digits = __glibcxx_digits (char32_t);
628 static const int digits10 = __glibcxx_digits10 (char32_t);
629 static const bool is_signed = __glibcxx_signed (char32_t);
633 static char32_t epsilon() throw(
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
limits 616 /// numeric_limits<char32_t> specialization.
618 struct numeric_limits<char32_t>
622 static char32_t min() throw()
623 { return __glibcxx_min (char32_t); }
624 static char32_t max() throw()
625 { return __glibcxx_max (char32_t); }
627 static const int digits = __glibcxx_digits (char32_t);
628 static const int digits10 = __glibcxx_digits10 (char32_t);
629 static const bool is_signed = __glibcxx_signed (char32_t);
633 static char32_t epsilon() throw(
    [all...]

Completed in 705 milliseconds

1 2 3 4 5 6 7 8