OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__has_include
(Results
1 - 16
of
16
) sorted by null
/external/clang/test/Preprocessor/
has_include.c
3
// Try different path permutations of
__has_include
with existing file.
4
#if
__has_include
("stdint.h")
6
#error "
__has_include
failed (1)."
9
#if
__has_include
(<stdint.h>)
11
#error "
__has_include
failed (2)."
15
#if !
__has_include
("stdint.h")
16
#error "
__has_include
failed (5)."
20
#if
__has_include
("stdint.h") &&
__has_include
("stddef.h")
22
#error "
__has_include
failed (6).
[
all
...]
/external/clang/test/Driver/
nostdlibinc.c
4
#if !
__has_include
("stddef.h")
8
#if
__has_include
("stdlib.h")
/external/clang/INPUTS/
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>)
/ndk/sources/cxx-stl/llvm-libc++/src/
typeinfo.cpp
11
#ifndef
__has_include
12
#define
__has_include
(inc) 0
macro
17
#elif defined(LIBCXXRT) ||
__has_include
(<cxxabi.h>)
new.cpp
14
#ifndef
__has_include
15
#define
__has_include
(inc) 0
macro
28
#if defined(LIBCXXRT) ||
__has_include
(<cxxabi.h>)
30
#endif //
__has_include
(<cxxabi.h>)
exception.cpp
13
#ifndef
__has_include
14
#define
__has_include
(inc) 0
macro
30
#elif defined(LIBCXXRT) ||
__has_include
(<cxxabi.h>)
36
#else //
__has_include
(<cxxabi.h>)
39
#endif //
__has_include
(<cxxabi.h>)
stdexcept.cpp
19
#ifndef
__has_include
20
#define
__has_include
(inc) 0
macro
25
#elif defined(LIBCXXRT) ||
__has_include
(<cxxabi.h>)
/external/clang/test/Parser/
cxx11-user-defined-literals.cpp
15
#elif
__has_include
("foo"_bar) // expected-error {{expected "FILENAME" or <FILENAME>}}
/external/clang/docs/
LanguageExtensions.rst
141
:ref:`langext-
__has_include
` and :ref:`langext-__has_include_next` macros allow
146
.. _langext-
__has_include
:
148
``
__has_include
``
158
#if
__has_include
("myinclude.h") &&
__has_include
(<stdint.h>)
163
#if defined(
__has_include
) &&
__has_include
("myinclude.h")
167
To test for this feature, use ``#if defined(
__has_include
)``.
175
name of an include file. It is like ``
__has_include
`` except that it looks for
[
all
...]
/external/clang/lib/Lex/
PPMacroExpansion.cpp
201
Ident__has_include = RegisterBuiltinMacro(*this, "
__has_include
");
[
all
...]
/external/llvm/autoconf/
configure.ac
82
#if
__has_include
(<cxxabi.h>)
85
#if
__has_include
(<unwind.h>)
[
all
...]
/external/clang/include/clang/Lex/
Preprocessor.h
122
IdentifierInfo *Ident__has_include; //
__has_include
[
all
...]
/external/llvm/
configure
[
all
...]
/prebuilts/clang/linux-x86/3.1/
clang
clang++
/prebuilts/sdk/tools/linux/
libclang.so
Completed in 1085 milliseconds