OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__has_feature
(Results
1 - 25
of
31
) sorted by null
1
2
/external/clang/test/Lexer/
has_feature_type_traits.cpp
3
#if
__has_feature
(has_nothrow_assign)
8
#if
__has_feature
(has_nothrow_copy)
13
#if
__has_feature
(has_nothrow_constructor)
18
#if
__has_feature
(has_trivial_assign)
23
#if
__has_feature
(has_trivial_copy)
28
#if
__has_feature
(has_trivial_constructor)
33
#if
__has_feature
(has_trivial_destructor)
38
#if
__has_feature
(has_virtual_destructor)
43
#if
__has_feature
(is_abstract)
48
#if
__has_feature
(is_base_of
[
all
...]
has_feature_cxx0x.cpp
4
#if
__has_feature
(cxx_lambdas)
14
#if
__has_feature
(cxx_nullptr)
24
#if
__has_feature
(cxx_decltype)
34
#if
__has_feature
(cxx_auto_type)
44
#if
__has_feature
(cxx_trailing_return)
54
#if
__has_feature
(cxx_attributes)
64
#if
__has_feature
(cxx_static_assert)
73
#if
__has_feature
(cxx_deleted_functions)
83
#if
__has_feature
(cxx_rvalue_references)
93
#if
__has_feature
(cxx_variadic_templates
[
all
...]
has_feature_c1x.c
4
#if
__has_feature
(c_static_assert)
13
#if
__has_feature
(c_generic_selections)
has_feature_objc_arc.m
4
#if
__has_feature
(objc_arc)
10
#if
__has_feature
(objc_arc_weak)
has_feature_exceptions.cpp
4
#if
__has_feature
(cxx_exceptions)
has_feature_rtti.cpp
4
#if
__has_feature
(cxx_rtti)
/external/clang/test/Preprocessor/
non_fragile_feature1.m
2
#ifndef
__has_feature
3
#error Should have
__has_feature
6
#if
__has_feature
(objc_nonfragile_abi)
non_fragile_feature.m
2
#ifndef
__has_feature
3
#error Should have
__has_feature
6
#if !
__has_feature
(objc_nonfragile_abi)
10
#if !
__has_feature
(objc_weak_class)
feature_tests.c
3
#ifndef
__has_feature
4
#error Should have
__has_feature
8
#if
__has_feature
(something_we_dont_have)
15
!
__has_feature
(attribute_analyzer_noreturn) || \
16
!
__has_feature
(attribute_overloadable)
/external/webkit/Source/JavaScriptCore/wtf/
Noncopyable.h
24
#ifndef
__has_feature
25
#define
__has_feature
(x) 0
macro
28
#if
__has_feature
(cxx_deleted_functions)
NullPtr.h
34
#ifndef
__has_feature
35
#define
__has_feature
(feature) 0
macro
38
#if
__has_feature
(cxx_nullptr) || (defined(_MSC_VER) && _MSC_VER >= 1600)
/external/clang/test/ARCMT/
Common.h
1
#if
__has_feature
(objc_arr)
atautorelease-check.m
3
#if
__has_feature
(objc_arr)
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
cwg1170.cpp
3
#if !
__has_feature
(cxx_access_control_sfinae)
/external/clang/test/Parser/
attr-availability.c
3
#if !
__has_feature
(attribute_availability)
/external/clang/www/analyzer/
annotations.html
166
#ifndef
__has_feature
// Optional.
167
#define
__has_feature
(x) 0 // Compatibility with non-clang compilers.
171
#if
__has_feature
(attribute_ns_returns_retained)
214
#ifndef
__has_feature
// Optional.
215
#define
__has_feature
(x) 0 // Compatibility with non-clang compilers.
219
#if
__has_feature
(attribute_ns_returns_not_retained)
274
#ifndef
__has_feature
// Optional.
275
#define
__has_feature
(x) 0 // Compatibility with non-clang compilers.
279
#if
__has_feature
(attribute_cf_returns_retained)
342
#ifndef
__has_feature
// Optional
[
all
...]
/external/clang/test/Sema/
attr-unavailable-message.c
18
char test2[
__has_feature
(attribute_unavailable_with_message) ? 1 : -1];
attr-deprecated.c
115
char test21[
__has_feature
(attribute_deprecated_with_message) ? 1 : -1];
enum.c
106
char test5[
__has_feature
(enumerator_attributes) ? 1 : -1];
/external/llvm/include/llvm/Support/
Compiler.h
18
#ifndef
__has_feature
19
# define
__has_feature
(x) 0
macro
115
#if
__has_feature
(attribute_deprecated_with_message)
/external/clang/test/Analysis/
retain-release.mm
3
#if
__has_feature
(attribute_ns_returns_retained)
6
#if
__has_feature
(attribute_cf_returns_retained)
9
#if
__has_feature
(attribute_ns_returns_not_retained)
12
#if
__has_feature
(attribute_cf_returns_not_retained)
15
#if
__has_feature
(attribute_ns_consumes_self)
18
#if
__has_feature
(attribute_ns_consumed)
21
#if
__has_feature
(attribute_cf_consumed)
retain-release.m
6
#if
__has_feature
(attribute_ns_returns_retained)
9
#if
__has_feature
(attribute_cf_returns_retained)
12
#if
__has_feature
(attribute_ns_returns_not_retained)
15
#if
__has_feature
(attribute_cf_returns_not_retained)
18
#if
__has_feature
(attribute_ns_consumes_self)
21
#if
__has_feature
(attribute_ns_consumed)
24
#if
__has_feature
(attribute_cf_consumed)
[
all
...]
/external/clang/docs/
LanguageExtensions.html
138
<h3><a name="__has_feature_extension">
__has_feature
and __has_extension</a></h3>
142
name of a feature. <code>
__has_feature
</code> evaluates to 1 if the feature
151
#ifndef
__has_feature
// Optional of course.
152
#define
__has_feature
(x) 0 // Compatibility with non-clang compilers.
155
#define __has_extension
__has_feature
// Compatibility with pre-3.0 compilers.
159
#if
__has_feature
(cxx_rvalue_references)
173
<code>
__has_feature
</code> can also be used to test for support for
178
<code>__has_extension</code> is equivalent to <code>
__has_feature
</code>.</p>
391
<p>The <tt>
__has_feature
</tt> macro can be used to query if certain standard language features are
396
<p>Use <tt>
__has_feature
(cxx_exceptions)</tt> to determine if C++ exceptions have been enabled. Fo
[
all
...]
/external/clang/test/SemaObjC/
unused.m
42
#if
__has_feature
(attribute_objc_ivar_unused)
/external/clang/test/SemaCXX/
expression-traits.cpp
14
#if !
__has_feature
(cxx_static_assert)
Completed in 282 milliseconds
1
2