OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__wchar_t
(Results
1 - 25
of
102
) sorted by null
1
2
3
4
5
/external/clang/test/SemaCXX/
ms-wchar.cpp
4
__wchar_t
f(); // No error, wchar_t and
__wchar_t
are the same type.
6
__wchar_t
g = L'a';
7
__wchar_t
s[] = L"Hello world!";
12
__wchar_t
v[] = 1; // expected-error{{array initializer must be an initializer list or wide string literal}}
/external/clang/test/Sema/
ms-wchar.c
8
//
__wchar_t
is available as an MS extension.
9
__wchar_t
g = L'a'; // expected-note {{previous}}
11
//
__wchar_t
is a distinct type, separate from the target's integer type for wide chars.
12
unsigned short g; // expected-error {{redefinition of 'g' with a different type: 'unsigned short' vs '
__wchar_t
'}}
14
// The type of a wide string literal is actually not
__wchar_t
.
15
__wchar_t
s[] = L"Hello world!"; // expected-error-re {{array initializer must be an initializer list$}}
18
__wchar_t
t[] = 1; // expected-error-re {{array initializer must be an initializer list$}}
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
py_curses.h
30
#ifndef
__wchar_t
31
#define
__wchar_t
macro
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
py_curses.h
30
#ifndef
__wchar_t
31
#define
__wchar_t
macro
/bionic/libc/arch-arm/include/machine/
_types.h
103
typedef int
__wchar_t
;
typedef
/bionic/libc/arch-mips/include/machine/
_types.h
118
typedef int
__wchar_t
;
typedef
/bionic/libc/arch-x86/include/machine/
_types.h
103
typedef int
__wchar_t
;
typedef
/development/ndk/platforms/android-3/arch-arm/include/machine/
_types.h
101
typedef int
__wchar_t
;
typedef
/development/ndk/platforms/android-9/arch-mips/include/machine/
_types.h
118
typedef int
__wchar_t
;
typedef
/development/ndk/platforms/android-9/arch-x86/include/machine/
_types.h
101
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/machine/
_types.h
125
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/machine/
_types.h
122
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/machine/
_types.h
126
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/machine/
_types.h
126
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
/prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/machine/
_types.h
114
typedef int
__wchar_t
;
typedef
Completed in 3740 milliseconds
1
2
3
4
5