/ndk/sources/android/support/tests/ |
stdio_unittest.cc | 22 wchar_t wide_buff[32]; 23 size_t wide_buff_len = sizeof(wide_buff) / sizeof(wchar_t); 26 static const wchar_t kWideString[] = L"Hello\uff41 World";
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/ |
locale_facetptr.pass.cpp | 37 assert(std::has_facet<std::collate<wchar_t> >(loc)); 40 assert(std::has_facet<std::ctype<wchar_t> >(loc)); 44 assert((std::has_facet<std::codecvt<wchar_t, char, std::mbstate_t> >(loc))); 47 assert((std::has_facet<std::moneypunct<wchar_t> >(loc))); 49 assert((std::has_facet<std::money_get<wchar_t> >(loc))); 51 assert((std::has_facet<std::money_put<wchar_t> >(loc))); 54 assert((std::has_facet<std::numpunct<wchar_t> >(loc))); 56 assert((std::has_facet<std::num_get<wchar_t> >(loc))); 58 assert((std::has_facet<std::num_put<wchar_t> >(loc))); 61 assert((std::has_facet<std::time_get<wchar_t> >(loc))) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.members/ |
combine.pass.cpp | 35 assert(std::has_facet<std::collate<wchar_t> >(loc)); 38 assert(std::has_facet<std::ctype<wchar_t> >(loc)); 42 assert((std::has_facet<std::codecvt<wchar_t, char, std::mbstate_t> >(loc))); 45 assert((std::has_facet<std::moneypunct<wchar_t> >(loc))); 47 assert((std::has_facet<std::money_get<wchar_t> >(loc))); 49 assert((std::has_facet<std::money_put<wchar_t> >(loc))); 52 assert((std::has_facet<std::numpunct<wchar_t> >(loc))); 54 assert((std::has_facet<std::num_get<wchar_t> >(loc))); 56 assert((std::has_facet<std::num_put<wchar_t> >(loc))); 59 assert((std::has_facet<std::time_get<wchar_t> >(loc))) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/ |
assign2.pass.cpp | 12 // template<> struct char_traits<wchar_t> 21 wchar_t c = L'\0'; 22 std::char_traits<wchar_t>::assign(c, L'a');
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_string_fwd.h | 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
/external/chromium_org/chrome_frame/ |
chrome_launcher.cc | 22 const wchar_t* kAllowedSwitches[] = { 40 const wchar_t kWhitespaceChars[] = { 71 const wchar_t kLauncherExeBaseName[] = L"chrome_launcher.exe"; 72 const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe"; 79 std::wstring TrimWhiteSpace(const wchar_t* input_str) { 121 bool IsValidCommandLine(const wchar_t* command_line) { 127 wchar_t** args = NULL; 174 (size / sizeof(wchar_t)) < kMaxChars) { 178 wchar_t* value = new wchar_t[(size / sizeof(wchar_t)) + 1] [all...] |
chrome_frame_helper_util.h | 38 bool IsWindowOfClass(HWND hwnd_to_match, const wchar_t* window_class); 41 bool IsNamedProcess(const wchar_t* process_name); 44 bool IsNamedWindow(HWND window, const wchar_t* window_name); 66 const wchar_t* class_name, 67 const wchar_t* window_name, 75 const wchar_t* value_name, 77 wchar_t* value);
|
crash_server_init.cc | 12 const wchar_t kChromePipeName[] = L"\\\\.\\pipe\\ChromeCrashServices"; 13 const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; 14 const wchar_t kSystemPrincipalSid[] = L"S-1-5-18"; 37 wchar_t* user_sid_value = NULL; 55 wchar_t exe_path[MAX_PATH * 2] = {0}; 62 wchar_t program_files_path[MAX_PATH] = {0}; 88 wchar_t temp_path[MAX_PATH + 1] = {0};
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
wcsncpy.c | 47 wchar_t * 48 wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n) 51 wchar_t *d = dst; 52 const wchar_t *s = src;
|
wcsstr.c | 46 wchar_t * 47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) 49 wchar_t c, sc; 62 return ((wchar_t *)s);
|
/external/chromium_org/remoting/host/ |
usage_stats_consent_win.cc | 20 const wchar_t kOmahaClientStateKeyFormat[] = 22 const wchar_t kOmahaClientState[] = L"ClientState"; 23 const wchar_t kOmahaClientStateMedium[] = L"ClientStateMedium"; 24 const wchar_t kOmahaUsagestatsValue[] = L"usagestats"; 26 LONG ReadUsageStatsValue(const wchar_t* state_key, DWORD* usagestats_out) {
|
/external/chromium_org/win8/delegate_execute/ |
crash_server_init.cc | 17 const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; 18 const wchar_t kSystemPrincipalSid[] = L"S-1-5-18"; 30 wchar_t exe_path[MAX_PATH * 2] = {0}; 37 wchar_t program_files_path[MAX_PATH] = {0}; 70 wchar_t temp_path[MAX_PATH + 1] = {0};
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/ |
types.pass.cpp | 34 static_assert((std::is_same<std::wstreambuf::char_type, wchar_t>::value), ""); 35 static_assert((std::is_same<std::wstreambuf::traits_type, std::char_traits<wchar_t> >::value), ""); 36 static_assert((std::is_same<std::wstreambuf::int_type, std::char_traits<wchar_t>::int_type>::value), ""); 37 static_assert((std::is_same<std::wstreambuf::pos_type, std::char_traits<wchar_t>::pos_type>::value), ""); 38 static_assert((std::is_same<std::wstreambuf::off_type, std::char_traits<wchar_t>::off_type>::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.messages/locale.messages/ |
types.pass.cpp | 28 static_assert((std::is_base_of<std::locale::facet, std::messages<wchar_t> >::value), ""); 29 static_assert((std::is_base_of<std::messages_base, std::messages<wchar_t> >::value), ""); 31 static_assert((std::is_same<std::messages<wchar_t>::char_type, wchar_t>::value), ""); 33 static_assert((std::is_same<std::messages<wchar_t>::string_type, std::wstring>::value), "");
|
/external/chromium_org/base/win/ |
registry_unittest.cc | 19 const wchar_t kRootKey[] = L"Base_Registry_Unittest"; 57 const wchar_t kStringValueName[] = L"StringValue"; 58 const wchar_t kDWORDValueName[] = L"DWORDValue"; 59 const wchar_t kInt64ValueName[] = L"Int64Value"; 60 const wchar_t kStringData[] = L"string data"; 86 const wchar_t* kNonExistent = L"NonExistent"; 125 EXPECT_EQ((MAX_PATH * 2 + 1) * sizeof(wchar_t), iterator.ValueSize()); 140 const wchar_t kName[] = L"name"; 141 // kData size is not a multiple of sizeof(wchar_t). 153 int end = (iterator.ValueSize() + sizeof(wchar_t) - 1) / sizeof(wchar_t) [all...] |
/external/chromium_org/base/test/ |
test_shortcut_win.cc | 28 wchar_t long_expected_path_chars[MAX_PATH] = {0}; 29 wchar_t long_actual_path_chars[MAX_PATH] = {0}; 61 wchar_t read_target[MAX_PATH] = {0}; 62 wchar_t read_working_dir[MAX_PATH] = {0}; 63 wchar_t read_arguments[MAX_PATH] = {0}; 64 wchar_t read_description[MAX_PATH] = {0}; 65 wchar_t read_icon[MAX_PATH] = {0};
|
/external/clang/test/Lexer/ |
string_concat.cpp | 5 typedef __WCHAR_TYPE__ wchar_t; 39 const wchar_t* s = L"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}} 40 const wchar_t* t = L"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}} 41 const wchar_t* u = L"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}} 43 const wchar_t* v = L"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}} 44 const wchar_t* w = L"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}} 45 const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
|
/external/clang/test/Sema/ |
string-init.c | 4 typedef int wchar_t; 15 wchar_t b1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} 16 wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}} 17 wchar_t b3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} 18 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} 19 wchar_t b5[] = L"a"; // No error. 48 wchar_t b[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
|
/external/lzma/CPP/Common/ |
UTFConvert.cpp | 10 static Bool Utf8_To_Utf16(wchar_t *dest, size_t *destLen, const char *src, size_t srcLen)
27 dest[destPos] = (wchar_t)c;
54 dest[destPos] = (wchar_t)value;
64 dest[destPos + 0] = (wchar_t)(0xD800 + (value >> 10));
65 dest[destPos + 1] = (wchar_t)(0xDC00 + (value & 0x3FF));
74 static Bool Utf16_To_Utf8(char *dest, size_t *destLen, const wchar_t *src, size_t srcLen)
128 wchar_t *p = dest.GetBuffer((int)destLen);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/ |
CharT.pass.cpp | 57 wchar_t c = L'a'; 63 testbuf<wchar_t> sb; 65 wchar_t c = L'a'; 70 testbuf<wchar_t> sb; 73 wchar_t c = L'a'; 79 testbuf<wchar_t> sb; 83 wchar_t c = L'a';
|