Home
last modified time | relevance | path

Searched refs:__has_extension (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/config/compiler/
H A Dxlcpp.hpp22 #ifndef __has_extension
23 #define __has_extension __has_feature macro
199 #if !(__has_feature(__cxx_binary_literals__) || __has_extension(__cxx_binary_literals__))
H A Dclang.hpp22 #ifndef __has_extension
23 #define __has_extension __has_feature macro
243 #if !(__has_feature(__cxx_binary_literals__) || __has_extension(__cxx_binary_literals__))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/smart_ptr/detail/
H A Dsp_counted_base.hpp23 #if !defined( __c2__ ) && defined( __clang__ ) && defined( __has_extension )
24 # if __has_extension( __c_atomic__ )
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dcvdef.h100 # ifndef __has_extension
101 # define __has_extension __has_feature /* compatibility, for older versions of clang */ macro
103 # if __has_extension(cxx_static_assert)
105 # elif __has_extension(c_static_assert)
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dcvdef.h100 # ifndef __has_extension
101 # define __has_extension __has_feature /* compatibility, for older versions of clang */ macro
103 # if __has_extension(cxx_static_assert)
105 # elif __has_extension(c_static_assert)
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dcvdef.h100 # ifndef __has_extension
101 # define __has_extension __has_feature /* compatibility, for older versions of clang */ macro
103 # if __has_extension(cxx_static_assert)
105 # elif __has_extension(c_static_assert)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dpngconf.h357 # ifdef __has_extension
358 # if __has_extension(attribute_unavailable_with_message)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/
H A Dpngconf.h357 # ifdef __has_extension
358 # if __has_extension(attribute_unavailable_with_message)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/
H A Dpngconf.h357 # ifdef __has_extension
358 # if __has_extension(attribute_unavailable_with_message)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dpngconf.h357 # ifdef __has_extension
358 # if __has_extension(attribute_unavailable_with_message)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dcdefs.h95 #if defined __clang__ && defined __has_extension
96 # define __glibc_clang_has_extension(ext) __has_extension (ext)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Dcdefs.h95 #if defined __clang__ && defined __has_extension
96 # define __glibc_clang_has_extension(ext) __has_extension (ext)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A D__config140 #ifndef __has_extension
141 #define __has_extension(__x) 0
406 # if (__has_extension(cxx_nullptr) || __has_keyword(__nullptr)) && defined(_LIBCPP_ABI_ALWAYS_USE_…
860 # if __has_extension(c_static_assert)
871 # endif // __has_extension(c_static_assert)
1205 #if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic)
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A D__config140 #ifndef __has_extension
141 #define __has_extension(__x) 0
406 # if (__has_extension(cxx_nullptr) || __has_keyword(__nullptr)) && defined(_LIBCPP_ABI_ALWAYS_USE_…
860 # if __has_extension(c_static_assert)
871 # endif // __has_extension(c_static_assert)
1205 #if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0002-boost-Backport-clang-support.patch41 +// When compiling with clang before __has_extension was defined,
42 +// even if one writes 'defined(__has_extension) && __has_extension(xxx)',
45 +#ifndef __has_extension
46 +#define __has_extension __has_feature
231 +#if !(__has_feature(__cxx_binary_literals__) || __has_extension(__cxx_binary_literals__))