Searched refs:attributes (Results 76 - 100 of 1053) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/mdsdump/
H A DMDSSchema.h24 // Declarations of structures which define the schema, including attributes
49 // Macros used to simplify declarations of attributes and indexes.
69 #define RELATION_INFO(relationId, attributes, indexes) \
72 sizeof(attributes) / sizeof(CSSM_DB_ATTRIBUTE_INFO), \
73 attributes, \
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DHTML.pm33 attributes => $hash->{ attributes } || $hash->{ attrs } || { },
41 $attr = $self->attributes($attr);
50 $attr = $self->attributes( $attr );
55 sub attributes { subroutine
57 $hash ||= $self->{ attributes };
72 my $cur = $self->{ attributes };
92 my $cur = $self->{ attributes };
106 $self->{ attributes } = { };
146 [% HTML.attributes(borde
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSNameScope.h39 static JSNameScope* create(ExecState* exec, const Identifier& identifier, JSValue value, unsigned attributes) argument
43 scopeObject->finishCreation(vm, identifier, value, attributes);
47 static JSNameScope* create(VM& vm, JSGlobalObject* globalObject, const Identifier& identifier, JSValue value, unsigned attributes, JSScope* next) argument
50 scopeObject->finishCreation(vm, identifier, value, attributes);
64 void finishCreation(VM& vm, const Identifier& identifier, JSValue value, unsigned attributes) argument
68 symbolTable()->add(identifier.impl(), SymbolTableEntry(-1, attributes));
H A DPropertyDescriptor.h44 PropertyDescriptor(JSValue value, unsigned attributes) argument
46 , m_attributes(attributes)
59 unsigned attributes() const { return m_attributes; } function in class:JSC::PropertyDescriptor
66 JS_EXPORT_PRIVATE void setDescriptor(JSValue value, unsigned attributes);
67 JS_EXPORT_PRIVATE void setCustomDescriptor(unsigned attributes);
68 JS_EXPORT_PRIVATE void setAccessorDescriptor(GetterSetter* accessor, unsigned attributes);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dgenkey.cpp59 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label,
69 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label, &compositeRcc(), &key));
77 pubSpec.usage, pubSpec.attributes,
79 privSpec.usage, privSpec.attributes,
91 pubSpec.usage, pubSpec.attributes, pubSpec.label, &publicKey,
92 privSpec.usage, privSpec.attributes, privSpec.label, &compositeRcc(), &privateKey));
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dgenkey.cpp59 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label,
69 check(CSSM_GenerateKey(handle(), spec.usage, spec.attributes, spec.label, &compositeRcc(), &key));
77 pubSpec.usage, pubSpec.attributes,
79 privSpec.usage, privSpec.attributes,
91 pubSpec.usage, pubSpec.attributes, pubSpec.label, &publicKey,
92 privSpec.usage, privSpec.attributes, privSpec.label, &compositeRcc(), &privateKey));
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleLVMStorageRequest.h37 IOStorageAttributes *attributes, IOStorageCompletion *completion);
39 IOStorageAttributes *attributes, IOStorageCompletion *completion);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_authorization/lib/
H A DAuthSession.h52 Sessions are identified with SecuritySessionIds. A session has a set of attributes
142 @param attributes (output/optional) Receives the attribute bits for the session.
151 SessionAttributeBits *attributes);
176 @param attributes The set of attribute bits to set for the new session.
187 SessionAttributeBits attributes);
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dkey.h62 // Key::attribute is there for a reason. If you want to check attributes,
73 virtual CSSM_KEYATTR_FLAGS attributes() = 0;
74 bool attribute(CSSM_KEYATTR_FLAGS f) { return attributes() & f; }
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DPlatformSpeechSynthesisMac.mm58 NSDictionary *attributes = [NSSpeechSynthesizer attributesForVoice:voiceName];
60 NSString *voiceURI = [attributes objectForKey:NSVoiceIdentifier];
61 NSString *name = [attributes objectForKey:NSVoiceName];
62 NSString *language = [attributes objectForKey:NSVoiceLocaleIdentifier];
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebViewportAttributes.h37 static PassRefPtr<WebViewportAttributes> create(const WebCore::ViewportAttributes& attributes) argument
39 return adoptRef(new WebViewportAttributes(attributes));
/macosx-10.10/cups-408/cups/test/
H A Dget-jobs.test29 GROUP operation-attributes-tag
30 ATTR charset attributes-charset utf-8
31 ATTR language attributes-natural-language en
33 ATTR keyword requested-attributes
39 # What attributes to display
H A Dipp-everywhere.test30 GROUP operation-attributes-tag
31 ATTR charset attributes-charset utf-8
32 ATTR naturalLanguage attributes-natural-language en
36 ATTR keyword requested-attributes all,media-col-database
53 # Printer description attributes
54 EXPECT compression-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "deflate" DEFINE-MATCH HAVE_DEFLATE
55 EXPECT compression-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "gzip" DEFINE-MATCH HAVE_GZIP
57 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE "image/jpeg"
58 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE "image/pwg-raster"
59 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPatternElement.cpp189 static void setPatternAttributes(const SVGPatternElement& element, PatternAttributes& attributes) argument
191 if (!attributes.hasX() && element.hasAttribute(SVGNames::xAttr))
192 attributes.setX(element.x());
194 if (!attributes.hasY() && element.hasAttribute(SVGNames::yAttr))
195 attributes.setY(element.y());
197 if (!attributes.hasWidth() && element.hasAttribute(SVGNames::widthAttr))
198 attributes.setWidth(element.width());
200 if (!attributes.hasHeight() && element.hasAttribute(SVGNames::heightAttr))
201 attributes.setHeight(element.height());
203 if (!attributes
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dvariables.h91 int attributes; /* export, readonly, array, invisible... */ member in struct:variable
101 /* The various attributes that a given variable can have. */
102 /* First, the user-visible attributes */
114 /* Internal attributes used for bookkeeping */
123 /* Internal attributes used for variable scoping. */
129 #define exported_p(var) ((((var)->attributes) & (att_exported)))
130 #define readonly_p(var) ((((var)->attributes) & (att_readonly)))
131 #define array_p(var) ((((var)->attributes) & (att_array)))
132 #define function_p(var) ((((var)->attributes) & (att_function)))
133 #define integer_p(var) ((((var)->attributes)
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dcssmcontext.cpp29 // Context attributes are allocated from application memory in big chunks comprising
30 // many attributes as well as the attribute array itself. The CSSM_CONTEXT fields
62 // Merge a new set of attributes into an existing HandleContext, copying
67 void HandleContext::mergeAttributes(const CSSM_CONTEXT_ATTRIBUTE *attributes, uint32 count) argument
71 if (Attr *attr = find(attributes[0].AttributeType)) {
75 *attr = attributes[0];
85 size_t newSize = size(attributes[0]);
88 *attr = attributes[0];
104 const Attr *attr = static_cast<const Attr *>(&attributes[0]);
118 *slot = attributes[
[all...]
/macosx-10.10/cups-408/cups/test/everywhere/
H A Ddocument-format-tests.test30 GROUP operation-attributes-tag
31 ATTR charset attributes-charset utf-8
32 ATTR naturalLanguage attributes-natural-language en
36 ATTR keyword requested-attributes all,media-col-database
53 # Printer description attributes
54 EXPECT compression-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "deflate" DEFINE-MATCH HAVE_DEFLATE
55 EXPECT compression-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "gzip" DEFINE-MATCH HAVE_GZIP
57 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE "image/jpeg"
58 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE "image/pwg-raster"
59 EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes
[all...]
H A Dipp-tests.test38 GROUP operation-attributes-tag
39 ATTR charset attributes-charset utf-8
40 ATTR naturalLanguage attributes-natural-language en
48 # Test that the first two attributes must be attributes-charset and
49 # attributes-natural-language.
56 GROUP operation-attributes-tag
62 NAME "I3. RFC 2911 section 3.1.4: attributes-charset"
64 GROUP operation-attributes-tag
65 ATTR charset attributes
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/store/
H A Dstr_mem.c73 from the range of attributes associated with the object (basically,
91 be used to add attributes
98 STACK *search_attributes; /* Sets of attributes to search for.
100 int search_index; /* which of the search attributes we found a match
108 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
110 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
112 STORE_OBJECT *data, OPENSSL_ITEM attributes[],
119 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
121 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
125 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
167 mem_generate(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
173 mem_get(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
187 mem_store(STORE *s, STORE_OBJECT_TYPES type, STORE_OBJECT *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
202 mem_delete(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
216 mem_list_start(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
344 mem_lock(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
349 mem_unlock(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DSecIdentitySearchPriv.h36 @abstract Creates a search reference for finding identities that match specified attributes.
37 @param attributes A dictionary containing optional attributes for controlling the search. Pass NULL to find all possible valid identities. See SecItem.h for a description of currently defined attributes.
43 In 10.7 and later, you should use SecItemCopyMatching (see SecItem.h) to find identities that match specified attributes.
45 OSStatus SecIdentitySearchCreateWithAttributes(CFDictionaryRef attributes, SecIdentitySearchRef* searchRef)
51 @abstract Creates a search reference for finding identities that match specified attributes.
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecIdentitySearchPriv.h36 @abstract Creates a search reference for finding identities that match specified attributes.
37 @param attributes A dictionary containing optional attributes for controlling the search. Pass NULL to find all possible valid identities. See SecItem.h for a description of currently defined attributes.
43 In 10.7 and later, you should use SecItemCopyMatching (see SecItem.h) to find identities that match specified attributes.
45 OSStatus SecIdentitySearchCreateWithAttributes(CFDictionaryRef attributes, SecIdentitySearchRef* searchRef)
51 @abstract Creates a search reference for finding identities that match specified attributes.
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecIdentitySearchPriv.h36 @abstract Creates a search reference for finding identities that match specified attributes.
37 @param attributes A dictionary containing optional attributes for controlling the search. Pass NULL to find all possible valid identities. See SecItem.h for a description of currently defined attributes.
43 In 10.7 and later, you should use SecItemCopyMatching (see SecItem.h) to find identities that match specified attributes.
45 OSStatus SecIdentitySearchCreateWithAttributes(CFDictionaryRef attributes, SecIdentitySearchRef* searchRef)
51 @abstract Creates a search reference for finding identities that match specified attributes.
/macosx-10.10/WebCore-7600.1.25/platform/graphics/opengl/
H A DGLPlatformSurface.cpp45 std::unique_ptr<GLPlatformSurface> GLPlatformSurface::createOffScreenSurface(SurfaceAttributes attributes) argument
49 surface = std::make_unique<GLXOffScreenSurface>(attributes);
51 surface = EGLOffScreenSurface::createOffScreenSurface(attributes);
130 GLPlatformSurface::SurfaceAttributes GLPlatformSurface::attributes() const function in class:WebCore::GLPlatformSurface
/macosx-10.10/WebKit2-7600.1.25/WebProcess/mac/
H A DSecItemShimLibrary.h32 OSStatus (*secItemAdd)(CFDictionaryRef attributes, CFTypeRef *result);
/macosx-10.10/IOStorageFamily-182.1.1/
H A DIOFilterScheme.cpp101 IOStorageAttributes * attributes,
119 if ( attributes == &gIOStorageAttributesUnsupported )
121 attributes = NULL;
125 IOStorage::read( client, byteStart, buffer, attributes, completion );
132 getProvider( )->read( this, byteStart, buffer, attributes, completion );
138 IOStorageAttributes * attributes,
156 if ( attributes == &gIOStorageAttributesUnsupported )
158 attributes = NULL;
162 IOStorage::write( client, byteStart, buffer, attributes, completion );
169 getProvider( )->write( this, byteStart, buffer, attributes, completio
98 read(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
135 write(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
[all...]

Completed in 265 milliseconds

1234567891011>>