Lines Matching refs:getNull
8 int *getNull() { in getNull() function
214 int *casted = dynCastOrNull(getNull()); in testTrackNull()
224 ptr = getNull(); in testTrackNullVariable()
237 int *p = inlined ? &i : getNull(); in inlinedIsDifferent()
260 int *casted = getNull(); in testNoArguments()
311 derefArg(cond ? &x : getNull()); in ternaryArg()
322 derefArgCast((char*)((unsigned)cond ? &x : getNull())); in ternaryArgCast()
334 int *p = cond ? getNull() : getPtr(); in ternaryAssignment()
340 return cond ? &x : getNull(); in retNull()
352 return *(x ? getNull() : getPtr()); in testConditionalOperatorSuppress()
358 return *(x ? (x ? getNull() : getPtr()) : getPtr()); in testNestedConditionalOperatorSuppress()
371 return *(x ? getNull() : getPtr()); in testConditionalOperatorSuppressFloatCond()