Lines Matching refs:nonnull
15 …'p' gets implicitly converted into nonnull pointer, for example, we are passing it to a function t…
29 2) nonnull
32 - Dereferencing a nonnull, or sending message to it is ok.
33 - Converting nonnull to nullable is Ok.
34 - When there is an explicit cast from nonnull to nullable I will trust the cast (it is probable the…
54 …- Even though the method might return a nonnull pointer, when it was sent to a nullable pointer th…
56 - Sending a message to a unspecified or nonnull pointer
63 …tly inside an inlined body. For example, consider these conversions from nonnull to nullable in pr…
73 …t view of the nullability of the same symbol). So the symbol will remain nonnull to avoid false po…
88 …gion a qualifier information would be attached which is either nullable, nonnull or null unspecifi…
89 …nter is known to be non null, the checker treat it as a same way as a pointer annotated as nonnull.
90 - When there is an explicit cast from a null unspecified to either nonnull or nullable I will trust…