Home | History | Annotate | Download | only in docs

Lines Matching full:__has_attribute

112 ``__has_attribute``
121 #ifndef __has_attribute // Optional of course.
122 #define __has_attribute(x) 0 // Compatibility with non-clang compilers.
126 #if __has_attribute(always_inline)
1096 Query for this feature with ``__has_attribute(objc_method_family)``.
1149 Query for these features with ``__has_attribute(ns_consumed)``,
1150 ``__has_attribute(ns_returns_retained)``, etc.
1817 You can detect support for these attributes with ``__has_attribute()``. For
1822 #if defined(__has_attribute)
1823 # if __has_attribute(argument_with_type_tag) && \
1824 __has_attribute(pointer_with_type_tag) && \
1825 __has_attribute(type_tag_for_datatype)