Searched refs:attribute (Results 76 - 81 of 81) sorted by relevance

1234

/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDocumentCreateAttributeNS.java36 * The method createAttributeNS creates an attribute of the given qualified name
81 Attr attribute;
89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
90 nodeName = attribute.getNodeName();
/libcore/luni/src/main/java/java/util/
H A DLocale.java645 * Adds the specified attribute to the list of attributes in the unicode
657 * @throws IllformedLocaleException if {@code attribute} is invalid.
658 * @throws NullPointerException if {@code attribute} is null.
660 public Builder addUnicodeLocaleAttribute(String attribute) { argument
661 if (attribute == null) {
662 throw new NullPointerException("attribute == null");
665 final String lowercaseAttribute = attribute.toLowerCase(Locale.ROOT);
667 throw new IllformedLocaleException("Invalid locale attribute: " + attribute);
676 * Removes an attribute fro
688 removeUnicodeLocaleAttribute(String attribute) argument
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DXmlPullParserFactoryTest.java190 public XmlSerializer attribute(String namespace, String name, String value) throws IOException { method in class:XmlPullParserFactoryTest.XmlSerializerStub
H A DXsltXPathConformanceTestSuite.java193 * <purpose>Set attribute of a LRE from single attribute set.</purpose>
551 serializer.attribute(attr.getNamespaceURI(), attr.getLocalName(), attr.getValue());
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java423 public XmlSerializer attribute( method in class:KXmlSerializer
429 throw new IllegalStateException("illegal position for attribute");
/libcore/luni/src/main/java/java/text/
H A DSimpleDateFormat.java490 Format.Field attribute = pos.getFieldAttribute();
491 as.addAttribute(attribute, attribute, pos.getBeginIndex(), pos.getEndIndex());

Completed in 427 milliseconds

1234