Searched defs:__has_feature (Results 1 - 25 of 25) sorted by relevance

/external/skia/tools/
H A DLsanSuppressions.cpp10 #if !defined(__has_feature)
11 #define __has_feature(x) 0 macro
14 #if __has_feature(address_sanitizer)
/external/v8/src/
H A Dmsan.h12 #ifndef __has_feature
13 # define __has_feature(x) 0 macro
16 #if __has_feature(memory_sanitizer) && !defined(MEMORY_SANITIZER)
/external/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h19 // GCC does not understand __has_feature.
20 #if !defined(__has_feature)
21 # define __has_feature(x) 0 macro
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dopen_memstream.cc10 #ifndef __has_feature
11 #define __has_feature(x) 0 macro
14 #if __has_feature(memory_sanitizer)
19 #elif __has_feature(address_sanitizer)
/external/clang/tools/libclang/
H A DIndex_Internal.h19 #ifndef __has_feature
20 #define __has_feature(x) 0 macro
23 #if __has_feature(blocks)
41 #endif // !__has_feature(blocks)
H A DCIndex.cpp4043 #ifndef __has_feature
4044 #define __has_feature(x) 0 macro
4046 #if __has_feature(blocks)
/external/google-benchmark/src/
H A Dinternal_macros.h6 #ifndef __has_feature
7 #define __has_feature(x) 0 macro
18 #if __has_feature(cxx_attributes)
/external/libcxx/utils/google-benchmark/src/
H A Dinternal_macros.h6 #ifndef __has_feature
7 #define __has_feature(x) 0 macro
18 #if __has_feature(cxx_attributes)
/external/libvpx/libvpx/vpx_ports/
H A Dmem.h50 #if !defined(__has_feature)
51 #define __has_feature(x) 0 macro
52 #endif // !defined(__has_feature)
54 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
58 #endif // __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
/external/llvm/include/llvm/Support/
H A Dtype_traits.h22 #ifndef __has_feature
24 #define __has_feature(x) 0 macro
35 #if (__has_feature(is_trivially_copyable) && defined(_LIBCPP_VERSION)) || \
40 #elif __has_feature(is_trivially_copyable)
105 #elif __has_feature(is_final) || LLVM_GNUC_PREREQ(4, 7, 0)
110 #undef __has_feature macro
H A DCompiler.h24 #ifndef __has_feature
25 # define __has_feature(x) 0 macro
83 #if __has_feature(cxx_rvalue_references) || LLVM_GNUC_PREREQ(4, 8, 1)
99 #if __has_feature(cxx_constexpr) || defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1900)
240 #if __has_feature(attribute_deprecated_with_message)
315 #elif __GNUC__ && !__has_feature(cxx_alignas) && !LLVM_GNUC_PREREQ(4, 8, 0)
376 #if __has_feature(memory_sanitizer)
387 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
398 #if __has_feature(thread_sanitizer) || defined(__SANITIZE_THREAD__)
465 #if __has_feature(cxx_thread_loca
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCompiler.h18 #ifndef __has_feature
19 # define __has_feature(x) 0 macro
115 #if __has_feature(attribute_deprecated_with_message)
/external/libcxx/test/support/
H A Dmsvc_stdlib_force_include.hpp46 #define __has_feature(X) _MSVC_HAS_FEATURE_ ## X macro
/external/skia/src/jumper/
H A DSkJumper.cpp30 // We'll use __has_feature(memory_sanitizer) to detect MSAN.
32 #if !defined(__has_feature)
33 #define __has_feature(x) 0 macro
99 #if __has_feature(memory_sanitizer)
151 #if __has_feature(memory_sanitizer)
269 #if __has_feature(memory_sanitizer)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_utils.h48 #if !defined(__has_feature)
49 #define __has_feature(x) 0 macro
53 # if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
/external/libunwind_llvm/src/
H A Dconfig.h21 #ifndef __has_feature
22 #define __has_feature(__x) 0 macro
24 #if !(__has_feature(cxx_static_assert)) && !defined(static_assert)
/external/skia/src/core/
H A DSkSharedMutex.cpp14 #if !defined(__has_feature)
15 #define __has_feature(x) 0 macro
18 #if __has_feature(thread_sanitizer)
/external/google-breakpad/src/common/mac/
H A DGTMDefines.h270 #ifndef __has_feature // Optional.
271 #define __has_feature(x) 0 // Compatibility with non-clang compilers. macro
275 #if __has_feature(attribute_ns_returns_retained)
283 #if __has_feature(attribute_ns_returns_not_retained)
291 #if __has_feature(attribute_cf_returns_retained)
299 #if __has_feature(attribute_cf_returns_not_retained)
307 #if __has_feature(attribute_ns_consumed)
315 #if __has_feature(attribute_cf_consumed)
323 #if __has_feature(attribute_ns_consumes_self)
364 #if __has_feature(objc_ar
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dplatform.h443 #ifndef __has_feature
444 # define __has_feature(x) 0 macro
508 #elif U_CPLUSPLUS_VERSION >= 11 || __has_feature(cxx_rvalue_references) \
527 #elif U_CPLUSPLUS_VERSION >= 11 || __has_feature(cxx_noexcept) || __has_extension(cxx_noexcept) \
542 (__has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough"))
/external/webrtc/webrtc/base/
H A Dthread.cc13 #ifndef __has_feature
14 #define __has_feature(x) 0 // Compatibility with non-clang or LLVM compilers. macro
15 #endif // __has_feature
29 #if !__has_feature(objc_arc) && (defined(WEBRTC_MAC))
54 #if !__has_feature(objc_arc) && (defined(WEBRTC_MAC))
64 #if __has_feature(objc_arc)
290 #if __has_feature(objc_arc)
464 #if __has_feature(objc_arc)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h50 // GCC does not understand __has_feature
51 #if !defined(__has_feature)
52 # define __has_feature(x) 0 macro
/external/eigen/Eigen/src/Core/util/
H A DMacros.h348 #ifndef __has_feature
349 # define __has_feature(x) 0 macro
369 (__has_feature(cxx_rvalue_references) || \
392 #if EIGEN_MAX_CPP_VER>=11 && ((__has_feature(cxx_lambdas) || (defined(__cplusplus) && __cplusplus >= 201103L)))
419 #elif EIGEN_MAX_CPP_VER>=14 && (__has_feature(cxx_relaxed_constexpr) || (defined(__cplusplus) && __cplusplus >= 201402L) || \
456 (__has_feature(cxx_noexcept) \
/external/skia/bench/
H A Dnanobench.cpp71 #if !defined(__has_feature)
72 #define __has_feature(x) 0 macro
76 #if defined(SK_DEBUG) || __has_feature(address_sanitizer)
/external/vulkan-validation-layers/libs/glm/detail/
H A Dsetup.hpp419 # elif(__has_feature(cxx_auto_type))
488 #ifndef __has_feature
489 # define __has_feature(x) 0 // Compatibility with non-clang compilers. macro
492 # define __has_extension __has_feature // Compatibility with pre-3.0 compilers.
504 __has_feature(cxx_static_assert))
517 __has_feature(cxx_constexpr))
524 __has_feature(cxx_generalized_initializers))
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h84 #ifndef __has_feature
85 #define __has_feature(x) 0 macro
89 #if (__has_feature(cxx_rvalue_references) || \
101 #if (__has_feature(cxx_explicit_conversions) || \

Completed in 597 milliseconds