Home
last modified time | relevance | path

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

/freebsd-12.1/include/
H A Dstdio.h135 int (* _Nullable _close)(void *); member
136 int (* _Nullable _read)(void *, char *, int); member
137 fpos_t (* _Nullable _seek)(void *, fpos_t, int); member
138 int (* _Nullable _write)(void *, const char *, int); member
407 int (* _Nullable)(void *, char *, int),
408 int (* _Nullable)(void *, const char *, int),
409 fpos_t (* _Nullable)(void *, fpos_t, int),
410 int (* _Nullable)(void *));
H A Dsignal.h112 void (* _Nullable sigset(int, void (* _Nullable)(int)))(int); variable
H A Derr.h65 void err_set_exit(void (* _Nullable)(int));
/freebsd-12.1/sys/sys/
H A Dcdefs.h794 #define _Nullable macro
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttrDocs.td2857 …nullability type qualifiers indicate which pointer types can be null (``_Nullable``) or cannot be …
2859 …iers express whether a value of a given pointer type can be null (the ``_Nullable`` qualifier), do…
2867 int fetch_or_zero(int * _Nullable ptr) {
2872 const char *join_strings(const char * _Nonnull * _Nullable strings, unsigned n);
2902 The ``_Nullable`` nullability qualifier indicates that a value of the ``_Nullable`` pointer type ca…
2906 int fetch_or_zero(int * _Nullable ptr);
2915 …d`` nullability qualifier indicates that neither the ``_Nonnull`` nor ``_Nullable`` qualifiers mak…
H A DTokenKinds.def616 KEYWORD(_Nullable , KEYALL)
H A DAttr.td1560 let Spellings = [Keyword<"_Nullable">];
H A DDiagnosticSemaKinds.td9313 "type specifier (_Nonnull, _Nullable, or _Null_unspecified)">,
9317 "_Nullable, or _Null_unspecified)">,
9320 "insert '%select{_Nonnull|_Nullable|_Null_unspecified}0' if the "