Lines Matching full:context
8 #define CONTEXT __attribute__((swift_context)) macro
32 void error_result_bad_type(CONTEXT void *context, ERROR_RESULT int error) SWIFTCALL; // expected-er…
33 void error_result_bad_type2(CONTEXT void *context, ERROR_RESULT int *error) SWIFTCALL; // expected-…
34 void error_result_okay(int a, int b, CONTEXT void *context, ERROR_RESULT void **error) SWIFTCALL;
35 void error_result_okay2(CONTEXT void *context, ERROR_RESULT void **error, void *selfType, char **se…
37 void context_nonswift(CONTEXT void *context); // expected-error {{'swift_context' parameter can onl…
38 void context_bad_type(CONTEXT int context) SWIFTCALL; // expected-error {{'swift_context' parameter…
39 void context_okay(CONTEXT void *context) SWIFTCALL;
40 void context_okay2(CONTEXT void *context, void *selfType, char **selfWitnessTable) SWIFTCALL;
41 void context_okay_async(CONTEXT void *context) SWIFTASYNCCALL;
42 void context_okay2_async(CONTEXT void *context, void *selfType, char **selfWitnessTable) SWIFTASYNC…
44 void async_context_okay_for_now(ASYNC_CONTEXT void *context);
45 void async_context_bad_type(ASYNC_CONTEXT int context) SWIFTCALL; // expected-error {{'swift_async_…
46 void async_context_bad_pos(int context) ASYNC_CONTEXT SWIFTCALL; // expected-warning {{'swift_async…
47 void async_context_bad_args(__attribute__((swift_async_context(1))) void *context) SWIFTCALL; // ex…
48 void async_context_okay(ASYNC_CONTEXT void *context) SWIFTCALL;
49 void async_context_okay2(ASYNC_CONTEXT void *context, void *selfType, char **selfWitnessTable) SWIF…