Searched refs:type (Results 226 - 250 of 9002) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DObjCPointer.h16 PyObject *type; member in struct:__anon12000
24 extern PyObjCPointer *PyObjCPointer_New(void *ptr, const char *type);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DRadiansToDegreesTransformer.py27 if type(degrees) == type(1.2):
28 # when using jostickview we get a value of type float()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSNumberAdditions.h4 + (NSNumber *) numberWithBytes:(const void *) bytes objCType:(const char *) type;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A DObjCPointer.h16 PyObject *type; member in struct:__anon12031
24 extern PyObjCPointer *PyObjCPointer_New(void *ptr, const char *type);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DRadiansToDegreesTransformer.py27 if type(degrees) == type(1.2):
28 # when using jostickview we get a value of type float()
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Dctl_transact.c63 ctl_transact(target, lmsg, type, rp)
66 int type;
73 lmsg.type = type;
81 * the proper type is obtained.
121 rp->type != type));
122 } while (rp->vers != TALK_VERSION || rp->type != type);
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/zic.tproj/
H A Dprivate.h129 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
133 #define TYPE_SIGNED(type) (((type) -1) < 0)
139 ** Subtract one for the sign bit if the type is signed;
141 ** add one more for a minus sign if the type is signed.
143 #define INT_STRLEN_MAXIMUM(type) \
144 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type))
[all...]
/macosx-10.9.5/system_cmds-597.90.1/zic.tproj/
H A Dprivate.h129 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
133 #define TYPE_SIGNED(type) (((type) -1) < 0)
139 ** Subtract one for the sign bit if the type is signed;
141 ** add one more for a minus sign if the type is signed.
143 #define INT_STRLEN_MAXIMUM(type) \
144 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Dregenerate.sh9 type="${filesrc}/magic/Magdir"
12 `dirname $0`/tmc -merge filetypes.tcl '::fileutil::magic::filetype::run' "${type}"
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-msdp.c41 unsigned int type, len; local
45 type = *sp;
47 if (len > 1500 || len < 3 || type == 0 || type > MSDP_TYPE_MAX)
52 type = *sp;
60 switch (type) {
63 if (type == 1)
92 (void)printf(" [type=%d len=%d]", type, len);
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/legacy/
H A Dsocketpair.c47 socketpair(int domain, int type, int protocol, int socket_vector[2]) argument
49 int ret = __socketpair(domain, type, protocol, socket_vector);
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Ddbgutil.cpp25 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { argument
26 const char *str = udbg_enumName(type, field);
77 U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { argument
81 if(type<0||type>=UDBG_ENUM_COUNT) {
83 //fprintf(stderr, "** returning out of range on %d\n",type);
87 int32_t count = udbg_enumCount(type);
88 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count);
91 return strs[type][count];
92 } else { return strs[type][fiel
96 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) argument
[all...]
H A Dudbgutil.h40 * @param type the type of enum
41 * Print how many enums are contained for this type.
44 U_CAPI int32_t U_EXPORT2 udbg_enumCount(UDebugEnumType type);
48 * @param type type of enum
52 U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
56 * @param type the type of enum
57 * Print how many enums should be contained for this type
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tools/
H A DCodeProfile.cpp94 CodeType type; local
101 type = EngineFrame;
103 type = GlobalThunk;
105 type = RegExpCode;
109 type = DFGJIT;
111 type = BaselineOnly;
113 type = BaselineOSR;
115 type = BaselineProfile;
118 type = EngineFrame;
122 m_samples.append(CodeRecord(pc, type));
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/cdt/
H A Ddtmethod.c41 if(!meth || meth->type == oldmeth->type)
53 if(dt->data->type&(DT_LIST|DT_STACK|DT_QUEUE) )
55 else if(dt->data->type&(DT_SET|DT_BAG) )
63 dt->data->type = (dt->data->type&~(DT_METHODS|DT_FLATTEN)) | meth->type;
68 if(meth->type&(DT_LIST|DT_STACK|DT_QUEUE) )
69 { if(!(oldmeth->type&(DT_LIST|DT_STACK|DT_QUEUE)) )
79 else if(meth->type
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/
H A Dxprintf_domain.h44 #define printf_domain_fbsd_api(d,x) ((d)->type[x] == PRINTF_DOMAIN_FBSD_API)
45 #define printf_domain_flag(d,x) ((d)->type[x] == PRINTF_DOMAIN_FLAG)
46 #define printf_domain_glibc_api(d,x) ((d)->type[x] == PRINTF_DOMAIN_GLIBC_API)
47 #define printf_domain_unused(d,x) ((d)->type[x] == PRINTF_DOMAIN_UNUSED)
56 char type[PRINTF_TBL_SIZE]; member in struct:_printf_domain
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmcert.cpp38 EncodedCertificate::EncodedCertificate(CSSM_CERT_TYPE type, CSSM_CERT_ENCODING enc, argument
42 CertType = type;
53 CSSM_CERT_ENCODING encoding, CSSM_CERTGROUP_TYPE type)
58 CertGroupType = type;
67 switch (type()) {
52 CertGroup(CSSM_CERT_TYPE ctype, CSSM_CERT_ENCODING encoding, CSSM_CERTGROUP_TYPE type) argument
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecCertificateBundle.cpp34 CSSM_CERT_BUNDLE_TYPE type,
46 CSSM_CERT_BUNDLE_TYPE type,
61 CSSM_CERT_BUNDLE_TYPE type,
77 CSSM_CERT_BUNDLE_TYPE type,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmcert.cpp38 EncodedCertificate::EncodedCertificate(CSSM_CERT_TYPE type, CSSM_CERT_ENCODING enc, argument
42 CertType = type;
53 CSSM_CERT_ENCODING encoding, CSSM_CERTGROUP_TYPE type)
58 CertGroupType = type;
67 switch (type()) {
52 CertGroup(CSSM_CERT_TYPE ctype, CSSM_CERT_ENCODING encoding, CSSM_CERTGROUP_TYPE type) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecCertificateBundle.cpp34 CSSM_CERT_BUNDLE_TYPE type,
46 CSSM_CERT_BUNDLE_TYPE type,
61 CSSM_CERT_BUNDLE_TYPE type,
77 CSSM_CERT_BUNDLE_TYPE type,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecCertificateBundle.cpp34 CSSM_CERT_BUNDLE_TYPE type,
46 CSSM_CERT_BUNDLE_TYPE type,
61 CSSM_CERT_BUNDLE_TYPE type,
77 CSSM_CERT_BUNDLE_TYPE type,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DPageTransitionEvent.h45 static PassRefPtr<PageTransitionEvent> create(const AtomicString& type, bool persisted) argument
47 return adoptRef(new PageTransitionEvent(type, persisted));
49 static PassRefPtr<PageTransitionEvent> create(const AtomicString& type, const PageTransitionEventInit& initializer) argument
51 return adoptRef(new PageTransitionEvent(type, initializer));
62 PageTransitionEvent(const AtomicString& type, bool persisted);
H A DProgressEvent.h47 static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
49 return adoptRef(new ProgressEvent(type, lengthComputable, loaded, total));
51 static PassRefPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer) argument
53 return adoptRef(new ProgressEvent(type, initializer));
64 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
H A DWebKitAnimationEvent.h46 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) argument
48 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime));
50 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const WebKitAnimationEventInit& initializer) argument
52 return adoptRef(new WebKitAnimationEvent(type, initializer));
64 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLContextEvent.h45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) argument
47 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
49 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, const WebGLContextEventInit& initializer) argument
51 return adoptRef(new WebGLContextEvent(type, initializer));
61 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);

Completed in 180 milliseconds

1234567891011>>