Lines Matching refs:casted
30 int *casted = dynCastToInt(p); in testDynCast() local
31 *casted = 1; in testDynCast()
38 int *casted = dynCastOrNull(p); in testDynCastOrNull() local
39 *casted = 1; in testDynCastOrNull()
47 int *casted; in testBranch() local
52 casted = dynCastToInt(p); in testBranch()
56 casted = (int *)p; in testBranch()
59 *casted = 1; // expected-warning {{Dereference of null pointer}} in testBranch()
63 int *casted; in testBranchReversed() local
70 casted = (int *)p; in testBranchReversed()
72 casted = dynCastToInt(p); in testBranchReversed()
75 *casted = 1; // expected-warning {{Dereference of null pointer}} in testBranchReversed()
79 int *casted = 0; in testMultipleStore() local
80 casted = dynCastToInt(p); in testMultipleStore()
81 *casted = 1; in testMultipleStore()
188 int *casted = dynCastOrNull(0); in testDynCastOrNullOfNull() local
189 *casted = 1; in testDynCastOrNullOfNull()
197 int *casted = dynCastToInt(0); in testDynCastOfNull() local
198 *casted = 1; in testDynCastOfNull()
213 int *casted = lookUpInt(0); in testZeroIsNotNull() local
214 *casted = 1; in testZeroIsNotNull()
222 int *casted = dynCastOrNull(getNull()); in testTrackNull() local
223 *casted = 1; in testTrackNull()
233 int *casted = dynCastOrNull(ptr); in testTrackNullVariable() local
234 *casted = 1; in testTrackNullVariable()
268 int *casted = getNull(); in testNoArguments() local
269 *casted = 1; in testNoArguments()
288 int *casted = getNullIfNonNull(input); in testKnownPath() local
289 *casted = 1; in testKnownPath()
304 int *casted = alwaysReturnNull(input); in testAlwaysReturnNull() local
305 *casted = 1; in testAlwaysReturnNull()