OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__wchar_t
(Results
1 - 8
of
8
) sorted by null
/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{{$}}}}
/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/Lexer/
keywords_test.c
25
#if __is_identifier(
__wchar_t
)
/development/ndk/platforms/android-3/arch-arm/include/machine/
_types.h
101
typedef int
__wchar_t
;
typedef
/development/ndk/platforms/android-9/arch-x86/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
/external/chromium_org/third_party/cld/base/
type_traits.h
46
template<> struct is_integral<
__wchar_t
> : true_type { };
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h
105
template<> struct is_integral<
__wchar_t
> : true_type { };
Completed in 94 milliseconds