Searched refs:ComparatorBlock (Results 1 – 1 of 1) sorted by relevance
58 typedef int (^ComparatorBlock)(int a, int b); typedef59 ComparatorBlock test_return_block(void) { in test_return_block()61 ComparatorBlock b = ^int(int a, int b){ return a > b; }; in test_return_block()65 ComparatorBlock test_return_block_with_capture(int x) { in test_return_block_with_capture()67 ComparatorBlock b = ^int(int a, int b){ return a > b + x; }; in test_return_block_with_capture()71 ComparatorBlock test_return_block_neg_aux(void);72 ComparatorBlock test_return_block_neg(void) { in test_return_block_neg()73 ComparatorBlock b = test_return_block_neg_aux(); in test_return_block_neg()