Searched refs:attributes (Results 1 - 25 of 581) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DHashPrintServiceAttributeSet.java68 * the elements of {@code attributes} array to the set in sequence, starting
72 * @param attributes array of attribute values to add to the set. If
74 * @throws NullPointerException if any element of {@code attributes} is
77 public HashPrintServiceAttributeSet(PrintServiceAttribute[] attributes) { argument
78 super (attributes, PrintServiceAttribute.class);
86 * @param attributes set of attribute values to initialise the set. If
88 * @throws ClassCastException if any element of {@code attributes} is not an
91 public HashPrintServiceAttributeSet(PrintServiceAttributeSet attributes) argument
93 super(attributes, PrintServiceAttribute.class);
H A DHashPrintRequestAttributeSet.java67 * the elements of {@code attributes} array to the set in sequence, starting
71 * @param attributes array of attribute values to add to the set. If
73 * @throws NullPointerException if any element of {@code attributes} is
76 public HashPrintRequestAttributeSet(PrintRequestAttribute[] attributes) { argument
77 super (attributes, PrintRequestAttribute.class);
85 * @param attributes set of attribute values to initialise the set. If
87 * @throws ClassCastException if any element of {@code attributes} is not an
90 public HashPrintRequestAttributeSet(PrintRequestAttributeSet attributes) argument
92 super(attributes, PrintRequestAttribute.class);
H A DHashPrintJobAttributeSet.java67 * adding the elements of {@code attributes} array to the set in sequence,
72 * @param attributes array of attribute values to add to the set. If
74 * @throws NullPointerException if any element of {@code attributes} is
77 public HashPrintJobAttributeSet(PrintJobAttribute[] attributes) { argument
78 super (attributes, PrintJobAttribute.class);
86 * @param attributes set of attribute values to initialise the set. If
88 * @throws ClassCastException if any element of {@code attributes} is not an
91 public HashPrintJobAttributeSet(PrintJobAttributeSet attributes) { argument
92 super(attributes, PrintJobAttribute.class);
H A DHashDocAttributeSet.java67 * the elements of {@code attributes} array to the set in sequence, starting
71 * @param attributes array of attribute values to add to the set. If
73 * @throws NullPointerException if any element of {@code attributes} is
76 public HashDocAttributeSet(DocAttribute[] attributes) { argument
77 super (attributes, DocAttribute.class);
85 * @param attributes set of attribute values to initialise the set. If
87 * @throws ClassCastException if any element of {@code attributes} is not an
90 public HashDocAttributeSet(DocAttributeSet attributes) { argument
91 super(attributes, DocAttribute.class);
H A DDocAttributeSet.java30 * attributes, i.e. printing attributes that implement interface
81 * @param attributes whose elements are to be added to this attribute set
91 public boolean addAll(AttributeSet attributes); argument
H A DPrintRequestAttributeSet.java30 * of print request attributes, i.e. printing attributes that implement
82 * @param attributes whose elements are to be added to this attribute set
93 public boolean addAll(AttributeSet attributes); argument
H A DPrintServiceAttributeSet.java30 * of print job attributes, i.e. printing attributes that implement interface
82 * @param attributes whose elements are to be added to this attribute set
93 public boolean addAll(AttributeSet attributes); argument
H A DPrintJobAttributeSet.java30 * print job attributes, i.e. printing attributes that implement interface
81 * @param attributes whose elements are to be added to this attribute set
91 public boolean addAll(AttributeSet attributes); argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/event/
H A DPrintServiceAttributeEvent.java45 * The printing service attributes that changed.
47 private PrintServiceAttributeSet attributes; field in class:PrintServiceAttributeEvent
53 * @param attributes the attribute changes being reported
57 PrintServiceAttributeSet attributes) {
60 this.attributes = AttributeSetUtilities.unmodifiableView(attributes);
74 * Determine the printing service attributes that changed and their new
77 * @return attributes containing the new values for the service attributes
82 return attributes;
56 PrintServiceAttributeEvent(PrintService source, PrintServiceAttributeSet attributes) argument
[all...]
H A DPrintJobAttributeEvent.java35 * attributes for a {@code PrintJob} have changed.
45 * The printing service attributes that changed.
47 private PrintJobAttributeSet attributes; field in class:PrintJobAttributeEvent
53 * @param attributes the attribute changes being reported
57 PrintJobAttributeSet attributes) {
60 this.attributes = AttributeSetUtilities.unmodifiableView(attributes);
74 * Determine the printing attributes that changed and their new values.
76 * @return attributes containing the new values for the print job attributes
56 PrintJobAttributeEvent(DocPrintJob source, PrintJobAttributeSet attributes) argument
[all...]
/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DJarFacade.h37 /* Returns a list of attributes */
41 void freeAttributes(jarAttribute* attributes);
44 char* getAttribute(const jarAttribute* attributes, const char* name);
/openjdk10/hotspot/src/os/posix/dtrace/
H A Dhs_private.d34 #pragma D attributes Private/Private/Common provider hs_private provider
35 #pragma D attributes Private/Private/Unknown provider hs_private module
36 #pragma D attributes Private/Private/Unknown provider hs_private function
37 #pragma D attributes Private/Private/Common provider hs_private name
38 #pragma D attributes Private/Private/Common provider hs_private args
/openjdk10/jdk/make/src/classes/build/tools/cldrconverter/
H A DLDMLParseHandler.java70 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { argument
80 if ("calendar".equals(attributes.getValue("key"))) {
81 pushStringEntry(qName, attributes, CLDRConverter.CALENDAR_NAME_PREFIX + attributes.getValue("type"));
93 pushStringEntry(qName, attributes,
96 attributes.getValue("type"));
105 pushKeyContainer(qName, attributes, attributes.getValue("type"));
110 pushStringEntry(qName, attributes, CLDRConverter.CURRENCY_SYMBOL_PREFIX
118 pushStringEntry(qName, attributes,
[all...]
H A DAbstractLDMLHandler.java86 boolean isIgnored(Attributes attributes) { argument
87 if (attributes.getValue("alt") != null) {
90 String draftValue = attributes.getValue("draft");
97 void pushContainer(String qName, Attributes attributes) { argument
98 if (isIgnored(attributes) || currentContainer instanceof IgnoredContainer) {
109 void pushKeyContainer(String qName, Attributes attributes, String key) { argument
110 if (!pushIfIgnored(qName, attributes)) {
118 void pushStringEntry(String qName, Attributes attributes, String key) { argument
119 if (!pushIfIgnored(qName, attributes)) {
127 void pushAliasEntry(String qName, Attributes attributes, Strin argument
136 pushStringEntry(String qName, Attributes attributes, String key, String value) argument
142 pushStringArrayEntry(String qName, Attributes attributes, String key, int length) argument
148 pushStringArrayElement(String qName, Attributes attributes, int index) argument
154 pushIfIgnored(String qName, Attributes attributes) argument
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DField.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
50 this.attributes = attributes;
54 return 6 + attributes.byteLength();
64 public final Attributes attributes; field in class:Field
44 Field(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
H A DMethod.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
50 this.attributes = attributes;
54 return 6 + attributes.byteLength();
64 public final Attributes attributes; field in class:Method
44 Method(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
/openjdk10/jdk/test/java/awt/font/TextLayout/
H A DAttributeValuesCastTest.java42 Map attributes = new HashMap();
43 attributes.put("Something","Somethign Else");
44 Font f = new Font(attributes);
/openjdk10/jaxp/test/javax/xml/jaxp/libs/org/xml/sax/ptests/
H A DMyAttrCHandler.java33 * Simple attributes handler.
56 String qName, Attributes attributes) throws SAXException {
64 int length = attributes.getLength();
72 string += "getLocalName <" + attributes.getLocalName(ind)
74 string += "getQName <" + attributes.getQName(ind) +">" + "\n";
75 string += "getType <" + attributes.getType(ind) +">" + "\n";
76 string += "getURI <" + attributes.getURI(ind) +">" + "\n";
77 string += "getValue <" + attributes.getValue(ind) +">" + "\n";
82 String gotLocalName = attributes.getLocalName(ind);
83 String gotQName = attributes
55 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/
H A DMultiDocPrintJob.java33 * job attributes.
38 * Print a {@code MultiDoc} with the specified job attributes. This method
47 * @param attributes the job attributes to be applied to this print job. If
48 * this parameter is {@code null} then the default attributes are
57 * attributes are not valid for this print job.
60 public void print(MultiDoc multiDoc, PrintRequestAttributeSet attributes) argument
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DAssertionData.java57 private final Map<QName, String> attributes; field in class:AssertionData
65 * contain any value nor any attributes.
79 * does not contain any value nor any attributes.
93 * contain a value or attributes.
97 * @param attributes map of model node's &lt;attribute name, attribute value&gt; pairs
105 public static AssertionData createAssertionData(final QName name, final String value, final Map<QName, String> attributes, boolean optional, boolean ignorable) throws IllegalArgumentException { argument
106 return new AssertionData(name, value, attributes, ModelNode.Type.ASSERTION, optional, ignorable);
111 * contains a value or attributes
115 * @param attributes map of model node's &lt;attribute name, attribute value&gt; pairs
121 public static AssertionData createAssertionParameterData(final QName name, final String value, final Map<QName, String> attributes) throw argument
142 AssertionData(QName name, String value, Map<QName, String> attributes, ModelNode.Type type, boolean optional, boolean ignorable) argument
[all...]
/openjdk10/jdk/test/javax/management/loading/
H A DMLetContentTest.java44 Map<String,String> attributes = new HashMap();
45 attributes.put("archive", archive);
46 attributes.put("Archive", "hahaha");
48 attributes.put("code", code);
49 attributes.put("codE", "hihi");
51 attributes.put("object", object);
52 attributes.put("obJect", "toto");
54 attributes.put("name", name);
55 attributes.put("NAME", "titi");
57 attributes
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DCatalogEntry.java38 * @param attributes The attributes
40 public CatalogEntry(String base, String... attributes) { argument
41 super(base, attributes);
/openjdk10/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleAttributeSequence.java32 * set of attributes, along with that set of attributes. It is used by
52 * The text attributes.
54 public AttributeSet attributes; field in class:AccessibleAttributeSequence
68 attributes = attr;
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DMutableAttributeSet.java30 * A generic interface for a mutable collection of unique attributes.
51 * the given attributes and values.
53 * @param attributes the set of attributes
55 public void addAttributes(AttributeSet attributes); argument
72 * Removes a set of attributes with the given {@code name}.
74 * @param attributes the set of attributes
76 public void removeAttributes(AttributeSet attributes); argument
80 * of attributes t
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DElementDefinitionImpl.java32 * attributes. In Level 2 it should enable the ChildRule support.
54 /** Default attributes. */
55 protected NamedNodeMapImpl attributes; field in class:ElementDefinitionImpl
65 attributes = new NamedNodeMapImpl(ownerDocument);
98 newnode.attributes = attributes.cloneMap(newnode);
104 * Query the attributes defined on this Element.
118 return attributes;

Completed in 507 milliseconds

1234567891011>>