HomeSort by relevance Sort by last modified time
    Searched defs:fnptr (Results 1 - 4 of 4) sorted by null

  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 5 typedef void (*fnptr)(); typedef
6 fnptr fp = 0;
8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
reinterpret-cast.cpp 7 typedef void (*fnptr)(); typedef
41 fnptr fnp = reinterpret_cast<fnptr>(i);
53 (void)reinterpret_cast<fnptr*>(deep);
76 fnptr fp = 0;
79 (void)reinterpret_cast<fnptr>(vp);
cstyle-cast.cpp 170 typedef void (*fnptr)(); typedef
178 fnptr fnp = (fnptr)(l);
190 (void)(fnptr*)(deep);
207 fnptr fp = 0;
210 (void)(fnptr)(vp);
functional-cast.cpp 231 typedef void (*fnptr)(); typedef
241 fnptr fnp = fnptr(l);
256 typedef fnptr fnptrp;
278 fnptr fp = 0;
282 (void)fnptr(vp);

Completed in 4667 milliseconds