Lines Matching full:void
3 void I( void (^)(void));
4 void (^noop)(void);
6 void nothing();
9 typedef void (^T) (void);
11 void takeblock(T);
26 void test2() {
49 void (^test3())(void) {
53 void test4() {
54 void (^noop)(void) = ^{};
55 void (*noop2)() = 0;
58 void myfunc(int (^block)(int)) {}
60 void myfunc3(const int *x);
62 void test5() {
71 void *X;
73 void test_arguments() {
83 void (^global_block)(void) = ^{ printf("global x is %d\n", global_x); };
85 typedef void (^void_block_t)(void);
89 static const void_block_t myBlock2 = ^ void(void) { };