OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjcMethod
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h
56
class
ObjcMethod
: public Method {
58
ObjcMethod
() : _objcClass(0), _selector(0), _javaScriptName(0) {}
59
ObjcMethod
(ClassStructPtr aClass, SEL _selector);
objc_runtime.mm
58
// ----------------------
ObjcMethod
----------------------
60
ObjcMethod
::
ObjcMethod
(ClassStructPtr aClass, SEL selector)
66
int
ObjcMethod
::numParameters() const
71
NSMethodSignature*
ObjcMethod
::getMethodSignature() const
239
OwnPtr<
ObjcMethod
> fallbackMethod(new
ObjcMethod
(objcClass->isa(), @selector(invokeUndefinedMethodFromWebScript:withArguments:)));
objc_instance.h
51
JSValue invokeObjcMethod(ExecState*,
ObjcMethod
* method);
objc_instance.mm
214
return invokeObjcMethod(exec, static_cast<
ObjcMethod
*>(methodList[0]));
217
JSValue ObjcInstance::invokeObjcMethod(ExecState* exec,
ObjcMethod
* method)
objc_class.mm
110
MethodStructPtr
objcMethod
= objcMethodList[i];
111
SEL objcMethodSelector = method_getName(
objcMethod
);
113
struct objc_method*
objcMethod
= &objcMethodList->method_list[i];
114
SEL objcMethodSelector =
objcMethod
->method_name;
131
Method* aMethod = new
ObjcMethod
(thisClass, objcMethodSelector); // deleted when the dictionary is destroyed
Completed in 4109 milliseconds