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

1234567891011>>

/openjdk7/jdk/test/javax/print/applet/applet1/
H A DApplet1PrintService.java86 AttributeSet attributes) {
92 AttributeSet attributes) {
97 AttributeSet attributes) {
84 getSupportedAttributeValues(Class category, DocFlavor flavor, AttributeSet attributes) argument
90 isAttributeValueSupported(Attribute attr, DocFlavor flavor, AttributeSet attributes) argument
96 getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes) argument
/openjdk7/jdk/test/javax/print/applet/applet2/
H A DApplet2PrintService.java86 AttributeSet attributes) {
92 AttributeSet attributes) {
97 AttributeSet attributes) {
84 getSupportedAttributeValues(Class category, DocFlavor flavor, AttributeSet attributes) argument
90 isAttributeValueSupported(Attribute attr, DocFlavor flavor, AttributeSet attributes) argument
96 getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes) argument
/openjdk7/jdk/test/javax/print/applet/applet3/
H A DApplet3PrintService.java86 AttributeSet attributes) {
92 AttributeSet attributes) {
97 AttributeSet attributes) {
84 getSupportedAttributeValues(Class category, DocFlavor flavor, AttributeSet attributes) argument
90 isAttributeValueSupported(Attribute attr, DocFlavor flavor, AttributeSet attributes) argument
96 getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes) argument
/openjdk7/jdk/test/javax/print/applet/applet4/
H A DApplet4PrintService.java86 AttributeSet attributes) {
92 AttributeSet attributes) {
97 AttributeSet attributes) {
84 getSupportedAttributeValues(Class category, DocFlavor flavor, AttributeSet attributes) argument
90 isAttributeValueSupported(Attribute attr, DocFlavor flavor, AttributeSet attributes) argument
96 getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes) argument
/openjdk7/jdk/test/sun/jvmstat/monitor/HostIdentifier/
H A DHostIdentifierCreate.java61 private Attributes attributes; field in class:HostIdentifierTestHandler
185 String qName, Attributes attributes) {
193 System.out.println(" Attributes(" + attributes.getLength() + ")");
194 for (int i = 0; i < attributes.getLength(); i++) {
195 System.out.println(" name = " + attributes.getQName(i)
196 + " value = " + attributes.getValue(i));
200 this.attributes = attributes;
215 int id_n = attributes.getIndex("id");
222 int hostid_n = attributes
184 startElement(String namespaceURI, String localName, String qName, Attributes attributes) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMParser.java161 * of pseudo-attributes. These pseudo-attributes follow the form of
162 * element attributes but are <strong>not</strong> parsed or presented
223 * @param attributes The element attributes.
229 public void startElement(QName element, XMLAttributes attributes, Augmentations augs) argument
248 schemaDOM.startAnnotation(element, attributes, fNamespaceContext);
249 fCurrentAnnotationElement = schemaDOM.startElement(element, attributes,
257 fHasNonSchemaAttributes.push(hasNonSchemaAttributes(element, attributes));
262 schemaDOM.startAnnotationElement(element, attributes);
287 emptyElement(QName element, XMLAttributes attributes, Augmentations augs) argument
402 hasNonSchemaAttributes(QName element, XMLAttributes attributes) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReference.java97 this.attributes = epr.attributes;
132 // attributes and elements are not private for performance reasons
135 Map<QName,String> attributes; field in class:W3CEndpointReference
145 Map<QName,String> attributes; field in class:W3CEndpointReference.Address
154 Map<QName,String> attributes; field in class:W3CEndpointReference.Elements
H A DW3CEndpointReferenceBuilder.java74 attributes = new HashMap<QName, String>();
286 attributes.put(name, value);
336 if (elements.isEmpty() && attributes.isEmpty() && interfaceName == null) {
344 referenceParameters, elements, attributes);
354 private Map<QName,String> attributes; field in class:W3CEndpointReferenceBuilder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java115 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { argument
119 // Has namespaces attributes
124 // Has attributes
125 if (attributes.getLength() > 0) {
126 storeAttributes(attributes);
184 private void storeAttributes(Attributes attributes) { argument
185 for (int i = 0; i < attributes.getLength(); i++) {
186 // Skip NS attributes. Some versions of JDK seem to send wrong local name
188 if (attributes.getQName(i).startsWith("xmlns"))
191 attributes
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2StAXStreamWriter.java99 Attributes attributes) throws SAXException {
131 // No need to write namespaces, as they are written as part of attributes.
149 // write attributes
150 for (int i = 0, s = attributes.getLength(); i < s; i++) {
152 parseQName(attributes.getQName(i), qname);
157 String attrQName = attributes.getQName(i);
158 String attrValue = attributes.getValue(i);
159 String attrURI = attributes.getURI(i);
194 super.startElement(uri, localName, qName, attributes);
98 startElement(String uri, String localName, String qName, Attributes attributes) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassFile.java98 attributes = new Attributes(cr);
104 Field[] fields, Method[] methods, Attributes attributes) {
115 this.attributes = attributes;
131 return attributes.get(name);
153 attributes.byteLength();
184 public final Attributes attributes; field in class:ClassFile
101 ClassFile(int magic, int minor_version, int major_version, ConstantPool constant_pool, AccessFlags access_flags, int this_class, int super_class, int[] interfaces, Field[] fields, Method[] methods, Attributes attributes) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyGenerator.java254 CK_ATTRIBUTE[] attributes;
260 attributes = new CK_ATTRIBUTE[] {
265 attributes = new CK_ATTRIBUTE[] {
271 attributes = token.getAttributes
272 (O_GENERATE, CKO_SECRET_KEY, keyType, attributes);
274 (session.id(), new CK_MECHANISM(mechanism), attributes);
276 (session, keyID, algorithm, significantKeySize, attributes);
/openjdk7/jdk/test/sun/jvmstat/monitor/VmIdentifier/
H A DVmIdentifierCreateResolve.java63 private Attributes attributes; field in class:VmIdentifierTestHandler
199 String qName, Attributes attributes) {
207 System.out.println(" Attributes(" + attributes.getLength() + ")");
208 for (int i = 0; i < attributes.getLength(); i++) {
209 System.out.println(" name = " + attributes.getQName(i)
210 + " value = " + attributes.getValue(i));
214 this.attributes = attributes;
229 int id_n = attributes.getIndex("id");
235 int vmid_n = attributes
198 startElement(String namespaceURI, String localName, String qName, Attributes attributes) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DJavaClass.java99 private Attribute[] attributes; // attributes defined in the class field in class:JavaClass
132 * @param attributes Class attributes
145 Attribute[] attributes,
150 if(attributes == null)
151 this.attributes = new Attribute[0];
167 this.attributes = attributes;
171 for(int i=0; i < attributes
135 JavaClass(int class_name_index, int superclass_name_index, String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes, byte source) argument
222 JavaClass(int class_name_index, int superclass_name_index, String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes) argument
476 setAttributes(Attribute[] attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJob2D.java212 private PrintRequestAttributeSet attributes; field in class:PrintJob2D
216 * user to update job & page attributes
410 attributes.add(SunPageSelection.RANGE);
412 attributes.add(SunPageSelection.SELECTION);
414 attributes.add(SunPageSelection.ALL);
418 attributes.add(new DialogOwner(frame));
425 attributes.add(DialogTypeSelection.NATIVE);
427 attributes.add(DialogTypeSelection.COMMON);
429 if (proceedWithPrint = printerJob.printDialog(attributes)) {
446 JobName jname = (JobName)attributes
[all...]
H A DRasterPrinterJob.java291 * attributes used by no-args page and print dialog and print method to
294 protected PrintRequestAttributeSet attributes = null; field in class:RasterPrinterJob
573 if (attributes == null) {
574 attributes = new HashPrintRequestAttributeSet();
577 attributes.add(media);
579 attributes.add(orient);
587 attributes.add(new MediaPrintableArea(ix, iy, iw, ih,
643 PageFormat newPage = pageDialog(attributes);
653 * return a PageFormat corresponding to the updated attributes,
656 public PageFormat pageDialog(final PrintRequestAttributeSet attributes) argument
792 printDialog(final PrintRequestAttributeSet attributes) argument
1032 setAttributes(PrintRequestAttributeSet attributes) argument
1248 spoolToService(PrintService psvc, PrintRequestAttributeSet attributes) argument
1287 print(PrintRequestAttributeSet attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyleContext.java47 * This class also provides efficient support for small sets of attributes
91 * Adds a new style into the style hierarchy. Style attributes
103 * attributes need not be resolved in some other style.
109 // add a named style, a class of attributes
211 * Takes a set of attributes and turn it into a foreground color
216 * @param attr the set of attributes
224 * Takes a set of attributes and turn it into a background color
229 * @param attr the set of attributes
320 * Adds a set of attributes to the element.
328 * @param attr the attributes t
765 SmallAttributeSet(Object[] attributes) argument
995 Object[] attributes; field in class:StyleContext.SmallAttributeSet
1604 private transient AttributeSet attributes; field in class:StyleContext.NamedStyle
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLNamespaceBinder.java525 * of pseudo-attributes. These pseudo-attributes follow the form of
526 * element attributes but are <strong>not</strong> parsed or presented
554 * @param attributes The element attributes.
559 public void startElement(QName element, XMLAttributes attributes, Augmentations augs) argument
563 handleStartElement(element, attributes, augs, false);
566 fDocumentHandler.startElement(element, attributes, augs);
576 * @param attributes The element attributes
581 emptyElement(QName element, XMLAttributes attributes, Augmentations augs) argument
705 handleStartElement(QName element, XMLAttributes attributes, Augmentations augs, boolean isEmpty) argument
[all...]
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dhotspot.d82 #pragma D attributes Evolving/Evolving/Common provider hotspot provider
83 #pragma D attributes Private/Private/Unknown provider hotspot module
84 #pragma D attributes Private/Private/Unknown provider hotspot function
85 #pragma D attributes Evolving/Evolving/Common provider hotspot name
86 #pragma D attributes Evolving/Evolving/Common provider hotspot args
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dhotspot.d82 #pragma D attributes Evolving/Evolving/Common provider hotspot provider
83 #pragma D attributes Private/Private/Unknown provider hotspot module
84 #pragma D attributes Private/Private/Unknown provider hotspot function
85 #pragma D attributes Evolving/Evolving/Common provider hotspot name
86 #pragma D attributes Evolving/Evolving/Common provider hotspot args
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java64 /** Compile to true to debug attributes. */
152 * @param attributes The element attributes.
157 public void startElement(QName element, XMLAttributes attributes) throws XNIException { argument
158 handleStartElement(element, attributes);
193 /** Add default attributes and validate. */
194 public void addDTDDefaultAttrs(QName elementName, XMLAttributes attributes) argument
225 + attributes.getLength() + "\n"
263 int attrCount = attributes.getLength();
265 if (attributes
337 normalizeAttrValue(XMLAttributes attributes, int index) argument
445 handleStartElement(QName element, XMLAttributes attributes) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java452 // Update attributes, this will preserve the page settings.
464 // "attributes" is required for getting the updated attributes
465 if (attributes == null) {
469 DialogOwner dlgOwner = (DialogOwner)attributes.get(DialogOwner.class);
479 (Destination)attributes.get(Destination.class);
539 attributes.add(new Destination(f.toURI()));
561 if (attributes == null) {
562 attributes = new HashPrintRequestAttributeSet();
566 return super.printDialog(attributes);
655 setAttributes(PrintRequestAttributeSet attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DEncoder.java53 private Map attributes; field in class:Encoder
337 // Package private method for setting an attributes table for the encoder
339 if (attributes == null) {
340 attributes = new HashMap();
342 attributes.put(key, value);
346 if (attributes == null) {
349 return attributes.get(key);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanSupport.java65 * attributes and operations parsed out of the interface's methods,
209 public final AttributeList getAttributes(String[] attributes) { argument
210 final AttributeList result = new AttributeList(attributes.length);
211 for (String attrName : attributes) {
233 public final AttributeList setAttributes(AttributeList attributes) { argument
234 final AttributeList result = new AttributeList(attributes.size());
235 for (Object attrObj : attributes) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DOutboundStreamHeader.java60 * The attributes on the header element.
64 private FinalArrayList<Attribute> attributes; field in class:OutboundStreamHeader
81 if(attributes==null)
83 for(int i=attributes.size()-1; i>=0; i-- ) {
84 Attribute a = attributes.get(i);
101 attributes = new FinalArrayList<Attribute>();
108 attributes.add(new Attribute(namespaceURI,localName,value));
111 throw new WebServiceException("Unable to read the attributes for {"+nsUri+"}"+localName+" header",e);

Completed in 124 milliseconds

1234567891011>>