Home
last modified time | relevance | path

Searched refs:IMP (Results 1 – 25 of 30) sorted by relevance

12

/external/webkit/Source/WebKit/mac/WebView/
DWebDelegateImplementationCaching.h36 IMP didCancelAuthenticationChallengeFunc;
37 IMP didReceiveAuthenticationChallengeFunc;
39 IMP canAuthenticateAgainstProtectionSpaceFunc;
41 IMP identifierForRequestFunc;
42 IMP willSendRequestFunc;
43 IMP didReceiveResponseFunc;
44 IMP didReceiveContentLengthFunc;
45 IMP didFinishLoadingFromDataSourceFunc;
46 IMP didFailLoadingWithErrorFromDataSourceFunc;
47 IMP didLoadResourceFromMemoryCacheFunc;
[all …]
DWebDelegateImplementationCaching.mm264 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector) category
278 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
292 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
306 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
320 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
334 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
348 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
362 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
376 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
390 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… category
[all …]
DWebHTMLView.mm232 static IMP oldSetCursorForMouseLocationIMP;
243 static IMP oldResetCursorRectsIMP;
244 static IMP oldSetCursorIMP;
287 static IMP oldSetNeedsDisplayInRectIMP;
585 oldSetCursorForMouseLocationIMP = method_setImplementation(setCursorMethod, (IMP)setCursor);
593 …oldSetNeedsDisplayInRectIMP = method_setImplementation(setNeedsDisplayInRectMethod, (IMP)setNeedsD…
602 oldSetCursorIMP = method_setImplementation(setCursorMethod, (IMP)setCursor);
608 … oldResetCursorRectsIMP = method_setImplementation(resetCursorRectsMethod, (IMP)resetCursorRects);
/external/webkit/Source/WebKit/mac/Misc/
DWebNSObjectExtras.h47 static inline IMP method_setImplementation(Method m, IMP i) in method_setImplementation()
49 IMP oi = m->method_imp; in method_setImplementation()
/external/chromium/chrome/browser/cocoa/
Dkeystone_glue_unittest.mm143 IMP oldInfoImp_ = [[KeystoneGlue class] instanceMethodForSelector:ids];
144 IMP newInfoImp_ = [[FakeKeystoneGlue class] instanceMethodForSelector:ids];
149 IMP oldLoadImp_ = [[KeystoneGlue class] instanceMethodForSelector:lks];
150 IMP newLoadImp_ = [[FakeKeystoneGlue class] instanceMethodForSelector:lks];
/external/webkit/Source/WebKit/mac/Carbon/
DHIViewAdapter.m49 static IMP oldNSViewSetNeedsDisplayIMP;
50 static IMP oldNSViewSetNeedsDisplayInRectIMP;
51 static IMP oldNSViewNextValidKeyViewIMP;
66 …oldNSViewSetNeedsDisplayIMP = method_setImplementation(setNeedsDisplayMethod, (IMP)_webkit_NSView_…
72 …sDisplayInRectIMP = method_setImplementation(setNeedsDisplayInRectMethod, (IMP)_webkit_NSView_setN…
78 …oldNSViewNextValidKeyViewIMP = method_setImplementation(nextValidKeyViewMethod, (IMP)_webkit_NSVie…
/external/chromium/chrome/browser/ui/cocoa/
Dobjc_method_swizzle.mm29 IMP SwizzleImplementedInstanceMethods(
52 IMP ret = method_getImplementation(original);
Dobjc_method_swizzle.h23 IMP SwizzleImplementedInstanceMethods(
Dobjc_zombie.mm44 IMP g_originalDeallocIMP = NULL;
318 const IMP prevDeallocIMP = method_setImplementation(m, (IMP)ZombieDealloc);
320 prevDeallocIMP == (IMP)ZombieDealloc);
Drwhvm_editcommand_helper.mm196 class_addMethod(klass, edit_selector, (IMP)EditCommandImp, "v@:@");
/external/webkit/Tools/WebKitLauncher/
DWebKitNightlyEnablerSparkle.m111 static void setMethodImplementation(Method m, IMP imp)
133 setMethodImplementation(methodToPatch, (IMP)updatePermissionPromptDescription);
136 setMethodImplementation(methodToPatch, (IMP)updateAlertInitForAlertPanel);
/external/webkit/Source/WebCore/platform/mac/
DWebCoreObjCExtras.mm56 static inline IMP method_getImplementation(Method method)
70 IMP imp = method_getImplementation(method);
/external/clang/test/SemaObjC/
Dnonnull.m80 @interface IMP interface
86 @implementation IMP implementation
/external/clang/lib/CodeGen/
DCGObjC.cpp336 void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP, in GenerateObjCGetter() argument
344 StartObjCMethod(OMD, IMP->getClassInterface(), PID->getLocStart()); in GenerateObjCGetter()
372 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar); in GenerateObjCGetter()
546 void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP, in GenerateObjCSetter() argument
552 StartObjCMethod(OMD, IMP->getClassInterface(), PID->getLocStart()); in GenerateObjCSetter()
585 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar); in GenerateObjCSetter()
750 void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, in GenerateObjCCtorDtorMethod() argument
753 MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface()); in GenerateObjCCtorDtorMethod()
754 StartObjCMethod(MD, IMP->getClassInterface(), MD->getLocStart()); in GenerateObjCCtorDtorMethod()
762 for (ObjCImplementationDecl::init_const_iterator B = IMP->init_begin(), in GenerateObjCCtorDtorMethod()
[all …]
DCodeGenFunction.h1249 void GenerateObjCGetter(ObjCImplementationDecl *IMP,
1255 void GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
1260 void GenerateObjCSetter(ObjCImplementationDecl *IMP,
/external/webkit/Source/WebKit2/PluginProcess/mac/
DPluginProcessShim.mm44 static IMP NSApplication_RunModalForWindow;
141 …indow = method_setImplementation(runModalForWindowMethod, reinterpret_cast<IMP>(shim_NSApplication…
/external/webkit/Source/WebCore/page/mac/
DEventHandlerMac.mm55 static inline IMP method_setImplementation(Method m, IMP i)
57 IMP oi = m->method_imp;
415 static IMP originalNSScrollViewScrollWheel;
432 …originalNSScrollViewScrollWheel = method_setImplementation(method, reinterpret_cast<IMP>(selfRetai…
/external/v8/src/
Dscanner-base.cc878 if (MatchState(input, 'p', IMP)) return; in Step()
880 case IMP: in Step()
Dscanner-base.h582 IMP, enumerator
/external/webkit/Source/WebKit/mac/Plugins/
DWebPluginController.mm592IMP originalMethod = method_setImplementation(methodToPatch, reinterpret_cast<IMP>(WebKit_TSUpdate…
596 …originalMethod = method_setImplementation(methodToPatch, reinterpret_cast<IMP>(WebKit_NSAlert_begi…
/external/webkit/Source/WebKit2/WebProcess/mac/
DWebProcessMac.mm237 method_setImplementation(methodToPatch, (IMP)NSApplicationAccessibilityFocusedUIElement);
/external/webkit/Source/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.mm68 static IMP method_setImplementation(Method m, IMP imp)
70 IMP result = m->method_imp;
461 …method_setImplementation(mainThreadSetNeedsDisplayMethod, reinterpret_cast<IMP>(mainThreadSetNeeds…
/external/clang/lib/Sema/
DSemaDeclObjC.cpp1593 if (ObjCImplDecl *IMP = ID->getImplementation()) { in ImplMethodsVsClassMethods() local
1595 I = IMP->instmeth_begin(), E = IMP->instmeth_end(); I!=E; ++I) in ImplMethodsVsClassMethods()
/external/chromium/chrome/browser/
Dchrome_browser_application_mac.mm29 static IMP gOriginalInitIMP = NULL;
/external/chromium/base/
Dprocess_util_mac.mm907 reinterpret_cast<IMP>(oom_killer_allocWithZone));

12