• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebKit-7600.1.25/mac/WebView/

Lines Matching refs:selector

89 static inline id CallDelegate(WebView *self, id delegate, SEL selector)
92 if (!delegate || ![delegate respondsToSelector:selector])
95 return wtfObjcMsgSend<id>(delegate, selector, self);
97 ReportDiscardedDelegateException(selector, exception);
101 if (!delegate || ![delegate respondsToSelector:selector])
104 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
116 ReportDiscardedDelegateException(selector, exception);
122 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object)
125 if (!delegate || ![delegate respondsToSelector:selector])
128 return wtfObjcMsgSend<id>(delegate, selector, self, object);
130 ReportDiscardedDelegateException(selector, exception);
134 if (!delegate || ![delegate respondsToSelector:selector])
137 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
150 ReportDiscardedDelegateException(selector, exception);
156 static inline id CallDelegate(WebView *self, id delegate, SEL selector, NSRect rect)
159 if (!delegate || ![delegate respondsToSelector:selector])
162 return wtfObjcMsgSend<id>(delegate, selector, self, rect);
164 ReportDiscardedDelegateException(selector, exception);
168 if (!delegate || ![delegate respondsToSelector:selector])
171 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
184 ReportDiscardedDelegateException(selector, exception);
190 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2)
193 if (!delegate || ![delegate respondsToSelector:selector])
196 return wtfObjcMsgSend<id>(delegate, selector, self, object1, object2);
198 ReportDiscardedDelegateException(selector, exception);
202 if (!delegate || ![delegate respondsToSelector:selector])
205 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
219 ReportDiscardedDelegateException(selector, exception);
225 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object, BOOL boolean)
228 if (!delegate || ![delegate respondsToSelector:selector])
231 return wtfObjcMsgSend<id>(delegate, selector, self, object, boolean);
233 ReportDiscardedDelegateException(selector, exception);
237 if (!delegate || ![delegate respondsToSelector:selector])
240 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
254 ReportDiscardedDelegateException(selector, exception);
260 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
263 if (!delegate || ![delegate respondsToSelector:selector])
266 return wtfObjcMsgSend<id>(delegate, selector, self, object1, object2, object3);
268 ReportDiscardedDelegateException(selector, exception);
272 if (!delegate || ![delegate respondsToSelector:selector])
275 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
290 ReportDiscardedDelegateException(selector, exception);
296 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object, NSUInteger integer)
299 if (!delegate || ![delegate respondsToSelector:selector])
302 return wtfObjcMsgSend<id>(delegate, selector, self, object, integer);
304 ReportDiscardedDelegateException(selector, exception);
308 if (!delegate || ![delegate respondsToSelector:selector])
311 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
325 ReportDiscardedDelegateException(selector, exception);
331 static inline float CallDelegateReturningFloat(WebView *self, id delegate, SEL selector)
334 if (!delegate || ![delegate respondsToSelector:selector])
337 return objc_msgSend_float_return(delegate, selector, self);
339 ReportDiscardedDelegateException(selector, exception);
343 if (!delegate || ![delegate respondsToSelector:selector])
346 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
355 ReportDiscardedDelegateException(selector, exception);
361 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector)
364 if (!delegate || ![delegate respondsToSelector:selector])
367 return wtfObjcMsgSend<BOOL>(delegate, selector, self);
369 ReportDiscardedDelegateException(selector, exception);
373 if (!delegate || ![delegate respondsToSelector:selector])
376 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
385 ReportDiscardedDelegateException(selector, exception);
391 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object)
394 if (!delegate || ![delegate respondsToSelector:selector])
397 return wtfObjcMsgSend<BOOL>(delegate, selector, self, object);
399 ReportDiscardedDelegateException(selector, exception);
403 if (!delegate || ![delegate respondsToSelector:selector])
406 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
416 ReportDiscardedDelegateException(selector, exception);
422 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object, BOOL boolean)
425 if (!delegate || ![delegate respondsToSelector:selector])
428 return wtfObjcMsgSend<BOOL>(delegate, selector, self, object, boolean);
430 ReportDiscardedDelegateException(selector, exception);
434 if (!delegate || ![delegate respondsToSelector:selector])
437 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
448 ReportDiscardedDelegateException(selector, exception);
454 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object, BOOL boolean, id object2)
456 if (!delegate || ![delegate respondsToSelector:selector])
459 return wtfObjcMsgSend<BOOL>(delegate, selector, self, object, boolean, object2);
461 ReportDiscardedDelegateException(selector, exception);
466 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object1, id object2)
469 if (!delegate || ![delegate respondsToSelector:selector])
472 return wtfObjcMsgSend<BOOL>(delegate, selector, self, object1, object2);
474 ReportDiscardedDelegateException(selector, exception);
478 if (!delegate || ![delegate respondsToSelector:selector])
481 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
492 ReportDiscardedDelegateException(selector, exception);
499 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object1, id object2, BOOL boolean)
501 if (!delegate || ![delegate respondsToSelector:selector])
504 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
516 ReportDiscardedDelegateException(selector, exception);
522 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector)
528 return wtfCallIMP<id>(implementation, delegate, selector, self);
530 ReportDiscardedDelegateException(selector, exception);
537 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
549 ReportDiscardedDelegateException(selector, exception);
555 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, NSUInteger integer)
561 return implementation(delegate, selector, self, integer);
563 ReportDiscardedDelegateException(selector, exception);
567 if (!delegate || ![delegate respondsToSelector:selector])
570 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
583 ReportDiscardedDelegateException(selector, exception);
589 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object)
595 return wtfCallIMP<id>(implementation, delegate, selector, self, object);
597 ReportDiscardedDelegateException(selector, exception);
604 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
617 ReportDiscardedDelegateException(selector, exception);
624 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2)
629 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2);
631 ReportDiscardedDelegateException(selector, exception);
636 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
641 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, object3);
643 ReportDiscardedDelegateException(selector, exception);
648 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3, id object4)
653 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, object3, object4);
655 ReportDiscardedDelegateException(selector, exception);
660 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, NSUInteger integer)
665 return wtfCallIMP<id>(implementation, delegate, selector, self, integer);
667 ReportDiscardedDelegateException(selector, exception);
674 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2)
680 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2);
682 ReportDiscardedDelegateException(selector, exception);
689 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
703 ReportDiscardedDelegateException(selector, exception);
710 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object, double double1)
715 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
729 ReportDiscardedDelegateException(selector, exception);
735 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
741 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, object3);
743 ReportDiscardedDelegateException(selector, exception);
750 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
765 ReportDiscardedDelegateException(selector, exception);
771 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3, id object4)
777 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, object3, object4);
779 ReportDiscardedDelegateException(selector, exception);
786 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
802 ReportDiscardedDelegateException(selector, exception);
808 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer, id object2)
814 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, integer, object2);
816 ReportDiscardedDelegateException(selector, exception);
823 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
838 ReportDiscardedDelegateException(selector, exception);
845 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer1, int integer2, id object2)
847 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer1, int integer2, id object2)
853 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, integer1, integer2, object2);
855 ReportDiscardedDelegateException(selector, exception);
860 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, BOOL boolean, NSInteger integer1, int integer2, id object2)
865 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, boolean, integer1, integer2, object2);
867 ReportDiscardedDelegateException(selector, exception);
872 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, NSInteger integer, id object3)
878 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, integer, object3);
880 ReportDiscardedDelegateException(selector, exception);
887 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
903 ReportDiscardedDelegateException(selector, exception);
910 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer, id object2)
915 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, integer, object2);
917 ReportDiscardedDelegateException(selector, exception);
921 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, NSInteger integer, id object3)
926 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, object2, integer, object3);
928 ReportDiscardedDelegateException(selector, exception);
935 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer1, id object2, NSInteger integer2, id object3)
937 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer1, id object2, NSInteger integer2, id object3)
943 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, integer1, object2, integer2, object3);
945 ReportDiscardedDelegateException(selector, exception);
951 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer, id object2, id object3, id object4)
953 static inline id CallDelegateInWebThread(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSInteger integer, id object2, id object3, id object4)
959 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, integer, object2, object3, object4);
961 ReportDiscardedDelegateException(selector, exception);
966 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, NSTimeInterval interval, id object2, id object3)
972 return wtfCallIMP<id>(implementation, delegate, selector, self, object1, interval, object2, object3);
974 ReportDiscardedDelegateException(selector, exception);
981 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
997 ReportDiscardedDelegateException(selector, exception);
1003 id CallUIDelegate(WebView *self, SEL selector)
1006 return CallDelegate(self, self->_private->UIDelegate, selector);
1008 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector);
1012 id CallUIDelegate(WebView *self, SEL selector, id object)
1015 return CallDelegate(self, self->_private->UIDelegate, selector, object);
1017 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, object);
1021 id CallUIDelegate(WebView *self, SEL selector, id object, BOOL boolean)
1024 return CallDelegate(self, self->_private->UIDelegate, selector, object, boolean);
1026 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, object, boolean);
1030 id CallUIDelegate(WebView *self, SEL selector, NSRect rect)
1033 return CallDelegate(self, self->_private->UIDelegate, selector, rect);
1035 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, rect);
1039 id CallUIDelegate(WebView *self, SEL selector, id object1, id object2)
1042 return CallDelegate(self, self->_private->UIDelegate, selector, object1, object2);
1044 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, object1, object2);
1048 id CallUIDelegate(WebView *self, SEL selector, id object1, id object2, id object3)
1051 return CallDelegate(self, self->_private->UIDelegate, selector, object1, object2, object3);
1053 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, object1, object2, object3);
1057 id CallUIDelegate(WebView *self, SEL selector, id object, NSUInteger integer)
1060 return CallDelegate(self, self->_private->UIDelegate, selector, object, integer);
1062 return CallDelegate(self, [self _UIDelegateForSelector:selector], selector, object, integer);
1066 float CallUIDelegateReturningFloat(WebView *self, SEL selector)
1069 return CallDelegateReturningFloat(self, self->_private->UIDelegate, selector);
1071 return CallDelegateReturningFloat(self, [self _UIDelegateForSelector:selector], selector);
1075 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector)
1078 return CallDelegateReturningBoolean(result, self, self->_private->UIDelegate, selector);
1080 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector);
1084 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object)
1087 return CallDelegateReturningBoolean(result, self, self->_private->UIDelegate, selector, object);
1089 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector, object);
1093 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object, BOOL boolean)
1096 return CallDelegateReturningBoolean(result, self, self->_private->UIDelegate, selector, object, boolean);
1098 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector, object, boolean);
1102 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object, BOOL boolean, id object2)
1105 return CallDelegateReturningBoolean(result, self, self->_private->UIDelegate, selector, object, boolean, object2);
1107 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector, object, boolean, object2);
1111 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object1, id object2)
1114 return CallDelegateReturningBoolean(result, self, self->_private->UIDelegate, selector, object1, object2);
1116 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector, object1, object2);
1121 BOOL CallUIDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object1, id object2, BOOL boolean)
1123 return CallDelegateReturningBoolean(result, self, [self _UIDelegateForSelector:selector], selector, object1, object2, boolean);
1127 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector)
1130 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector);
1132 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector);
1136 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, NSUInteger integer)
1139 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, integer);
1141 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, integer);
1145 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object)
1148 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object);
1150 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object);
1154 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2)
1157 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2);
1159 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object1, object2);
1163 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3)
1166 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2, object3);
1168 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object1, object2, object3);
1172 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3, id object4)
1175 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2, object3, object4);
1177 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object1, object2, object3, object4);
1181 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, NSTimeInterval interval, id object2, id object3)
1184 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, interval, object2, object3);
1186 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object1, interval, object2, object3);
1191 id CallFrameLoadDelegate(IMP implementation, WebView *self, SEL selector, id object, double double1)
1193 return CallDelegate(implementation, self, [self _frameLoadDelegateForwarder], selector, object, double1);
1197 BOOL CallFrameLoadDelegateReturningBoolean(BOOL result, IMP implementation, WebView *self, SEL selector)
1201 return reinterpret_cast<BOOL (*)(id, SEL, WebView *)>(objc_msgSend)(self->_private->frameLoadDelegate, selector, self);
1203 return reinterpret_cast<BOOL (*)(id, SEL, WebView *)>(objc_msgSend)([self _frameLoadDelegateForwarder], selector, self);
1206 ReportDiscardedDelegateException(selector, exception);
1211 id CallResourceLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2)
1214 return CallDelegate(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2);
1216 return CallDelegate(implementation, self, [self _resourceLoadDelegateForwarder], selector, object1, object2);
1220 id CallResourceLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3)
1223 return CallDelegate(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, object3);
1225 return CallDelegate(implementation, self, [self _resourceLoadDelegateForwarder], selector, object1, object2, object3);
1229 id CallResourceLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3, id object4)
1232 return CallDelegate(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, object3, object4);
1234 return CallDelegate(implementation, self, [self _resourceLoadDelegateForwarder], selector, object1, object2, object3, object4);
1238 id CallResourceLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, NSInteger integer, id object2)
1241 return CallDelegate(implementation, self, self->_private->resourceProgressDelegate, selector, object1, integer, object2);
1243 return CallDelegate(implementation, self, [self _resourceLoadDelegateForwarder], selector, object1, integer, object2);
1247 id CallResourceLoadDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, NSInteger integer, id object3)
1250 return CallDelegate(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, integer, object3);
1252 return CallDelegate(implementation, self, [self _resourceLoadDelegateForwarder], selector, object1, object2, integer, object3);
1257 id CallResourceLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, id object1, id object2)
1259 return CallDelegateInWebThread(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2);
1262 id CallResourceLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3)
1264 return CallDelegateInWebThread(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, object3);
1267 id CallResourceLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3, id object4)
1269 return CallDelegateInWebThread(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, object3, object4);
1272 id CallResourceLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, id object1, NSInteger integer, id object2)
1274 return CallDelegateInWebThread(implementation, self, self->_private->resourceProgressDelegate, selector, object1, integer, object2);
1277 id CallResourceLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, id object1, id object2, NSInteger integer, id object3)
1279 return CallDelegateInWebThread(implementation, self, self->_private->resourceProgressDelegate, selector, object1, object2, integer, object3);
1282 id CallFrameLoadDelegateInWebThread(IMP implementation, WebView *self, SEL selector, NSUInteger integer)
1284 return CallDelegateInWebThread(implementation, self, self->_private->frameLoadDelegate, selector, integer);
1288 BOOL CallResourceLoadDelegateReturningBoolean(BOOL result, IMP implementation, WebView *self, SEL selector, id object1)
1291 return wtfObjcMsgSend<BOOL>(self->_private->resourceProgressDelegate, selector, self, object1);
1293 ReportDiscardedDelegateException(selector, exception);
1298 BOOL CallResourceLoadDelegateReturningBoolean(BOOL result, IMP implementation, WebView *self, SEL selector, id object1, id object2)
1301 return wtfObjcMsgSend<BOOL>(self->_private->resourceProgressDelegate, selector, self, object1, object2);
1303 ReportDiscardedDelegateException(selector, exception);
1308 BOOL CallResourceLoadDelegateReturningBoolean(BOOL result, IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3)
1311 return wtfObjcMsgSend<BOOL>(self->_private->resourceProgressDelegate, selector, self, object1, object2, object3);
1313 ReportDiscardedDelegateException(selector, exception);
1318 id CallScriptDebugDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, NSInteger integer, id object3)
1321 return CallDelegate(implementation, self, self->_private->scriptDebugDelegate, selector, object1, object2, integer, object3);
1323 return CallDelegateInWebThread(implementation, self, self->_private->scriptDebugDelegate, selector, object1, object2, integer, object3);
1327 id CallScriptDebugDelegate(IMP implementation, WebView *self, SEL selector, id object1, NSInteger integer1, id object2, NSInteger integer2, id object3)
1330 return CallDelegate(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer1, object2, integer2, object3);
1332 return CallDelegateInWebThread(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer1, object2, integer2, object3);
1336 id CallScriptDebugDelegate(IMP implementation, WebView *self, SEL selector, id object1, NSInteger integer, id object2, id object3, id object4)
1339 return CallDelegate(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer, object2, object3, object4);
1341 return CallDelegateInWebThread(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer, object2, object3, object4);
1345 id CallScriptDebugDelegate(IMP implementation, WebView *self, SEL selector, id object1, NSInteger integer1, int integer2, id object2)
1348 return CallDelegate(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer1, integer2, object2);
1350 return CallDelegateInWebThread(implementation, self, self->_private->scriptDebugDelegate, selector, object1, integer1, integer2, object2);
1354 id CallScriptDebugDelegate(IMP implementation, WebView *self, SEL selector, id object1, BOOL boolean, NSInteger integer1, int integer2, id object2)
1356 return CallDelegate(implementation, self, self->_private->scriptDebugDelegate, selector, object1, boolean, integer1, integer2, object2);
1359 id CallHistoryDelegate(IMP implementation, WebView *self, SEL selector)
1361 return CallDelegate(implementation, self, self->_private->historyDelegate, selector);
1364 id CallHistoryDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2)
1366 return CallDelegate(implementation, self, self->_private->historyDelegate, selector, object1, object2);
1369 id CallHistoryDelegate(IMP implementation, WebView *self, SEL selector, id object1, id object2, id object3)
1371 return CallDelegate(implementation, self, self->_private->historyDelegate, selector, object1, object2, object3);
1376 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2)
1380 if (!delegate || ![delegate respondsToSelector:selector])
1383 return wtfObjcMsgSend<id>(delegate, selector, object1, object2);
1385 ReportDiscardedDelegateException(selector, exception);
1389 id delegate = [self _formDelegateForSelector:selector];
1393 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
1406 ReportDiscardedDelegateException(selector, exception);
1412 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3)
1416 if (!delegate || ![delegate respondsToSelector:selector])
1419 return wtfObjcMsgSend<id>(delegate, selector, object1, object2, object3);
1421 ReportDiscardedDelegateException(selector, exception);
1425 id delegate = [self _formDelegateForSelector:selector];
1429 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
1443 ReportDiscardedDelegateException(selector, exception);
1449 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5)
1453 if (!delegate || ![delegate respondsToSelector:selector])
1456 return wtfObjcMsgSend<id>(delegate, selector, object1, object2, object3, object4, object5);
1458 ReportDiscardedDelegateException(selector, exception);
1462 id delegate = [self _formDelegateForSelector:selector];
1466 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
1482 ReportDiscardedDelegateException(selector, exception);
1488 BOOL CallFormDelegateReturningBoolean(BOOL result, WebView *self, SEL selector, id object1, SEL selectorArg, id object2)
1492 if (!delegate || ![delegate respondsToSelector:selector])
1495 return wtfObjcMsgSend<BOOL>(delegate, selector, object1, selectorArg, object2);
1497 ReportDiscardedDelegateException(selector, exception);
1501 id delegate = [self _formDelegateForSelector:selector];
1505 NSInvocation *invocation = WebThreadMakeNSInvocation(delegate, selector);
1516 ReportDiscardedDelegateException(selector, exception);