HomeSort by relevance Sort by last modified time
    Searched defs:char32_t (Results 1 - 10 of 10) sorted by null

  /system/core/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);
  /external/clang/test/Lexer/
unicode-strings.c 8 typedef __CHAR32_TYPE__ char32_t; typedef
11 // expected-warning@18 {{'char32_t' type specifier is incompatible with C++98}}
13 // expected-warning@21 {{'char32_t' type specifier is incompatible with C++98}}
18 const char32_t *c = U"abcd"; // expected-warning {{unicode literals are incompatible with}}
21 char32_t e = U'a'; // expected-warning {{unicode literals are incompatible with}}
char-literal.cpp 7 typedef __CHAR32_TYPE__ char32_t; typedef
27 char32_t k = U'\U0010FFFD';
32 char32_t n = U'ab'; // expected-error {{Unicode character literals may not contain multiple characters}}
cxx0x_keyword_as_cxx98.cpp 30 int char32_t; // expected-warning {{'char32_t' is a keyword in C++11}} variable
string_concat.cpp 7 typedef __CHAR32_TYPE__ char32_t; typedef
30 const char32_t* m = U"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
31 const char32_t* n = U"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
32 const char32_t* o = U"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
34 const char32_t* p = U"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
35 const char32_t* q = U"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
36 const char32_t* r = U"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  /external/chromium_org/tools/gyp/test/mac/clang-cxx-language-standard/
c++98.cc 13 char32_t, enumerator in enum:cxx11_keywords
  /external/clang/test/CodeGen/
string-literal.c 11 typedef __CHAR32_TYPE__ char32_t; typedef
44 const char32_t *c = U"CD";
48 const char32_t *d = U"\u1235\U0010F00C";
52 const char32_t *o = "\u1235" U"\U0010F00B";
83 const char32_t *k = UR"bar(IJ)bar";
  /external/clang/test/Sema/
string-init.c 6 typedef unsigned int char32_t; typedef
27 char32_t d1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
28 char32_t d2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
29 char32_t d3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
30 char32_t d4[] = U"a"; // No error.
31 char32_t d5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
50 char32_t d[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
  /external/clang/test/SemaCXX/
MicrosoftCompatibility.cpp 5 typedef unsigned int char32_t; typedef
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 26 #define char32_t macro
111 char32_t

Completed in 123 milliseconds