Searched refs:attributes (Results 26 - 50 of 377) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DUnicodeLocaleExtension.java45 private final Set<String> attributes; field in class:UnicodeLocaleExtension
55 attributes = Collections.emptySet();
59 UnicodeLocaleExtension(SortedSet<String> attributes, SortedMap<String, String> keywords) { argument
61 if (attributes != null) {
62 this.attributes = attributes;
64 this.attributes = Collections.emptySet();
72 if (!this.attributes.isEmpty() || !this.keywords.isEmpty()) {
74 for (String attribute : this.attributes) {
91 if (attributes
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DDocumentBuilderFactoryImpl.java43 /** These are DocumentBuilderFactory attributes not DOM attributes */
44 private Hashtable attributes; field in class:DocumentBuilderFactoryImpl
62 if (grammar != null && attributes != null) {
63 if (attributes.containsKey(JAXPConstants.JAXP_SCHEMA_LANGUAGE)) {
68 else if (attributes.containsKey(JAXPConstants.JAXP_SCHEMA_SOURCE)) {
76 return new DocumentBuilderImpl(this, attributes, features, fSecureProcess);
84 * Allows the user to set specific attributes on the underlying
92 // This handles removal of attributes
94 if (attributes !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Key.java93 int keyLength, CK_ATTRIBUTE[] attributes) {
102 int n = (attributes == null) ? 0 : attributes.length;
104 CK_ATTRIBUTE attr = attributes[i];
236 void fetchAttributes(CK_ATTRIBUTE[] attributes) { argument
240 token.p11.C_GetAttributeValue(tempSession.id(), keyID, attributes);
284 int keyLength, CK_ATTRIBUTE[] attributes) {
285 attributes = getAttributes(session, keyID, attributes, new CK_ATTRIBUTE[] {
290 return new P11SecretKey(session, keyID, algorithm, keyLength, attributes);
92 P11Key(String type, Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
283 secretKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
293 masterSecretKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes, int major, int minor) argument
305 publicKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
325 privateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
379 P11PrivateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
396 P11SecretKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
443 P11TlsMasterSecretKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes, int major, int minor) argument
463 P11RSAPrivateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
573 P11RSAPrivateNonCRTKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
634 P11RSAPublicKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
687 P11DSAPublicKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
748 P11DSAPrivateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
809 P11DHPrivateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
871 P11DHPublicKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
933 P11ECPrivateKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
993 P11ECPublicKey(Session session, long keyID, String algorithm, int keyLength, CK_ATTRIBUTE[] attributes) argument
[all...]
H A DP11RSAKeyFactory.java192 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
198 attributes = token.getAttributes
199 (O_IMPORT, CKO_PUBLIC_KEY, CKK_RSA, attributes);
203 long keyID = token.p11.C_CreateObject(session.id(), attributes);
205 (session, keyID, "RSA", n.bitLength(), attributes);
214 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
220 attributes = token.getAttributes
221 (O_IMPORT, CKO_PRIVATE_KEY, CKK_RSA, attributes);
225 long keyID = token.p11.C_CreateObject(session.id(), attributes);
227 (session, keyID, "RSA", n.bitLength(), attributes);
[all...]
H A DP11DSAKeyFactory.java167 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
175 attributes = token.getAttributes
176 (O_IMPORT, CKO_PUBLIC_KEY, CKK_DSA, attributes);
180 long keyID = token.p11.C_CreateObject(session.id(), attributes);
182 (session, keyID, "DSA", p.bitLength(), attributes);
190 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
198 attributes = token.getAttributes
199 (O_IMPORT, CKO_PRIVATE_KEY, CKK_DSA, attributes);
203 long keyID = token.p11.C_CreateObject(session.id(), attributes);
205 (session, keyID, "DSA", p.bitLength(), attributes);
[all...]
H A DP11DHKeyFactory.java173 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
180 attributes = token.getAttributes
181 (O_IMPORT, CKO_PUBLIC_KEY, CKK_DH, attributes);
185 long keyID = token.p11.C_CreateObject(session.id(), attributes);
187 (session, keyID, "DH", p.bitLength(), attributes);
195 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
202 attributes = token.getAttributes
203 (O_IMPORT, CKO_PRIVATE_KEY, CKK_DH, attributes);
207 long keyID = token.p11.C_CreateObject(session.id(), attributes);
209 (session, keyID, "DH", p.bitLength(), attributes);
[all...]
H A DP11ECDHKeyAgreement.java125 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
131 attributes = token.getAttributes
132 (O_GENERATE, CKO_SECRET_KEY, CKK_GENERIC_SECRET, attributes);
135 attributes);
136 attributes = new CK_ATTRIBUTE[] {
139 token.p11.C_GetAttributeValue(session.id(), keyID, attributes);
140 byte[] secret = attributes[0].getByteArray();
187 CK_ATTRIBUTE[] attributes = new CK_ATTRIBUTE[] {
193 attributes = token.getAttributes
194 (O_GENERATE, CKO_SECRET_KEY, keyType, attributes);
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DDynamicMBean.java72 * Get the values of several attributes of the Dynamic MBean.
74 * @param attributes A list of the attributes to be retrieved.
76 * @return The list of attributes retrieved.
80 public AttributeList getAttributes(String[] attributes); argument
83 * Sets the values of several attributes of the Dynamic MBean.
85 * @param attributes A list of attributes: The identification of the
86 * attributes to be set and the values they are to be set to.
88 * @return The list of attributes tha
92 setAttributes(AttributeList attributes) argument
[all...]
/openjdk7/jdk/test/javax/print/applet/applet1/
H A DApplet1PrintServiceLookup.java37 AttributeSet attributes) {
44 AttributeSet attributes) {
36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument
43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
/openjdk7/jdk/test/javax/print/applet/applet2/
H A DApplet2PrintServiceLookup.java37 AttributeSet attributes) {
44 AttributeSet attributes) {
36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument
43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
/openjdk7/jdk/test/javax/print/applet/applet4/
H A DApplet4PrintServiceLookup.java37 AttributeSet attributes) {
44 AttributeSet attributes) {
36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument
43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
/openjdk7/jdk/src/share/classes/javax/print/
H A DSimpleDoc.java66 private DocAttributeSet attributes; field in class:SimpleDoc
76 * @param attributes a <code>DocAttributeSet</code>, which can
86 DocFlavor flavor, DocAttributeSet attributes) {
104 if (attributes != null) {
105 this.attributes = AttributeSetUtilities.unmodifiableView(attributes);
121 * Obtains the set of printing attributes for this doc object. If the
132 * @return Unmodifiable set of printing attributes for this doc, or null
137 return attributes;
85 SimpleDoc(Object printData, DocFlavor flavor, DocAttributeSet attributes) argument
H A DDocPrintJob.java37 * document with a set of job attributes. An object implementing
54 * Obtains this Print Job's set of printing attributes.
65 * @return the print job attributes
95 * Registers a listener for changes in the specified attributes.
106 * recommended to listen on only that subset of attributes which
111 * dynamic attributes that the job supports. This may result in no
118 * @param attributes The attributes to listen on, or null to mean
119 * all attributes that can change, as determined by the job.
123 PrintJobAttributeSet attributes);
121 addPrintJobAttributeListener( PrintJobAttributeListener listener, PrintJobAttributeSet attributes) argument
173 print(Doc doc, PrintRequestAttributeSet attributes) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DShortHandPointer.java82 public boolean resolveXPointer(QName element, XMLAttributes attributes, argument
94 fIsFragmentResolved = hasMatchingIdentifier(element, attributes, augs,
102 fIsFragmentResolved = hasMatchingIdentifier(element, attributes, augs,
120 * @param attributes
127 XMLAttributes attributes, Augmentations augs, int event)
134 if (attributes != null) {
135 for (int i = 0; i < attributes.getLength(); i++) {
138 // among its [attributes] that is a schema-determined ID, then it is
141 normalizedValue = getSchemaDeterminedID(attributes, i);
150 normalizedValue = getChildrenSchemaDeterminedID(attributes,
126 hasMatchingIdentifier(QName element, XMLAttributes attributes, Augmentations augs, int event) argument
184 getDTDDeterminedID(XMLAttributes attributes, int index) argument
202 getSchemaDeterminedID(XMLAttributes attributes, int index) argument
246 getChildrenSchemaDeterminedID(XMLAttributes attributes, int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementImpl.java37 * (element name and attributes), and any contained nodes, including
77 protected AttributeMap attributes; field in class:ElementImpl
87 needsSyncData(true); // synchronizeData will initialize attributes
138 if (attributes == null) {
139 attributes = new AttributeMap(this, null);
141 return attributes;
156 if (attributes != null) {
157 newnode.attributes = (AttributeMap) attributes.cloneMap(newnode);
176 if (attributes !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionHandle.java88 private HashMap attributes; field in class:InstructionHandle
184 attributes = null;
248 if(attributes == null)
249 attributes = new HashMap(3);
251 attributes.put(key, attr);
259 if(attributes != null)
260 attributes.remove(key);
268 if(attributes != null)
269 return attributes.get(key);
274 /** @return all attributes associate
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java72 * This attribute has attributes itself, namely <em>LineNumberTable</em> which
91 private Attribute[] attributes; // or LocalVariable field in class:Code
131 /* Read all attributes, currently `LineNumberTable' and
135 attributes = new Attribute[attributes_count];
137 attributes[i] = Attribute.readAttribute(file, constant_pool);
140 * is incorrect, because it didn't take the internal attributes
153 * @param attributes Attributes of code: LineNumber or LocalVariable
160 Attribute[] attributes,
170 setAttributes(attributes); // Overwrites length!
176 * fields, attributes, et
156 Code(int name_index, int length, int max_stack, int max_locals, byte[] code, CodeException[] exception_table, Attribute[] attributes, ConstantPool constant_pool) argument
286 setAttributes(Attribute[] attributes) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DResolver.java55 * supported, handling <em>charset=...</em> attributes and accepting
107 // table of MIME content types (less attributes!) known
132 * the character encoding defaults, and how attributes of the content
172 String attributes;
174 attributes = contentType.substring(index + 1);
178 index = attributes.indexOf("charset");
180 attributes = attributes.substring(index + 7);
181 // strip out subsequent attributes
182 if ((index = attributes
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DMethodHTML.java113 Attribute[] attributes;
121 attributes = field.getAttributes();
124 for(int i=0; i < attributes.length; i++)
125 attribute_html.writeAttribute(attributes[i], name + "@" + i);
127 for(int i=0; i < attributes.length; i++) {
128 if(attributes[i].getTag() == ATTR_CONSTANT_VALUE) { // Default value
129 String str = ((ConstantValue)attributes[i]).toString();
152 // Get the method's attributes, the Code Attribute in particular
153 Attribute[] attributes = method.getAttributes();
177 for(int i=0; i < attributes
[all...]
/openjdk7/jdk/test/javax/print/PrintServiceLookup/
H A DGetPrintServices.java51 AttributeSet attributes = new HashAttributeSet();
52 attributes.add(new PrinterName(name, null));
53 for (PrintService service : PrintServiceLookup.lookupPrintServices(null, attributes)) {
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetContent.java48 * A map of the attributes of the <CODE>MLET</CODE> tag
51 private Map<String,String> attributes; field in class:MLetContent
54 * An ordered list of the TYPE attributes that appeared in nested
60 * An ordered list of the VALUE attributes that appeared in nested
76 * Creates an <CODE>MLet</CODE> instance initialized with attributes read
81 * @param attributes A map of the attributes of the <CODE>MLET</CODE> tag.
85 * @param types A list of the TYPE attributes that appeared in nested
87 * @param values A list of the VALUE attributes that appeared in nested
90 public MLetContent(URL url, Map<String,String> attributes, argument
[all...]
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c101 * Return a list of attributes from the main section of the given JAR
102 * file. Returns NULL if there is an error or there aren't any attributes.
122 * Free a list of attributes
140 getAttribute(const jarAttribute* attributes, const char* name) { argument
141 while (attributes != NULL) {
142 if (strcasecmp(attributes->name, name) == 0) {
143 return attributes->value;
145 attributes = (jarAttribute*)attributes->next;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLNSDTDValidator.java112 protected final void startNamespaceScope (QName element, XMLAttributes attributes, argument
126 int length = attributes.getLength();
128 String localpart = attributes.getLocalName(i);
129 String prefix = attributes.getPrefix(i);
136 String uri = fSymbolTable.addSymbol(attributes.getValue(i));
142 new Object[]{attributes.getQName(i)},
150 new Object[]{attributes.getQName(i)},
159 new Object[]{attributes.getQName(i)},
168 new Object[]{attributes.getQName(i)},
181 new Object[]{attributes
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.cpp206 // words must be XML attributes. Outputs "<kind .../>".
223 // words must be XML attributes. Outputs "<kind ...", not including "/>".
257 // words must be XML attributes. Outputs "<kind ...>".
273 // words must be XML attributes. Outputs "<kind ...", not including ">".
371 assert_if_no_error(inside_attrs(), "printing attributes");
399 assert_if_no_error(inside_attrs(), "printing attributes");
414 assert_if_no_error(inside_attrs(), "printing attributes");
422 assert_if_no_error(inside_attrs(), "printing attributes");
429 assert_if_no_error(inside_attrs(), "printing attributes");
437 assert_if_no_error(inside_attrs(), "printing attributes");
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java403 private void startStyle(Attributes attributes) throws SAXException { argument
407 for(int i = attributes.getLength() - 1; i >= 0; i--) {
408 String key = attributes.getQName(i);
411 attributes.getValue(i), ParsedSynthStyle.class)).
415 id = attributes.getValue(i);
438 private void startState(Attributes attributes) throws SAXException { argument
444 for(int i = attributes.getLength() - 1; i >= 0; i--) {
445 String key = attributes.getQName(i);
447 id = attributes.getValue(i);
451 attributes
508 startFont(Attributes attributes) argument
571 startColor(Attributes attributes) argument
699 startProperty(Attributes attributes, Object property) argument
797 startGraphics(Attributes attributes) argument
815 startInsets(Attributes attributes) argument
860 startBind(Attributes attributes) argument
901 startPainter(Attributes attributes, String type) argument
1044 startImageIcon(Attributes attributes) argument
1064 startOpaque(Attributes attributes) argument
1078 startInputMap(Attributes attributes) argument
1102 startBindKey(Attributes attributes) argument
1174 startElement(String uri, String local, String name, Attributes attributes) argument
[all...]

Completed in 271 milliseconds

1234567891011>>