Home
last modified time | relevance | path

Searched refs:accepts_nonnull_1 (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/Sema/
Dnullability.c92 void accepts_nonnull_1(_Nonnull int *ptr);
97accepts_nonnull_1(0); // expected-warning{{null passed to a callee that requires a non-null argume… in test_accepts_nonnull_null_pointer_literal()
117accepts_nonnull_1(ptr); // expected-warning{{implicit conversion from nullable pointer 'int * _Nul… in nullable_to_nonnull()
/external/clang/test/SemaCXX/
Dnullability.cpp50 void (*accepts_nonnull_1)(_Nonnull int *ptr); variable
51 void (*& accepts_nonnull_2)(_Nonnull int *ptr) = accepts_nonnull_1;
57accepts_nonnull_1(0); // expected-warning{{null passed to a callee that requires a non-null argume… in test_accepts_nonnull_null_pointer_literal()