/external/clang/test/Preprocessor/ |
D | has_include.c | 4 #if __has_include("stdint.h") 9 #if __has_include(<stdint.h>) 15 #if !__has_include("stdint.h") 20 #if __has_include("stdint.h") && __has_include("stddef.h") 26 #if __has_include("blahblah.h") 31 #if !defined(__has_include) 52 #if __has_include_next("stdint.h") && __has_include("stddef.h") // expected-warning {{#include_next… 68 #define MACRO1 __has_include(<stdint.h>) 78 #if !__has_include MACRO2 82 #if __has_include MACRO3 [all …]
|
/external/clang/INPUTS/ |
D | all-std-headers.cpp | 47 #if __has_include(<strstream>) 57 #if __has_include(<atomic>) 61 #if __has_include(<codecvt>) 66 #if __has_include(<future>) 74 #if __has_include(<scoped_allocator>) 81 #if __has_include(<typeindex>)
|
/external/clang/test/Frontend/ |
D | rewrite-includes-invalid-hasinclude.c | 3 #if __has_include bar.h 6 #if __has_include(bar.h) 9 #if __has_include(<bar.h)
|
/external/compiler-rt/lib/builtins/ |
D | atomic_signal_fence.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
D | atomic_thread_fence.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
D | atomic_flag_clear.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
D | atomic_flag_test_and_set.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
D | atomic_flag_clear_explicit.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
D | atomic_flag_test_and_set_explicit.c | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 19 #if __has_include(<stdatomic.h>)
|
/external/libcxx/src/ |
D | typeinfo.cpp | 11 #ifndef __has_include 12 #define __has_include(inc) 0 macro 17 #elif defined(LIBCXXRT) || __has_include(<cxxabi.h>)
|
D | stdexcept.cpp | 16 #ifndef __has_include 17 #define __has_include(inc) 0 macro 21 #if __has_include(<cxxabi.h>) || defined(__APPLE_) || defined(LIBCXXRT)
|
D | new.cpp | 16 #ifndef __has_include 17 #define __has_include(inc) 0 macro 30 #if defined(LIBCXXRT) || __has_include(<cxxabi.h>)
|
D | exception.cpp | 15 #ifndef __has_include 16 #define __has_include(inc) 0 macro 32 #elif defined(LIBCXXRT) || defined(LIBCXX_BUILDING_LIBCXXABI) || __has_include(<cxxabi.h>)
|
/external/clang/test/Driver/ |
D | nostdlibinc.c | 4 #if !__has_include("stddef.h") 8 #if __has_include("stdlib.h")
|
/external/clang/test/Frontend/Inputs/ |
D | rewrite-includes8.h | 2 #elif __has_include(<rewrite-includes8.hfail>) 4 #if !__has_include("rewrite-includes8.h")
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerDFSan.h | 16 #if defined(__has_include) 17 # if __has_include(<sanitizer/dfsan_interface.h>)
|
D | FuzzerLoop.cpp | 15 #if defined(__has_include) 16 # if __has_include(<sanitizer/coverage_interface.h>)
|
/external/libcxxabi/src/ |
D | abort_message.cpp | 28 # if defined(__has_include) && __has_include(<CrashReporterClient.h>)
|
/external/clang/test/Analysis/ |
D | padding_c.c | 3 #if __has_include(<stdalign.h>) 7 #if __has_include(<stdalign.h>) || defined(__cplusplus)
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | config.hpp | 40 # if __has_include(<__config>)
|
/external/clang/test/Parser/ |
D | cxx11-user-defined-literals.cpp | 15 #elif __has_include("foo"_bar) // expected-error {{expected "FILENAME" or <FILENAME>}}
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_mac.cc | 39 #if defined(__has_include) && __has_include(<os/trace.h>)
|
/external/clang/test/SemaCXX/ |
D | typo-correction.cpp | 641 int foo = __has_include(42); // expected-error {{use of undeclared identifier '__has_include'; did …
|
/external/clang/docs/ |
D | LanguageExtensions.rst | 219 :ref:`langext-__has_include` and :ref:`langext-__has_include_next` macros allow 224 .. _langext-__has_include: 226 ``__has_include`` 236 #if __has_include("myinclude.h") && __has_include(<stdint.h>) 240 To test for this feature, use ``#if defined(__has_include)``: 245 #if defined(__has_include) 246 #if __has_include("myinclude.h") 257 name of an include file. It is like ``__has_include`` except that it looks for argument 900 ``__has_include(<stdatomic.h>)`` to determine if C11's ``<stdatomic.h>`` header
|
/external/llvm/autoconf/ |
D | configure.ac | 101 #if __has_include (<cxxabi.h>) 104 #if __has_include (<unwind.h>)
|