Home
last modified time | relevance | path

Searched refs:_Nullable (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/include/
H A Dstdio.h134 int (* _Nullable _close)(void *); member
135 int (* _Nullable _read)(void *, char *, int); member
136 fpos_t (* _Nullable _seek)(void *, fpos_t, int); member
137 int (* _Nullable _write)(void *, const char *, int); member
411 int (* _Nullable)(void *, char *, int),
412 int (* _Nullable)(void *, const char *, int),
413 fpos_t (* _Nullable)(void *, fpos_t, int),
414 int (* _Nullable)(void *));
H A Dsignal.h111 void (* _Nullable sigset(int, void (* _Nullable)(int)))(int); variable
H A Derr.h64 void err_set_exit(void (* _Nullable)(int));
/freebsd-14.2/tools/build/cross-build/include/common/sys/
H A Dcdefs.h201 #define _Nullable macro
/freebsd-14.2/sys/sys/
H A Dcdefs.h789 #define _Nullable macro
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def691 KEYWORD(_Nullable , KEYALL)
H A DAttrDocs.td4054 qualifiers indicate which pointer types can be null (``_Nullable``) or cannot
4058 type can be null (the ``_Nullable`` qualifier), doesn't have a defined meaning
4073 int fetch_or_zero(int * _Nullable ptr) {
4078 const char *join_strings(const char * _Nonnull * _Nullable strings, unsigned n);
4117 The ``_Nullable`` nullability qualifier indicates that a value of the
4118 ``_Nullable`` pointer type can be null. For example, given:
4122 int fetch_or_zero(int * _Nullable ptr);
4132 ``_Nullable_result`` pointer can be ``nil``, just like ``_Nullable``. Where this
4133 attribute differs from ``_Nullable`` is when it's used on a parameter to a
4145 type. Otherwise, if ``result`` was annotated with ``_Nullable``, the Swift
[all …]
H A DAttr.td2153 let Spellings = [CustomKeyword<"_Nullable">];
H A DDiagnosticSemaKinds.td11727 "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">,
11731 "_Nullable, or _Null_unspecified)">,
11734 "insert '%select{_Nonnull|_Nullable|_Null_unspecified}0' if the "