Searched refs:Protocol (Results 1 - 25 of 106) sorted by relevance

12345

/macosx-10.9.5/CPAN-52/Modules/LWP-Protocol-https-6.02/
H A DMakefile1 NAME = LWP-Protocol-https
/macosx-10.9.5/CPAN-52/Modules/LWP-Protocol-https-6.03/
H A DMakefile1 NAME = LWP-Protocol-https
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dformal-protocol.h20 PyObject* PyObjCFormalProtocol_ForProtocol(Protocol* protocol);
21 Protocol* PyObjCFormalProtocol_GetProtocol(PyObject* protocol);
H A Dobjc-runtime-compat.h26 #include <objc/Protocol.h>
85 extern BOOL (*PyObjC_preclass_addProtocol)(Class cls, Protocol *protocol);
104 extern Protocol** (*PyObjC_class_copyProtocolList)(Class, unsigned int*);
121 extern Protocol** (*PyObjC_objc_copyProtocolList)(unsigned int* outCount);
122 extern Protocol* (*PyObjC_objc_getProtocol)(char* name);
123 extern struct objc_method_description_list* (*PyObjC_protocol_copyInstanceMethodDescriptionList)(Protocol* proto);
124 extern struct objc_method_description_list* (*PyObjC_protocol_copyClassMethodDescriptionList)(Protocol *proto);
125 extern struct objc_method_description_list* (*PyObjC_protocol_copyOptionalInstanceMethodDescriptionList)(Protocol *proto);
126 extern struct objc_method_description_list* (*PyObjC_protocol_copyOptionalClassMethodDescriptionList)(Protocol *proto);
128 extern BOOL (*PyObjC_protocol_conformsToProtocol)(Protocol *prot
[all...]
H A Dobjc-runtime-compat.m33 typedef struct _ProtocolTemplate { @defs(Protocol) } ProtocolTemplate;
49 static Protocol** compat_objc_copyProtocolList(unsigned int* outCount)
51 Protocol** protocols = NULL;
69 protocols = malloc(sizeof(Protocol*) * nprotos);
74 Protocol** tmp = realloc(protocols,
75 sizeof(Protocol*) * (*outCount+nprotos));
84 protocols[(*outCount)++] = (Protocol*)&protos[i];
386 static Protocol**
389 Protocol** list;
397 list = realloc(list, (count + protocol_list->count)*sizeof(Protocol*));
[all...]
H A Dformal-protocol.m13 * FIXME: Looking in the Protocol structure is a rather crude hack, especially with the Objective-C 2.0
18 @defs(Protocol);
36 Protocol* objc;
66 return PyObjCClass_New([Protocol class]);
163 theProtocol = (struct Protocol_struct*)NSAllocateObject([Protocol class], 0, NULL);
182 (1+len) * sizeof(Protocol*));
260 result->objc = (Protocol*)theProtocol;
321 Protocol* objc_protocol;
621 Protocol* protocol,
631 Protocol** parent
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dformal-protocol.h20 PyObject* PyObjCFormalProtocol_ForProtocol(Protocol* protocol);
21 Protocol* PyObjCFormalProtocol_GetProtocol(PyObject* protocol);
H A Dobjc-runtime-compat.h26 #include <objc/Protocol.h>
85 extern BOOL (*PyObjC_preclass_addProtocol)(Class cls, Protocol *protocol);
104 extern Protocol** (*PyObjC_class_copyProtocolList)(Class, unsigned int*);
121 extern Protocol** (*PyObjC_objc_copyProtocolList)(unsigned int* outCount);
122 extern Protocol* (*PyObjC_objc_getProtocol)(char* name);
123 extern struct objc_method_description_list* (*PyObjC_protocol_copyInstanceMethodDescriptionList)(Protocol* proto);
124 extern struct objc_method_description_list* (*PyObjC_protocol_copyClassMethodDescriptionList)(Protocol *proto);
125 extern struct objc_method_description_list* (*PyObjC_protocol_copyOptionalInstanceMethodDescriptionList)(Protocol *proto);
126 extern struct objc_method_description_list* (*PyObjC_protocol_copyOptionalClassMethodDescriptionList)(Protocol *proto);
128 extern BOOL (*PyObjC_protocol_conformsToProtocol)(Protocol *prot
[all...]
H A Dobjc-runtime-compat.m33 typedef struct _ProtocolTemplate { @defs(Protocol) } ProtocolTemplate;
49 static Protocol** compat_objc_copyProtocolList(unsigned int* outCount)
51 Protocol** protocols = NULL;
69 protocols = malloc(sizeof(Protocol*) * nprotos);
74 Protocol** tmp = realloc(protocols,
75 sizeof(Protocol*) * (*outCount+nprotos));
84 protocols[(*outCount)++] = (Protocol*)&protos[i];
386 static Protocol**
389 Protocol** list;
397 list = realloc(list, (count + protocol_list->count)*sizeof(Protocol*));
[all...]
H A Dformal-protocol.m13 * FIXME: Looking in the Protocol structure is a rather crude hack, especially with the Objective-C 2.0
18 @defs(Protocol);
36 Protocol* objc;
66 return PyObjCClass_New([Protocol class]);
163 theProtocol = (struct Protocol_struct*)NSAllocateObject([Protocol class], 0, NULL);
182 (1+len) * sizeof(Protocol*));
260 result->objc = (Protocol*)theProtocol;
321 Protocol* objc_protocol;
658 Protocol* protocol,
668 Protocol** parent
[all...]
/macosx-10.9.5/objc4-551.1/test/
H A DbadTagClass.m4 objc\[\d+\]: tag index 7 used for two different classes \(was 0x[0-9a-fA-F]+ NSObject, now 0x[0-9a-fA-F]+ Protocol\)
15 #include <objc/Protocol.h>
28 _objc_registerTaggedPointerClass(OBJC_TAG_7, [Protocol class]);
/macosx-10.9.5/objc4-551.1/runtime/
H A DProtocol.h24 Protocol.h
35 // All methods of class Protocol are unavailable.
39 @interface Protocol : NSObject
47 @interface Protocol : Object
62 - (BOOL) conformsTo: (Protocol *)aProtocolObject OBJC2_UNAVAILABLE;
H A DProtocol.mm24 Protocol.h
38 #include "Protocol.h"
48 @implementation Protocol
51 // fixme hack - make Protocol a non-lazy class
56 - (BOOL) conformsTo: (Protocol *)aProtocolObj
95 Class protoClass = objc_getClass("Protocol");
103 return [other isKindOf:[Protocol class]] && [self conformsTo: other] && [other conformsTo: self];
H A Druntime.h76 @class Protocol;
78 typedef struct objc_object Protocol; typedef in typeref:struct:objc_object
566 OBJC_EXPORT BOOL class_conformsToProtocol(Class cls, Protocol *protocol)
576 * @return An array of pointers of type Protocol* describing the protocols adopted
582 OBJC_EXPORT Protocol * __unsafe_unretained *class_copyProtocolList(Class cls, unsigned int *outCount)
701 OBJC_EXPORT BOOL class_addProtocol(Class cls, Protocol *protocol)
1098 OBJC_EXPORT Protocol *objc_getProtocol(const char *name)
1111 OBJC_EXPORT Protocol * __unsafe_unretained *objc_copyProtocolList(unsigned int *outCount)
1129 OBJC_EXPORT BOOL protocol_conformsToProtocol(Protocol *proto, Protocol *othe
[all...]
H A DNSObject.h31 - (BOOL)conformsToProtocol:(Protocol *)aProtocol;
75 + (BOOL)conformsToProtocol:(Protocol *)protocol;
H A DObject.h92 - (BOOL) conformsTo: (Protocol *)aProtocolObject;
93 + (BOOL) conformsTo: (Protocol *)aProtocolObject;
144 /* Abstract Protocol for Archiving */
153 /* Abstract Protocol for Dynamic Loading */
H A Dobjc-runtime-old.mm348 Protocol * __unsafe_unretained *
352 Protocol *proto;
355 Protocol **result;
366 result = (Protocol **)calloc(1 + count, sizeof(Protocol *));
612 Protocol *objc_getProtocol(const char *name)
614 Protocol *result;
617 result = (Protocol *)NXMapGet(protocol_map, name);
1567 const char *protocol_getName(Protocol *p)
1582 protocol_getMethodDescription(Protocol *
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSWrapperMap.h44 Protocol *getJSExportProtocol();
H A DObjcRuntimeExtras.h30 inline bool protocolImplementsProtocol(Protocol *candidate, Protocol *target)
33 Protocol ** protocolProtocols = protocol_copyProtocolList(candidate, &protocolProtocolsCount);
44 inline void forEachProtocolImplementingProtocol(Class cls, Protocol *target, void (^callback)(Protocol *))
49 Vector<Protocol *> worklist;
54 Protocol ** protocols = class_copyProtocolList(cls, &protocolsCount);
59 Protocol *protocol = worklist.last();
62 // Are we encountering this Protocol for the first time?
86 inline void forEachMethodInProtocol(Protocol *protoco
[all...]
H A DObjCCallbackFunction.h35 JSObjectRef objCCallbackFunctionForMethod(JSContext *, Class, Protocol *, BOOL isInstanceMethod, SEL, const char* types);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dprotocol.m29 Protocol* p;
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/LWP/Protocol/
H A Dldap.pm5 package LWP::Protocol::ldap;
13 require LWP::Protocol;
14 @ISA = qw(LWP::Protocol);
42 "LWP::Protocol::ldap::request called for '$scheme'";
/macosx-10.9.5/libclosure-63/RewriterBlockTest/
H A Dsimpleblock.cpp13 typedef struct objc_object Protocol; typedef in typeref:struct:objc_object
31 __OBJC_RW_EXTERN Protocol *objc_getProtocol(const char *);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/test/
H A Dprotocol.m59 Protocol* p;
/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/src/
H A Difdhandler.c65 static void extra_egt(ATR_t *atr, _ccid_descriptor *ccid_desc, DWORD Protocol);
545 EXTERNAL RESPONSECODE IFDHSetProtocolParameters(DWORD Lun, DWORD Protocol, argument
552 * Protocol - SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1
580 DEBUG_INFO4("protocol T=%d, %s (lun: %X)", Protocol-SCARD_PROTOCOL_T0,
601 extra_egt(&atr, ccid_desc, Protocol);
603 if (SCARD_PROTOCOL_T0 == Protocol)
606 if (SCARD_PROTOCOL_T1 == Protocol)
625 if (SCARD_PROTOCOL_T1 == Protocol)
796 Protocol = default_protocol +
799 Protocol
1595 extra_egt(ATR_t *atr, _ccid_descriptor *ccid_desc, DWORD Protocol) argument
[all...]

Completed in 277 milliseconds

12345