Home
last modified time | relevance | path

Searched refs:voidVoid (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/test/BlocksRuntime/
Dbyrefcopyint.c33 typedef void (^voidVoid)(void); typedef
35 voidVoid dummy;
37 void callVoidVoid(voidVoid closure) { in callVoidVoid()
42 voidVoid testRoutine(const char *whoami) { in testRoutine()
50 voidVoid copy = Block_copy(dummy); in testRoutine()
57 voidVoid array[100]; in main()
Drecursive-block.c29 typedef void (^voidVoid)(void); typedef
31 voidVoid testFunction() { in testFunction()
33 __block voidVoid inner = ^{ doSomething(i); }; in testFunction()
35 /*__block*/ voidVoid outer = ^{ in testFunction()
40 voidVoid result = Block_copy(outer); in testFunction()
47 voidVoid block = testFunction(); in main()