Searched refs:properties (Results 1 - 25 of 559) sorted by relevance

1234567891011>>

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MailDemo/MailDemoBindings/
H A DEmail.rb11 kvc_accessor :properties
15 @properties = NSMutableDictionary.dictionaryWithObjects_forKeys(
H A DMailbox.rb11 kvc_accessor :properties, :emails
15 @properties = NSMutableDictionary.dictionaryWithObject_forKey('New Mailbox', 'title')
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MailDemo/MailDemoSimple/
H A DEmail.rb11 kvc_accessor :properties
15 @properties = NSMutableDictionary.dictionaryWithObjects_forKeys(
H A DMailbox.rb11 kvc_accessor :properties, :emails
15 @properties = NSMutableDictionary.dictionaryWithObject_forKey('New Mailbox', 'title')
/macosx-10.9.5/bootp-268.1/bootplib/
H A Dioregpath.c32 CFMutableDictionaryRef properties = NULL; local
39 &properties,
43 properties = NULL;
46 return (properties);
70 CFMutableDictionaryRef properties = NULL; local
86 &properties,
94 &properties,
99 properties = NULL;
102 return (properties);
/macosx-10.9.5/IOStorageFamily-172/
H A DIOAppleLabelScheme.cpp43 bool IOAppleLabelScheme::init(OSDictionary * properties) argument
55 if (super::init(properties) == false) return false;
156 OSDictionary * properties = 0; local
241 // Obtain the properties.
243 properties = (OSDictionary *) OSUnserializeXML(labelMap, labelSize);
245 if ( OSDynamicCast(OSDictionary, properties) == 0 )
252 if ( isContentCorrupt(properties) )
259 if ( isContentInvalid(properties) )
266 newMedia = instantiateMediaObject(properties);
277 properties
292 isContentCorrupt(OSDictionary * properties) argument
301 isContentInvalid(OSDictionary * properties) argument
339 instantiateMediaObject(OSDictionary * properties) argument
[all...]
H A DIOAppleLabelScheme.h113 virtual bool isContentCorrupt(OSDictionary * properties);
119 virtual bool isContentInvalid(OSDictionary * properties);
125 virtual IOMedia * instantiateMediaObject(OSDictionary * properties);
131 virtual IOMedia * instantiateDesiredMediaObject(OSDictionary * properties);
151 virtual bool init(OSDictionary * properties = 0);
/macosx-10.9.5/IOKitUser-907.100.13/
H A Dclockfreq.c79 CFDictionaryRef properties; local
86 kr = IORegistryEntryCreateCFProperties(root, &properties,
89 data = CFDictionaryGetValue(properties, CFSTR("compatible"));
95 printDictInt32(properties, CFSTR("clock-frequency"));
97 CFRelease(properties);
125 kr = IORegistryEntryCreateCFProperties(cpu, &properties,
129 printDictInt32(properties, CFSTR("clock-frequency"));
130 printDictInt32(properties, CFSTR("bus-frequency"));
131 printDictInt32(properties, CFSTR("timebase-frequency"));
132 printDictInt32(properties, CFST
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSProperty.cpp59 return shorthand.properties()[logicalSide];
66 return shorthand.properties()[LeftSide];
68 return shorthand.properties()[RightSide];
70 return shorthand.properties()[BottomSide];
72 return shorthand.properties()[TopSide];
80 return shorthand.properties()[TopSide];
82 return shorthand.properties()[BottomSide];
84 return shorthand.properties()[LeftSide];
86 return shorthand.properties()[RightSide];
93 return shorthand.properties()[TopSid
160 resolveToPhysicalProperty(WritingMode writingMode, LogicalExtent logicalSide, const CSSPropertyID* properties) argument
169 static const CSSPropertyID properties[4] = { CSSPropertyBorderTop, CSSPropertyBorderRight, CSSPropertyBorderBottom, CSSPropertyBorderLeft }; local
226 const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; local
230 const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; local
234 const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; local
238 const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; local
242 const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; local
246 const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; local
[all...]
H A DStylePropertyShorthand.h38 StylePropertyShorthand(const CSSPropertyID* properties, unsigned numProperties) argument
39 : m_properties(properties)
45 StylePropertyShorthand(const CSSPropertyID* properties, const StylePropertyShorthand** propertiesForInitialization, unsigned numProperties) argument
46 : m_properties(properties)
52 const CSSPropertyID* properties() const { return m_properties; } function in class:WebCore::StylePropertyShorthand
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DPolicies.cpp147 void Policy::setProperties(CFDictionaryRef properties) argument
150 if (properties == NULL)
161 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
171 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyClient, (const void **)&clientRef)
187 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
192 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyTeamIdentifier, (const void **)&teamIDStr)) {
209 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_DigitalSignature, (const void **)&kuRef)
212 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_NonRepudiation, (const void **)&kuRef)
215 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_KeyEncipherment, (const void **)&kuRef)
218 if (CFDictionaryGetValueIfPresent(properties, (cons
245 CFDictionaryRef Policy::properties() function in class:Policy
248 CFMutableDictionaryRef properties = CFDictionaryCreateMutable(NULL, 0, local
[all...]
H A DSecCertificateP.c1739 void appendProperty(CFMutableArrayRef properties, argument
1756 property = CFDictionaryCreate(CFGetAllocator(properties),
1768 property = CFDictionaryCreate(CFGetAllocator(properties),
1773 CFArrayAppendValue(properties, property);
1937 static void appendDataProperty(CFMutableArrayRef properties, argument
1939 CFDataRef data = CFDataCreate(CFGetAllocator(properties),
1941 appendProperty(properties, kSecPropertyTypeData, label, data);
1945 static void appendUnparsedProperty(CFMutableArrayRef properties, argument
1947 CFStringRef newLabel = CFStringCreateWithFormat(CFGetAllocator(properties),
1949 appendDataProperty(properties, newLabe
1953 appendInvalidProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *der_data) argument
1961 appendDateContentProperty(CFMutableArrayRef properties, CFStringRef label, DERTag tag, const DERItem *dateContent) argument
1973 appendDateProperty(CFMutableArrayRef properties, CFStringRef label, CFAbsoluteTime absTime) argument
1980 appendIPAddressContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *ip) argument
1992 appendURLContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *urlContent) argument
2004 appendURLProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *url) argument
2017 appendOIDProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *oid) argument
2025 appendAlgorithmProperty(CFMutableArrayRef properties, CFStringRef label, const DERAlgorithmId *algorithm) argument
2190 appendDERThingProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *derThing) argument
2200 CFMutableArrayRef properties = (CFMutableArrayRef)context; local
2242 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2274 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2288 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2299 appendIntegerProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *integer) argument
2307 appendBoolProperty(CFMutableArrayRef properties, CFStringRef label, bool boolean) argument
2313 appendBooleanProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *boolean, bool defaultValue) argument
2325 appendBitStringContentNames(CFMutableArrayRef properties, CFStringRef label, const DERItem *bitStringContent, const CFStringRef *names, CFIndex namesCount) argument
2364 appendBitStringNames(CFMutableArrayRef properties, CFStringRef label, const DERItem *bitString, const CFStringRef *names, CFIndex namesCount) argument
2450 appendKeyUsage(CFMutableArrayRef properties, const DERItem *extnValue) argument
2468 appendPrivateKeyUsagePeriod(CFMutableArrayRef properties, const DERItem *extnValue) argument
2489 appendStringContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *stringContent, CFStringEncoding encoding) argument
2507 appendOtherNameContentProperty(CFMutableArrayRef properties, const DERItem *otherNameContent) argument
2545 appendGeneralNameContentProperty(CFMutableArrayRef properties, DERTag tag, const DERItem *generalName) argument
2604 appendGeneralNameProperty(CFMutableArrayRef properties, const DERItem *generalName) argument
2620 appendGeneralNamesContent(CFMutableArrayRef properties, const DERItem *generalNamesContent) argument
2640 appendGeneralNames(CFMutableArrayRef properties, const DERItem *generalNames) argument
2658 appendBasicConstraints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2701 appendCrlDistributionPoints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2771 appendIntegerSequenceContent(CFMutableArrayRef properties, CFStringRef label, const DERItem *intSequenceContent) argument
2803 appendCertificatePolicies(CFMutableArrayRef properties, const DERItem *extnValue) argument
2890 appendSubjectKeyIdentifier(CFMutableArrayRef properties, const DERItem *extnValue) argument
2916 appendAuthorityKeyIdentifier(CFMutableArrayRef properties, const DERItem *extnValue) argument
2954 appendPolicyConstraints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2985 appendExtendedKeyUsage(CFMutableArrayRef properties, const DERItem *extnValue) argument
3020 appendInfoAccess(CFMutableArrayRef properties, const DERItem *extnValue) argument
3048 appendNetscapeCertType(CFMutableArrayRef properties, const DERItem *extnValue) argument
3092 appendPrintableDERSequence(CFMutableArrayRef properties, CFStringRef label, const DERItem *sequence) argument
3145 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
3517 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DPolicies.cpp147 void Policy::setProperties(CFDictionaryRef properties) argument
150 if (properties == NULL)
161 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
171 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyClient, (const void **)&clientRef)
187 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
192 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyTeamIdentifier, (const void **)&teamIDStr)) {
209 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_DigitalSignature, (const void **)&kuRef)
212 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_NonRepudiation, (const void **)&kuRef)
215 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_KeyEncipherment, (const void **)&kuRef)
218 if (CFDictionaryGetValueIfPresent(properties, (cons
245 CFDictionaryRef Policy::properties() function in class:Policy
248 CFMutableDictionaryRef properties = CFDictionaryCreateMutable(NULL, 0, local
[all...]
H A DSecCertificateP.c1739 void appendProperty(CFMutableArrayRef properties, argument
1756 property = CFDictionaryCreate(CFGetAllocator(properties),
1768 property = CFDictionaryCreate(CFGetAllocator(properties),
1773 CFArrayAppendValue(properties, property);
1937 static void appendDataProperty(CFMutableArrayRef properties, argument
1939 CFDataRef data = CFDataCreate(CFGetAllocator(properties),
1941 appendProperty(properties, kSecPropertyTypeData, label, data);
1945 static void appendUnparsedProperty(CFMutableArrayRef properties, argument
1947 CFStringRef newLabel = CFStringCreateWithFormat(CFGetAllocator(properties),
1949 appendDataProperty(properties, newLabe
1953 appendInvalidProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *der_data) argument
1961 appendDateContentProperty(CFMutableArrayRef properties, CFStringRef label, DERTag tag, const DERItem *dateContent) argument
1973 appendDateProperty(CFMutableArrayRef properties, CFStringRef label, CFAbsoluteTime absTime) argument
1980 appendIPAddressContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *ip) argument
1992 appendURLContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *urlContent) argument
2004 appendURLProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *url) argument
2017 appendOIDProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *oid) argument
2025 appendAlgorithmProperty(CFMutableArrayRef properties, CFStringRef label, const DERAlgorithmId *algorithm) argument
2190 appendDERThingProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *derThing) argument
2200 CFMutableArrayRef properties = (CFMutableArrayRef)context; local
2242 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2274 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2288 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
2299 appendIntegerProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *integer) argument
2307 appendBoolProperty(CFMutableArrayRef properties, CFStringRef label, bool boolean) argument
2313 appendBooleanProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *boolean, bool defaultValue) argument
2325 appendBitStringContentNames(CFMutableArrayRef properties, CFStringRef label, const DERItem *bitStringContent, const CFStringRef *names, CFIndex namesCount) argument
2364 appendBitStringNames(CFMutableArrayRef properties, CFStringRef label, const DERItem *bitString, const CFStringRef *names, CFIndex namesCount) argument
2450 appendKeyUsage(CFMutableArrayRef properties, const DERItem *extnValue) argument
2468 appendPrivateKeyUsagePeriod(CFMutableArrayRef properties, const DERItem *extnValue) argument
2489 appendStringContentProperty(CFMutableArrayRef properties, CFStringRef label, const DERItem *stringContent, CFStringEncoding encoding) argument
2507 appendOtherNameContentProperty(CFMutableArrayRef properties, const DERItem *otherNameContent) argument
2545 appendGeneralNameContentProperty(CFMutableArrayRef properties, DERTag tag, const DERItem *generalName) argument
2604 appendGeneralNameProperty(CFMutableArrayRef properties, const DERItem *generalName) argument
2620 appendGeneralNamesContent(CFMutableArrayRef properties, const DERItem *generalNamesContent) argument
2640 appendGeneralNames(CFMutableArrayRef properties, const DERItem *generalNames) argument
2658 appendBasicConstraints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2701 appendCrlDistributionPoints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2771 appendIntegerSequenceContent(CFMutableArrayRef properties, CFStringRef label, const DERItem *intSequenceContent) argument
2803 appendCertificatePolicies(CFMutableArrayRef properties, const DERItem *extnValue) argument
2890 appendSubjectKeyIdentifier(CFMutableArrayRef properties, const DERItem *extnValue) argument
2916 appendAuthorityKeyIdentifier(CFMutableArrayRef properties, const DERItem *extnValue) argument
2954 appendPolicyConstraints(CFMutableArrayRef properties, const DERItem *extnValue) argument
2985 appendExtendedKeyUsage(CFMutableArrayRef properties, const DERItem *extnValue) argument
3020 appendInfoAccess(CFMutableArrayRef properties, const DERItem *extnValue) argument
3048 appendNetscapeCertType(CFMutableArrayRef properties, const DERItem *extnValue) argument
3092 appendPrintableDERSequence(CFMutableArrayRef properties, CFStringRef label, const DERItem *sequence) argument
3145 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
3517 CFMutableArrayRef properties = CFArrayCreateMutable(allocator, 0, local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DPolicies.cpp147 void Policy::setProperties(CFDictionaryRef properties) argument
150 if (properties == NULL)
161 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
171 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyClient, (const void **)&clientRef)
187 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyName, (const void **)&nameStr)) {
192 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyTeamIdentifier, (const void **)&teamIDStr)) {
209 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_DigitalSignature, (const void **)&kuRef)
212 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_NonRepudiation, (const void **)&kuRef)
215 if (CFDictionaryGetValueIfPresent(properties, (const void *)kSecPolicyKU_KeyEncipherment, (const void **)&kuRef)
218 if (CFDictionaryGetValueIfPresent(properties, (cons
245 CFDictionaryRef Policy::properties() function in class:Policy
248 CFMutableDictionaryRef properties = CFDictionaryCreateMutable(NULL, 0, local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/Statements/
H A Dforin-001.js102 var properties = new Array();
105 for ( properties[properties.length] in object ) {
106 values[values.length] = object[properties[properties.length-1]];
119 "properties.length",
121 properties.length );
125 "object["+properties[0]+"]",
127 object[properties[0]] );
267 var properties
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/audio.subproj/
H A DIOAudioLib.c42 CFDictionaryRef properties;
46 kr = IORegistryEntryCreateCFProperties(service, (CFTypeRef *) &properties,
48 if(kr || !properties)
52 CFDictionaryGetValue(properties, CFSTR("Out"));
59 CFRelease(properties);
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOPMPowerSource.cpp68 properties = OSDictionary::withCapacity(10);
69 if(!properties) return false;
70 properties->setCapacityIncrement(1);
101 if(properties) properties->release();
138 iterator = OSCollectionIterator::withCollection(properties);
146 obj = properties->getObject(key);
176 if( (lastVal = properties->getObject(key)) ) {
189 properties->setObject(key, val);
304 return properties
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotconfig.tcl62 set config(axis,properties) {color thickness font format ticklength textcolor labeloffset minorticks}
63 set config(leftaxis,properties) $config(axis,properties)
64 set config(rightaxis,properties) $config(axis,properties)
65 set config(topaxis,properties) $config(axis,properties)
66 set config(bottomaxis,properties) $config(axis,properties)
67 set config(xaxis,properties)
[all...]
/macosx-10.9.5/IOBDStorageFamily-14/
H A DIOBDBlockStorageDevice.cpp29 bool IOBDBlockStorageDevice::init(OSDictionary * properties) argument
37 if (super::init(properties) == false) return false;
39 // Create our registry properties.
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDManager.c78 CFMutableDictionaryRef properties; member in struct:__IOHIDManager
210 if ( manager->properties ) {
211 CFRelease(manager->properties);
212 manager->properties = NULL;
370 if (manager->properties) {
371 CFDictionaryApplyFunction(manager->properties,
679 if ( !manager->properties )
682 return CFDictionaryGetValue(manager->properties, key);
697 if (!manager->properties) {
698 manager->properties
1028 CFMutableDictionaryRef properties = __IOHIDPropertyLoadDictionaryFromKey(__IOHIDManagerGetRootKey()); local
1089 CFDictionaryRef properties = CFPreferencesCopyValue(key, kCFPreferencesAnyApplication, kCFPreferencesAnyUser, kCFPreferencesAnyHost); local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dbutton.el38 ;; represented by the overlay itself, or text-properties, in which case
44 ;; Using `define-button-type' to define default properties for buttons
83 ;; Default properties for buttons
94 ;; inheriting its properties.
102 ;; Button types (which can be used to hold default properties for buttons)
104 ;; Because button-type properties are inherited by buttons using the
106 ;; text-properties), we need to store them on a symbol to which the
107 ;; `category' properties can point. Instead of using the symbol that's
109 ;; `-button' appended, and uninterned) to store the properties. This is
114 "Return the symbol used by button-type TYPE to store properties
[all...]
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_js_private.h34 Eina_Hash* properties; member in struct:_Ewk_JS_Object
/macosx-10.9.5/smb-697.95.1/rpcwrappers/
H A DSetNetworkAccountSID.cpp77 SMBServerPropertiesV1 properties; local
84 status = SMBGetServerProperties(serverConnection, &properties, kPropertiesVersion, sizeof(properties));
89 if (properties.internalFlags & kHasNtwrkSID) {
94 if ((properties.authType == kSMBAuthTypeGuest) || (properties.authType == kSMBAuthTypeAnonymous)) {
97 status = GetNetworkAccountSID(properties.serverName, &account, &domain, &ntsid);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DelementsPanel.css192 .styles-section .properties li.not-parsed-ok {
196 .styles-section.computed-style .properties li.not-parsed-ok {
200 .styles-section .properties li.not-parsed-ok img.exclamation-mark {
216 .styles-section.computed-style .properties li.not-parsed-ok img.exclamation-mark {
267 .styles-section .properties {
275 .styles-section.matched-styles .properties {
279 .styles-section.no-affect .properties li {
283 .styles-section.no-affect .properties li.editing {
287 .styles-section.expanded .properties {
291 .styles-section .properties l
[all...]

Completed in 530 milliseconds

1234567891011>>