Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:void

6     void (^block)(int);
10 int test1(void)
18 template <typename T, typename T1> void foo(T t, T1 r)
27 void (^block2)() = ^{};
30 void test2(void)
42 void (^testing)(int) = ^(int bar) { printf("bar is %d\n", bar); };
47 template <typename T> void gorf(T t)
53 void test(void)