Searched refs:Method (Results 1 - 25 of 126) sorted by relevance

123456

/macosx-10.10.1/CPAN-56/Modules/Class-Method-Modifiers-1.10/
H A DMakefile1 NAME = Class-Method-Modifiers
/macosx-10.10.1/CPAN-56/Modules/Class-Method-Modifiers-2.09/
H A DMakefile1 NAME = Class-Method-Modifiers
/macosx-10.10.1/CPAN-56/Modules/MooseX-Method-Signatures-0.43/
H A DMakefile1 NAME = MooseX-Method-Signatures
/macosx-10.10.1/CPAN-56/Modules/MooseX-Method-Signatures-0.47/
H A DMakefile1 NAME = MooseX-Method-Signatures
/macosx-10.10.1/CPAN-56/Modules/Parse-Method-Signatures-1.003014/
H A DMakefile1 NAME = Parse-Method-Signatures
/macosx-10.10.1/CPAN-56/Modules/Parse-Method-Signatures-1.003016/
H A DMakefile1 NAME = Parse-Method-Signatures
/macosx-10.10.1/swig-12/Lib/typemaps/
H A Dfactory.swg81 %define %factory(Method,Types...)
82 %typemap(out) Method {
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_testsupport.py25 class Method(object): class in inherits:object
40 return Method
366 m = Method(None, {"c_array_delimited_by_null": True })
369 m = Method(None, {"c_array_delimited_by_null": False })
372 m = Method(None, {})
376 m = Method(3, {"c_array_delimited_by_null": True }, selector=True)
380 m = Method(3, {"c_array_delimited_by_null": False }, selector=True)
383 m = Method(3, {}, selector=True)
386 m = Method(3, {"c_array_delimited_by_null": True }, selector=False)
390 m = Method(
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-cache-old.h32 extern Method _cache_getMethod(Class cls, SEL sel, IMP objc_msgForward_internal_imp);
35 extern BOOL _cache_fill(Class cls, Method meth, SEL sel);
H A Dobjc-class-old.mm36 static Method _class_getMethod(Class cls, SEL sel);
37 static Method _class_getMethodNoSuper(Class cls, SEL sel);
38 static Method _class_getMethodNoSuper_nolock(Class cls, SEL sel);
114 * Method list fixup markers.
188 * Method lists are returned in method search order (i.e. highest-priority
342 log_and_fill_cache(Class cls, Class implementer, Method meth, SEL sel)
359 * Method lookup for dispatchers ONLY. OTHER CODE SHOULD USE lookUpImp().
387 Method meth;
445 if (meth != (Method)1) {
513 Method met
[all...]
H A Druntime.h44 typedef struct objc_method *Method; typedef in typeref:struct:objc_method
484 OBJC_EXPORT Method class_getInstanceMethod(Class cls, SEL name)
493 * @return A pointer to the \c Method data structure that corresponds to the implementation of the
500 OBJC_EXPORT Method class_getClassMethod(Class cls, SEL name)
556 * @return An array of pointers of type Method describing the instance methods
566 OBJC_EXPORT Method *class_copyMethodList(Class cls, unsigned int *outCount)
897 OBJC_EXPORT SEL method_getName(Method m)
907 OBJC_EXPORT IMP method_getImplementation(Method m)
917 OBJC_EXPORT const char *method_getTypeEncoding(Method m)
923 * @param m A pointer to a \c Method dat
[all...]
/macosx-10.10.1/ruby-106/ruby/test/-ext-/method/
H A Dtest_arity.rb27 assert_equal(arity, Bug::Method.mod_method_arity(A, name), "A##{name}")
33 assert_equal(arity, Bug::Method.mod_method_arity(B, name), "B##{name}")
/macosx-10.10.1/swig-12/Lib/php/
H A Dfactory.i102 %define %factory(Method,Types...)
103 %typemap(out) Method {
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DConverter.java11 import java.lang.reflect.Method;
79 Method m = cls.getMethod("equals", Object.class);
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/examples/
H A Dfilter_example.pl7 # work for Method::Signature::Simple code.
43 use Method::Signatures::Simple;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/mac/
H A DCookieStorageShim.mm95 if (Method original = class_getInstanceMethod(__NSURLSessionLocalClass, @selector(_copyCookiesForRequestUsingAllAppropriateStorageSemantics:))) {
96 Method replacement = class_getInstanceMethod([WKNSURLSessionLocal class], @selector(_copyCookiesForRequestUsingAllAppropriateStorageSemantics:));
102 if (Method original = class_getInstanceMethod(__NSURLSessionLocalClass, @selector(_getCookieHeadersForTask:completionHandler:))) {
103 Method replacement = class_getInstanceMethod([WKNSURLSessionLocal class], @selector(_getCookieHeadersForTask:completionHandler:));
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Cocoa/
H A DCompletionHandlerCallChecker.mm66 Method delegateMethod = class_getInstanceMethod(delegateClass, m_delegateMethodSelector);
/macosx-10.10.1/vim-55/src/VisVim/
H A DOleAut.h15 bool Method (char* Name, LPCTSTR Format = NULL, ...);
16 bool Method (DISPID DispatchId, LPCTSTR Format = NULL, ...);
H A DCommands.cpp28 static DISPID VimGetDispatchId(COleAutomationControl& VimOle, char* Method);
540 if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf)))
573 if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf)))
580 if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf)))
585 if (! VimOle.Method("SetForeground"))
598 // Return the dispatch id for the Vim method 'Method'
602 static DISPID VimGetDispatchId(COleAutomationControl& VimOle, char* Method) argument
699 VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf));
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc-runtime-compat.h97 extern Method* (*PyObjC_class_copyMethodList)(Class, unsigned int*);
108 extern SEL (*PyObjC_method_getName)(Method m);
109 extern const char *(*PyObjC_method_getTypeEncoding)(Method m);
110 extern IMP (*PyObjC_method_getImplementation)(Method m);
111 extern IMP (*PyObjC_method_setImplementation)(Method m, IMP imp);
H A Dobjc-runtime-compat.m270 Method* methods;
315 static Method*
321 Method* result;
322 Method* tmp;
332 tmp = realloc(result, (count + mlist->method_count) * sizeof(Method));
545 compat_method_getName(Method m)
551 compat_method_getImplementation(Method m)
557 compat_method_setImplementation(Method m, IMP imp)
565 compat_method_getTypeEncoding(Method m)
602 Method
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc-runtime-compat.h97 extern Method* (*PyObjC_class_copyMethodList)(Class, unsigned int*);
108 extern SEL (*PyObjC_method_getName)(Method m);
109 extern const char *(*PyObjC_method_getTypeEncoding)(Method m);
110 extern IMP (*PyObjC_method_getImplementation)(Method m);
111 extern IMP (*PyObjC_method_setImplementation)(Method m, IMP imp);
H A Dobjc-runtime-compat.m270 Method* methods;
315 static Method*
321 Method* result;
322 Method* tmp;
332 tmp = realloc(result, (count + mlist->method_count) * sizeof(Method));
545 compat_method_getName(Method m)
551 compat_method_getImplementation(Method m)
557 compat_method_setImplementation(Method m, IMP imp)
565 compat_method_getTypeEncoding(Method m)
602 Method
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dobjc-runtime-compat.h96 extern Method* (*PyObjC_class_copyMethodList)(Class, unsigned int*);
107 extern SEL (*PyObjC_method_getName)(Method m);
108 extern const char *(*PyObjC_method_getTypeEncoding)(Method m);
109 extern IMP (*PyObjC_method_getImplementation)(Method m);
110 extern IMP (*PyObjC_method_setImplementation)(Method m, IMP imp);
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DProxyInstance.h49 JSC::Bindings::Method* methodNamed(JSC::PropertyName);
104 HashMap<RefPtr<StringImpl>, std::unique_ptr<JSC::Bindings::Method>> m_methods;

Completed in 288 milliseconds

123456