HomeSort by relevance Sort by last modified time
    Searched full:wchar_t (Results 551 - 575 of 3668) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_messages_facets.h 88 class _STLP_CLASS_DECLSPEC messages<wchar_t> : public locale::facet, public messages_base {
91 typedef wchar_t char_type;
151 class _STLP_CLASS_DECLSPEC messages_byname<wchar_t> : public messages<wchar_t> {
169 typedef messages_byname<wchar_t> _Self;
176 #endif /* WCHAR_T */
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcpcpy.c 40 wchar_t *
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from)
wcscasecmp.c 34 wcscasecmp(const wchar_t *s1, const wchar_t *s2)
36 wchar_t c1, c2;
wcsncasecmp.c 34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n)
36 wchar_t c1, c2;
wcslcpy.c 47 wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz)
49 wchar_t *d = dst;
50 const wchar_t *s = src;
  /external/chromium/third_party/libjingle/source/talk/base/
winfirewall.h 56 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
60 bool AddApplicationW(const wchar_t* filename, const wchar_t* friendly_name,
  /external/chromium_org/chrome/common/
child_process_logging_win.cc 20 typedef void (__cdecl *SetCrashKeyValue)(const wchar_t*, const wchar_t*);
24 typedef void (__cdecl *ClearCrashKeyValue)(const wchar_t*);
  /external/chromium_org/chrome_frame/test/
registry_watcher_unittest.cc 14 const wchar_t kTestRoot[] = L"CFRegistryWatcherTest";
15 const wchar_t kTestWindowClass[] = L"TestWndClass";
16 const wchar_t kTestWindowName[] = L"TestWndName";
  /external/chromium_org/cloud_print/common/win/
cloud_print_utils.cc 16 const wchar_t kClientStateKey[] = L"SOFTWARE\\Google\\Update\\ClientState\\";
17 const wchar_t* kUsageKey = L"dr";
27 static wchar_t dummy = L'\0';
  /external/chromium_org/cloud_print/virtual_driver/win/
virtual_driver_helpers.cc 34 BYTE driver_dir_buffer[MAX_PATH * sizeof(wchar_t)];
40 MAX_PATH * sizeof(wchar_t),
46 *path = base::FilePath(reinterpret_cast<wchar_t*>(driver_dir_buffer));
  /external/chromium_org/content/app/
startup_helper_win.cc 21 void InvalidParameter(const wchar_t* expression, const wchar_t* function,
22 const wchar_t* file, unsigned int line,
  /external/chromium_org/third_party/libjingle/source/talk/base/
winfirewall.h 56 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
60 bool AddApplicationW(const wchar_t* filename, const wchar_t* friendly_name,
  /external/chromium_org/tools/set_default_handler/
set_default_handler_main.cc 23 const wchar_t kDefaultProgram[] = L"Google Chrome";
24 const wchar_t kDefaultProtocol[] = L"http";
29 int wmain(int argc, wchar_t* argv[]) {
  /external/chromium_org/tools/win/split_link/
split_link.cc 33 static void Fatal(const wchar_t* msg) {
39 wchar_t* msg_buf = NULL;
102 static void RunLinker(const vector<wstring>& prefix, const wchar_t* msg) {
138 reinterpret_cast<LPWSTR>(const_cast<wchar_t *>(
157 static void Fallback(const wchar_t* msg) {
158 wchar_t original_link[1024];
183 static unsigned char* SlurpFile(const wchar_t* path, size_t* length) {
199 static bool SplitLinkRequested(const wchar_t* rsp_path) {
205 wstring wide(reinterpret_cast<wchar_t*>(&data[2]),
206 length / sizeof(wchar_t) - 1)
    [all...]
  /external/clang/test/Lexer/
char-literal.cpp 5 typedef __WCHAR_TYPE__ wchar_t;
24 wchar_t i = L'ab'; // expected-warning {{extraneous characters in character constant ignored}}
25 wchar_t j = L'\U0010FFFD';
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
proxy.pass.cpp 31 std::istreambuf_iterator<wchar_t> j(inf);
32 std::istreambuf_iterator<wchar_t> i = j++;
33 assert(i != std::istreambuf_iterator<wchar_t>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
increment.pass.cpp 33 std::ostreambuf_iterator<wchar_t> i(outf);
34 std::ostreambuf_iterator<wchar_t>& iref = ++i;
36 std::ostreambuf_iterator<wchar_t>& iref2 = i++;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
is_signed.pass.cpp 32 test<wchar_t, wchar_t(-1) < wchar_t(0)>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/
types.pass.cpp 41 assert(std::has_facet<std::collate_byname<wchar_t> >(l));
42 assert(&std::use_facet<std::collate<wchar_t> >(l)
43 == &std::use_facet<std::collate_byname<wchar_t> >(l));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/
types.pass.cpp 12 // template<class Codecvt, class Elem = wchar_t,
29 typedef std::wstring_convert<std::codecvt_utf8<wchar_t> > myconv;
33 static_assert((std::is_same<myconv::int_type, std::char_traits<wchar_t>::int_type>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.cons/
initializer_list.pass.cpp 39 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, min_allocator<wchar_t>> S;
  /external/bison/lib/
printf-args.c 106 ap->a.a_wide_string = va_arg (args, const wchar_t *);
112 static const wchar_t wide_null_string[] =
114 (wchar_t)'(',
115 (wchar_t)'N', (wchar_t)'U', (wchar_t)'L', (wchar_t)'L',
116 (wchar_t)')',
117 (wchar_t)0
  /external/chromium/base/debug/
debug_on_start_win.cc 22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) {
23 wchar_t argument[50] = {};
30 wchar_t first_char = command_line[0];
31 wchar_t last_char = command_line[argument_len+1];
  /external/chromium/base/
stringprintf.h 19 BASE_API std::wstring StringPrintf(const wchar_t* format, ...)
31 const wchar_t* format, ...)
39 BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
47 const wchar_t* format, va_list ap)
  /external/chromium/chrome/browser/
browser_trial.h 20 // static const wchar_t* kPruningAlgorithmFieldTrial;

Completed in 2098 milliseconds

<<21222324252627282930>>