Lines Matching refs:exceptionLabel

668 	   #define __Require(assertion, exceptionLabel)                               \  argument
673 goto exceptionLabel; \
677 #define __Require(assertion, exceptionLabel) \ argument
683 #assertion, #exceptionLabel, 0, __FILE__, __LINE__, 0); \
684 goto exceptionLabel; \
691 #define __nRequire(assertion, exceptionLabel) __Require(!(assertion), exceptionLabel) argument
719 #define __Require_Action(assertion, exceptionLabel, action) \ argument
727 goto exceptionLabel; \
731 #define __Require_Action(assertion, exceptionLabel, action) \ argument
738 #assertion, #exceptionLabel, 0, __FILE__, __LINE__, 0); \
742 goto exceptionLabel; \
749 #define __nRequire_Action(assertion, exceptionLabel, action) \ argument
750 __Require_Action(!(assertion), exceptionLabel, action)
768 #define __Require_Quiet(assertion, exceptionLabel) \ argument
773 goto exceptionLabel; \
779 #define __nRequire_Quiet(assertion, exceptionLabel) __Require_Quiet(!(assertion), exceptionLabel) argument
801 #define __Require_Action_Quiet(assertion, exceptionLabel, action) \ argument
809 goto exceptionLabel; \
815 #define __nRequire_Action_Quiet(assertion, exceptionLabel, action) \ argument
816 __Require_Action_Quiet(!(assertion), exceptionLabel, action)
842 #define __Require_String(assertion, exceptionLabel, message) \ argument
847 goto exceptionLabel; \
851 #define __Require_String(assertion, exceptionLabel, message) \ argument
858 #assertion, #exceptionLabel, message, __FILE__, __LINE__, 0); \
859 goto exceptionLabel; \
866 #define __nRequire_String(assertion, exceptionLabel, string) \ argument
867 __Require_String(!(assertion), exceptionLabel, string)
898 #define __Require_Action_String(assertion, exceptionLabel, action, message) \ argument
906 goto exceptionLabel; \
910 #define __Require_Action_String(assertion, exceptionLabel, action, message) \ argument
917 #assertion, #exceptionLabel, message, __FILE__, __LINE__, 0); \
921 goto exceptionLabel; \
928 #define __nRequire_Action_String(assertion, exceptionLabel, action, message) \ argument
929 __Require_Action_String(!(assertion), exceptionLabel, action, message)
952 #define __Require_noErr(errorCode, exceptionLabel) \ argument
957 goto exceptionLabel; \
961 #define __Require_noErr(errorCode, exceptionLabel) \ argument
969 #errorCode " == 0 ", #exceptionLabel, 0, __FILE__, __LINE__, evalOnceErrorCode); \
970 goto exceptionLabel; \
1001 #define __Require_noErr_Action(errorCode, exceptionLabel, action) \ argument
1009 goto exceptionLabel; \
1013 #define __Require_noErr_Action(errorCode, exceptionLabel, action) \ argument
1021 #errorCode " == 0 ", #exceptionLabel, 0, __FILE__, __LINE__, evalOnceErrorCode); \
1025 goto exceptionLabel; \
1047 #define __Require_noErr_Quiet(errorCode, exceptionLabel) \ argument
1052 goto exceptionLabel; \
1077 #define __Require_noErr_Action_Quiet(errorCode, exceptionLabel, action) \ argument
1085 goto exceptionLabel; \
1113 #define __Require_noErr_String(errorCode, exceptionLabel, message) \ argument
1118 goto exceptionLabel; \
1122 #define __Require_noErr_String(errorCode, exceptionLabel, message) \ argument
1130 #errorCode " == 0 ", #exceptionLabel, message, __FILE__, __LINE__, evalOnceErrorCode); \
1131 goto exceptionLabel; \
1165 #define __Require_noErr_Action_String(errorCode, exceptionLabel, action, message) \ argument
1173 goto exceptionLabel; \
1177 #define __Require_noErr_Action_String(errorCode, exceptionLabel, action, message) \ argument
1185 #errorCode " == 0 ", #exceptionLabel, message, __FILE__, __LINE__, evalOnceErrorCode); \
1189 goto exceptionLabel; \
1307 #define require(assertion, exceptionLabel) __Require(assertion, exceptionLabel) argument
1311 …#define require_action(assertion, exceptionLabel, action) __Require_Action(assertion, exceptionLa… argument
1315 …e require_action_string(assertion, exceptionLabel, action, message) __Require_Action_String(asser… argument
1319 #define require_noerr(errorCode, exceptionLabel) __Require_noErr(errorCode, exceptionLabel) argument
1323 …#define require_noerr_action(errorCode, exceptionLabel, action) __Require_noErr_Action(errorCode,… argument
1327 …_noerr_action_string(errorCode, exceptionLabel, action, message) __Require_noErr_Action_String(er… argument
1331 …define require_noerr_string(errorCode, exceptionLabel, message) __Require_noErr_String(errorCode,… argument
1335 …#define require_string(assertion, exceptionLabel, message) __Require_String(assertion, exceptionL… argument
1371 #define nrequire(assertion, exceptionLabel) __nRequire(assertion, exceptionLabel) argument
1375 …#define nrequire_action(assertion, exceptionLabel, action) __nRequire_Action(assertion, exception… argument
1379 …efine nrequire_action_quiet(assertion, exceptionLabel, action) __nRequire_Action_Quiet(assertion,… argument
1383 …nrequire_action_string(assertion, exceptionLabel, action, message) __nRequire_Action_String(asser… argument
1387 #define nrequire_quiet(assertion, exceptionLabel) __nRequire_Quiet(assertion, exceptionLabel) argument
1391 …#define nrequire_string(assertion, exceptionLabel, string) __nRequire_String(assertion, exception… argument
1403 …#define require_action_quiet(assertion, exceptionLabel, action) __Require_Action_Quiet(assertion,… argument
1407 …equire_noerr_action_quiet(errorCode, exceptionLabel, action) __Require_noErr_Action_Quiet(errorCo… argument
1411 …#define require_noerr_quiet(errorCode, exceptionLabel) __Require_noErr_Quiet(errorCode, exception… argument
1415 #define require_quiet(assertion, exceptionLabel) __Require_Quiet(assertion, exceptionLabel) argument