Home
last modified time | relevance | path

Searched refs:fPtr (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.m72 if (fPtr)
75 Foo *mem = [fPtr getFooPtr];
81 fPtr = retInputOrNil(fPtr);
83 Foo *mem = [fPtr getFooPtr];
89 fPtr = retInputOrNil(fPtr);
97 fPtr = retInputOrNil(fPtr);
101 Foo *mem = [fPtr getFooPtr];
109 fPtr = retNil();
113 Foo *mem = [fPtr getFooPtr];
121 idc(fPtr);
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dpointer-to-member.cpp117 int (*fPtr)(int) = &A::staticMemberFunction; in testPointerToStaticMemberCall() local
118 if (fPtr != 0) { // no-crash in testPointerToStaticMemberCall()
119 clang_analyzer_eval(fPtr(2) == 3); // expected-warning{{TRUE}} in testPointerToStaticMemberCall()
H A Dstring.c889 void (*fPtr)(union argument *) = (void (*)(union argument *))function_pointer_cast_helper; in strcmp_union_function_pointer_cast() local
891 fPtr(&a); in strcmp_union_function_pointer_cast()
H A Dmalloc.c1337 int fPtr(unsigned cond, int x) { in fPtr() function
/llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/iterator.cust/iterator.cust.swap/
H A Diter_swap.pass.cpp161 B *fPtr = &f; in test() local
162 std::ranges::iter_swap(ePtr, fPtr); in test()