HomeSort by relevance Sort by last modified time
    Searched full:wchar_t (Results 226 - 250 of 1732) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/autofill/
autofill_ie_toolbar_import_win_unittest.cc 24 const wchar_t kUnitTestRegistrySubKey[] = L"SOFTWARE\\Chromium Unit Tests";
25 const wchar_t kUnitTestUserOverrideSubKey[] =
28 const wchar_t* const kProfileKey =
30 const wchar_t* const kCreditCardKey =
32 const wchar_t* const kPasswordHashValue = L"password_hash";
33 const wchar_t* const kSaltValue = L"salt";
36 wchar_t const* const value_name;
37 wchar_t const* const value;
90 size_t data_size = (lstrlen(value->value) + 1) * sizeof(wchar_t);
99 void CreateSubkey(RegKey* key, wchar_t const* subkey_name
    [all...]
  /external/dbus/tools/
dbus-launch-win.c 41 wcscat_s (wchar_t *dest, size_t size, wchar_t *src)
43 assert (sizeof (wchar_t) * (wcslen (dest) + wcslen (src) + 1) <= size);
50 wcscpy_s (wchar_t *dest, size_t size, wchar_t *src)
52 assert (sizeof (wchar_t) * (wcslen (src) + 1) <= size);
87 wchar_t dbusDaemonPath[MAX_PATH * 2 + 1];
88 wchar_t command[MAX_PATH * 2 + 1];
89 wchar_t *p;
90 wchar_t *daemon_name
    [all...]
  /external/stlport/src/
locale.cpp 310 impl->insert( i2, _STLP_STD::collate<wchar_t>::id);
317 impl->insert( i2, _STLP_STD::ctype<wchar_t>::id);
318 impl->insert( i2, _STLP_STD::codecvt<wchar_t, char, mbstate_t>::id);
327 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id);
328 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id);
329 impl->insert( i2, _STLP_STD::money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
330 impl->insert( i2, _STLP_STD::money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
locale.cpp 310 impl->insert( i2, _STLP_STD::collate<wchar_t>::id);
317 impl->insert( i2, _STLP_STD::ctype<wchar_t>::id);
318 impl->insert( i2, _STLP_STD::codecvt<wchar_t, char, mbstate_t>::id);
327 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id);
328 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id);
329 impl->insert( i2, _STLP_STD::money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
330 impl->insert( i2, _STLP_STD::money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id)
    [all...]
  /external/chromium/base/win/
event_trace_consumer.h 48 HRESULT OpenRealtimeSession(const wchar_t* session_name);
54 HRESULT OpenFileSession(const wchar_t* file_name);
89 const wchar_t* session_name) {
91 logfile.LoggerName = const_cast<wchar_t*>(session_name);
106 const wchar_t* file_name) {
108 logfile.LogFileName = const_cast<wchar_t*>(file_name);
  /external/chromium/chrome/browser/autofill/crypto/
rc4_decryptor.h 21 explicit RC4Decryptor(wchar_t const* password) {
23 wcslen(password) * sizeof(wchar_t));
32 int data_size = data.length() * sizeof(wchar_t);
34 scoped_array<wchar_t> buffer(new wchar_t[data.length() + 1]);
35 memset(buffer.get(), 0, (data.length() + 1) * sizeof(wchar_t));
  /external/clang/test/Lexer/
string_concat.cpp 26 const wchar_t* s = L"abc" u8"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
27 const wchar_t* t = L"abc" u"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
28 const wchar_t* u = L"abc" U"abc"; // expected-error {{ unsupported non-standard concatenation of string literals }}
29 const wchar_t* v = L"abc" u8R"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
30 const wchar_t* w = L"abc" uR"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
31 const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{ unsupported non-standard concatenation of string literals }}
  /external/icu4c/io/
ufmt_cmn.h 44 /*ufmt_wchar,*/ /* wchar_t */
45 /*ufmt_wstring,*/ /* wchar_t* */
57 void *ptrValue; /* any pointer - void*, char*, wchar_t*, UChar* */
58 /*wchar_t wcharValue;*/ /* wchar_t */ /* TODO: Should wchar_t be used? */
  /external/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 */
  /ndk/sources/cxx-stl/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 */
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/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 */
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/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 */
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/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/wchar/
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,
win32.cc 108 wchar_t* wfilename = STACK_ARRAY(wchar_t, wlen);
120 wchar_t* filepart = NULL;
121 wchar_t* full_filename = STACK_ARRAY(wchar_t, full_len + 6);
122 wchar_t* start = full_filename + 6;
127 const wchar_t kLongPathPrefix[] = L"\\\\?\\UNC";
133 memcpy(start, kLongPathPrefix, 4 * sizeof(wchar_t));
139 memcpy(start, kLongPathPrefix, 7 * sizeof(wchar_t));
  /external/elfutils/
config-compat-darwin.h 57 static inline wchar_t *wmempcpy (wchar_t *__restrict __s1, __const wchar_t *__restrict __s2, size_t __n)
  /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;
  /external/chromium/chrome/common/
chrome_constants.cc 56 const wchar_t kNaClAppName[] = L"nacl64";
58 const wchar_t kBrowserAppName[] = L"Chrome";
61 const wchar_t kBrowserAppName[] = L"Chromium";
66 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow";
69 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow";
70 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt";
71 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll";
73 const wchar_t kBrowserResourcesDll[] = L"chrome.dll";
101 const wchar_t kUserDataDirname[] = L"User Data";
  /external/clang/test/SemaObjCXX/
reserved-keyword-methods.mm 33 macro(wchar_t)

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>