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 169 typedef void (*fnptr)(); typedef
177 fnptr fnp = (fnptr)(l);
189 (void)(fnptr*)(deep);
206 fnptr fp = 0;
209 (void)(fnptr)(vp);
functional-cast.cpp 230 typedef void (*fnptr)(); typedef
240 fnptr fnp = fnptr(l);
255 typedef fnptr fnptrp;
277 fnptr fp = 0;
281 (void)fnptr(vp);

Completed in 129 milliseconds