OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:wchar_t
(Results
276 - 300
of
3668
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/bionic/libc/upstream-freebsd/lib/libc/string/
wcsncat.c
39
wchar_t
*
40
wcsncat(
wchar_t
* __restrict s1, const
wchar_t
* __restrict s2, size_t n)
42
wchar_t
*p;
43
wchar_t
*q;
44
const
wchar_t
*r;
wcspbrk.c
39
wchar_t
*
40
wcspbrk(const
wchar_t
*s, const
wchar_t
*set)
42
const
wchar_t
*p;
43
const
wchar_t
*q;
51
return (
wchar_t
*)p;
/external/chromium/chrome/browser/rlz/
rlz_unittest.cc
17
bool CleanValue(const
wchar_t
* key_name, const
wchar_t
* value) {
27
const
wchar_t
kKeyName[] = L"Software\\Google\\Common\\Rlz\\Events\\C";
35
const
wchar_t
kEvent1[] = L"C1F";
44
const
wchar_t
kEvent2[] = L"C2S";
57
const
wchar_t
kEvent1[] = L"C1F";
/external/chromium_org/chrome_frame/
chrome_launcher.h
19
extern const
wchar_t
kLauncherExeBaseName[];
23
bool IsValidCommandLine(const
wchar_t
* command_line);
28
bool SanitizeAndLaunchChrome(const
wchar_t
* command_line);
34
const
wchar_t
* GetArgumentsStart(const
wchar_t
* command_line);
48
std::wstring TrimWhiteSpace(const
wchar_t
* input_str);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
streambuf.pass.cpp
37
std::istreambuf_iterator<
wchar_t
> i(nullptr);
38
assert(i == std::istreambuf_iterator<
wchar_t
>());
42
std::istreambuf_iterator<
wchar_t
> i(inf.rdbuf());
43
assert(i == std::istreambuf_iterator<
wchar_t
>());
47
std::istreambuf_iterator<
wchar_t
> i(inf.rdbuf());
48
assert(i != std::istreambuf_iterator<
wchar_t
>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
length.pass.cpp
12
// template<> struct char_traits<
wchar_t
>
21
assert(std::char_traits<
wchar_t
>::length(L"") == 0);
22
assert(std::char_traits<
wchar_t
>::length(L"a") == 1);
23
assert(std::char_traits<
wchar_t
>::length(L"aa") == 2);
24
assert(std::char_traits<
wchar_t
>::length(L"aaa") == 3);
25
assert(std::char_traits<
wchar_t
>::length(L"aaaa") == 4);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
implementation_help.hpp
41
inline const
wchar_t
* str_end( const
wchar_t
* s, const
wchar_t
* )
46
inline const
wchar_t
* str_end( const
wchar_t
* s, const
wchar_t
* )
/external/chromium_org/chrome_frame/test/
ie_configurator.cc
27
const
wchar_t
kKeyIEApprovedExtensions[] =
29
const
wchar_t
kKeyIEInformationBar[] =
31
const
wchar_t
kKeyIEMain[] =
33
const
wchar_t
kKeyIEPhishingFilter[] =
35
const
wchar_t
kKeyIEBrowserEmulation[] =
37
const
wchar_t
kKeyPoliciesExt[] =
39
const
wchar_t
kValueEnabledV8[] = L"EnabledV8";
40
const
wchar_t
kValueEnabledV9[] = L"EnabledV9";
41
const
wchar_t
kValueFirstTime[] = L"FirstTime";
42
const
wchar_t
kValueIE8Completed[] = L"IE8RunOncePerInstallCompleted"
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/lib/
libstdc++.so
libstdc++.so.6
libstdc++.so.6.0.13
/external/chromium_org/chrome/browser/importer/
importer_unittest_utils.h
17
const
wchar_t
* path[kMaxPathSize];
18
const
wchar_t
* title;
/external/chromium_org/chrome_frame/crash_reporting/
crash_report.h
19
const
wchar_t
* user_sid,
25
const
wchar_t
* pipe_name,
/external/chromium_org/cloud_print/virtual_driver/win/
virtual_driver_consts.cc
11
const
wchar_t
kPortName[] = L"GCP:";
13
const
wchar_t
kGoogleUpdateProductId[] =
/external/chromium_org/rlz/win/lib/
registry_util.h
17
const
wchar_t
* name,
22
const
wchar_t
* name,
/external/chromium_org/third_party/icu/source/common/
cwchar.h
16
* This file contains ICU-internal definitions of
wchar_t
operations.
43
U_CAPI
wchar_t
* U_EXPORT2
44
uprv_wcscpy(
wchar_t
*dst, const
wchar_t
*src);
45
U_CAPI
wchar_t
* U_EXPORT2
46
uprv_wcscat(
wchar_t
*dst, const
wchar_t
*src);
48
uprv_wcslen(const
wchar_t
*src);
/external/chromium_org/tools/gyp/test/win/linker-flags/
no-default-libs.cc
12
BOOL CopyFileW(const
wchar_t
*, const
wchar_t
*, BOOL);
/external/icu4c/common/
cwchar.h
16
* This file contains ICU-internal definitions of
wchar_t
operations.
43
U_CAPI
wchar_t
* U_EXPORT2
44
uprv_wcscpy(
wchar_t
*dst, const
wchar_t
*src);
45
U_CAPI
wchar_t
* U_EXPORT2
46
uprv_wcscat(
wchar_t
*dst, const
wchar_t
*src);
48
uprv_wcslen(const
wchar_t
*src);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/
ctor.pass.cpp
53
std::locale l(std::locale::classic(), new my_facet<
wchar_t
>);
54
assert(my_facet<
wchar_t
>::count == 1);
56
assert(my_facet<
wchar_t
>::count == 0);
58
my_facet<
wchar_t
> f(1);
59
assert(my_facet<
wchar_t
>::count == 1);
62
assert(my_facet<
wchar_t
>::count == 1);
64
assert(my_facet<
wchar_t
>::count == 1);
66
assert(my_facet<
wchar_t
>::count == 0);
types.pass.cpp
40
assert(std::has_facet<std::collate<
wchar_t
> >(l));
41
const std::collate<
wchar_t
>& f = std::use_facet<std::collate<
wchar_t
> >(l);
43
(void)std::collate<
wchar_t
>::id;
45
static_assert((std::is_same<std::collate<
wchar_t
>::char_type,
wchar_t
>::value), "");
46
static_assert((std::is_same<std::collate<
wchar_t
>::string_type, std::wstring>::value), "");
47
static_assert((std::is_base_of<std::locale::facet, std::collate<
wchar_t
> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/
ctor.pass.cpp
37
std::locale l(std::locale::classic(), new my_facet<
wchar_t
>);
38
assert(my_facet<
wchar_t
>::count == 1);
40
assert(my_facet<
wchar_t
>::count == 0);
42
my_facet<
wchar_t
> f(1);
43
assert(my_facet<
wchar_t
>::count == 1);
46
assert(my_facet<
wchar_t
>::count == 1);
48
assert(my_facet<
wchar_t
>::count == 1);
50
assert(my_facet<
wchar_t
>::count == 0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/
ctor.pass.cpp
52
std::locale l(std::locale::classic(), new my_facet<
wchar_t
>);
53
assert(my_facet<
wchar_t
>::count == 1);
55
assert(my_facet<
wchar_t
>::count == 0);
57
my_facet<
wchar_t
> f(1);
58
assert(my_facet<
wchar_t
>::count == 1);
61
assert(my_facet<
wchar_t
>::count == 1);
63
assert(my_facet<
wchar_t
>::count == 1);
65
assert(my_facet<
wchar_t
>::count == 0);
types.pass.cpp
39
assert(std::has_facet<std::numpunct<
wchar_t
> >(l));
40
const std::numpunct<
wchar_t
>& f = std::use_facet<std::numpunct<
wchar_t
> >(l);
42
(void)std::numpunct<
wchar_t
>::id;
44
static_assert((std::is_same<std::numpunct<
wchar_t
>::char_type,
wchar_t
>::value), "");
45
static_assert((std::is_same<std::numpunct<
wchar_t
>::string_type, std::wstring>::value), "");
46
static_assert((std::is_base_of<std::locale::facet, std::numpunct<
wchar_t
> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/
form2.pass.cpp
30
typedef std::basic_string<
wchar_t
, std::char_traits<
wchar_t
>, test_allocator<
wchar_t
> > wstr;
68
std::match_results<const
wchar_t
*> m;
69
const
wchar_t
s[] = L"abcdefghijk";
72
wchar_t
out[100] = {0};
74
wchar_t
* r = m.format(output_iterator<
wchar_t
*>(out), fmt).base();
79
std::match_results<const
wchar_t
*> m;
80
const
wchar_t
s[] = L"abcdefghijk"
[
all
...]
/external/stlport/src/c_locale_glibc/
c_locale_glibc2.c
12
static
wchar_t
* _ToWChar(const char* buf,
wchar_t
*wbuf, size_t wbufSize) {
13
wchar_t
*wcur = wbuf;
14
wchar_t
*wend = wbuf + wbufSize - 1;
344
wchar_t
*to,
351
const
wchar_t
c,
383
const
wchar_t
*s1, size_t n1,
384
const
wchar_t
*s2, size_t n2) {
386
wchar_t
buf1[64], buf2[64];
432
wchar_t
*dest, size_t dest_n
[
all
...]
Completed in 611 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>