HomeSort by relevance Sort by last modified time
    Searched refs:Attr (Results 276 - 300 of 311) sorted by null

<<111213

  /libcore/luni/src/test/java/tests/org/w3c/dom/
Prefix.java 33 import org.w3c.dom.Attr;
162 Attr addrAttr;
271 Attr addrAttr;
SetAttributeNS.java 34 import org.w3c.dom.Attr;
189 Attr addrAttr;
305 Attr addrAttr;
CreateAttributeNS.java 34 import org.w3c.dom.Attr;
202 Attr newAttr;
NodeIsSupported.java 35 import org.w3c.dom.Attr;
137 Attr attribute;
DocumentImportNode.java 11 import org.w3c.dom.Attr;
74 // Attr attr;
84 // attr = element.getAttributeNode("street");
85 // importedAttr = doc.importNode(attr, false);
103 Attr attr; local
115 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
116 importedAttr = docImported.importNode(attr, false);
131 // Attr attr
190 Attr attr; local
    [all...]
ImportNode.java 33 import org.w3c.dom.Attr;
50 * given importedNode into that Document. The importedNode is of type Attr. The
106 Attr newAttr;
134 attrOwnerElement = ((Attr) /* Node */aNode).getOwnerElement();
136 specified = ((Attr) /* Node */aNode).getSpecified();
301 // Node attr;
313 // attr = attributes.item(0);
314 // lname = attr.getLocalName();
  /external/bison/src/
symtab.c 82 #define SYMBOL_ATTR_PRINT(Attr) \
83 if (s->Attr) \
84 fprintf (f, " %s { %s }", #Attr, s->Attr)
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 26 import org.w3c.dom.Attr;
53 public class DOM2DTMdefaultNamespaceDeclarationNode implements Attr,TypeInfo
210 * for <code>Attr</code> nodes as for any other type of node. Note that
221 * attribute for <code>Attr</code> nodes, the
330 Node attr = map.item(i); local
331 String attrPrefix = attr.getPrefix();
332 String value = attr.getNodeValue();
333 namespace = attr.getNamespaceURI();
337 attr.getNodeName().equals("xmlns")) {
342 attr.getLocalName().equals(specifiedPrefix))
    [all...]
DOM2DTM.java 44 import org.w3c.dom.Attr;
154 // Attr to Namespace if necessary.
235 // to DOM Attr Nodes.
541 // Attr to Namespace if necessary.
727 : ((org.w3c.dom.Attr)cursor).getOwnerElement())
1479 Attr attr = (Attr)getNode(attributeHandle); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMHelper.java 35 import org.w3c.dom.Attr;
555 Attr attr=((Element)parent).getAttributeNode(declname); local
556 if(attr!=null)
558 namespace = attr.getNodeValue();
707 Node attr = nnm.item(i); local
708 String aname = attr.getNodeName();
726 namespaceOfPrefix = attr.getNodeValue();
865 * @param attr Attr to be examine
    [all...]
  /libcore/luni/src/test/java/tests/xml/
DomTest.java 22 import org.w3c.dom.Attr;
105 private Attr itemXmlns;
106 private Attr itemXmlnsA;
108 private Attr standard;
109 private Attr deluxe;
121 private Attr vitaminsXmlnsA;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 23 import org.w3c.dom.Attr;
134 Attr attr = (Attr) node; local
135 AttrImpl attrCopy = createAttributeNS(attr.getNamespaceURI(), attr.getLocalName());
136 attrCopy.setPrefix(attr.getPrefix());
137 attrCopy.setNodeValue(attr.getNodeValue());
237 AttrImpl attr = (AttrImpl) node; local
238 if (attr.ownerElement != null)
    [all...]
NodeImpl.java 25 import org.w3c.dom.Attr;
173 ((Attr) this).setValue(nodeValue);
248 AttrImpl attr = (AttrImpl) node; local
249 attr.namespaceAware = true;
250 attr.namespaceURI = namespaceURI;
251 attr.prefix = prefix;
252 attr.localName = qualifiedName;
469 return (NodeImpl) ((Attr) this).getOwnerElement();
519 Node attr = attributes.item(i); local
520 if (!"http://www.w3.org/2000/xmlns/".equals(attr.getNamespaceURI()
584 Node attr = attributes.item(i); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 30 import org.w3c.dom.Attr;
326 Attr attr = document.createAttributeNS(attrNamespace, attrName); local
327 attr.setPrefix(attrPrefix);
328 attr.setValue(attrValue);
329 element.setAttributeNodeNS(attr);
353 Attr attr = document.createAttribute(attrName); local
354 attr.setValue(attrValue);
355 element.setAttributeNode(attr);
    [all...]
  /external/webkit/WebKit/win/
DOMCreateInstance.cpp 82 #include <WebCore/Attr.h>
184 domNode = new GEN_DOMAttr(static_cast<WebCore::Attr*>(node));
  /cts/tools/utils/
DescriptionGenerator.java 35 import org.w3c.dom.Attr;
433 Attr attr = mDoc.createAttribute(name); local
434 attr.setNodeValue(value);
436 elem.getAttributes().setNamedItem(attr);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMManagerDefault.java 553 Node p = (root.getNodeType() == Node.ATTRIBUTE_NODE) ? ((org.w3c.dom.Attr)root).getOwnerElement() : root.getParentNode();
569 handle=dtm.getHandleOfNode(((org.w3c.dom.Attr)node).getOwnerElement());
  /external/webkit/WebCore/bindings/js/
JSNodeCustom.cpp 29 #include "Attr.h"
193 wrapper = CREATE_DOM_NODE_WRAPPER(exec, globalObject, Attr, node);
  /external/webkit/WebCore/bindings/v8/custom/
V8NodeCustom.cpp 180 return toV8(static_cast<Attr*>(impl), forceNewObject);
  /external/webkit/WebCore/dom/
Document.idl 45 [ReturnsNew] Attr createAttribute(in DOMString name)
59 [OldStyleObjC, ReturnsNew] Attr createAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
Node.cpp 33 #include "Attr.h"
180 Attribute* attr = attrMap->attributeItem(i); local
181 if (attr->attr())
183 if (attr->isMappedAttribute()) {
185 if (attr->style())
270 printf(" Number of Attributes with an Attr: %zu\n", attributesWithAttr);
1059 // Element::setPrefix() and Attr::setPrefix()
1076 // Attribute-specific checks are in Attr::setPrefix().
1793 Attribute* attr = attrs->attributeItem(i); local
1815 const Attr* attr = static_cast<const Attr*>(this); local
1848 const Attr *attr = static_cast<const Attr *>(this); local
1879 Attribute *attr = attrs->attributeItem(i); local
1908 const Attr *attr = static_cast<const Attr *>(this); local
1934 Attribute *attr = attrs->attributeItem(i); local
2080 Attribute* attr = map->attributeItem(i); local
2174 String attr = static_cast<const Element*>(node)->getAttribute(name); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 40 import org.w3c.dom.Attr;
207 String attr = _Element_getAttributeNS(elem, local
210 if (attr == null || attr.length() == 0) {
211 attr = _Element_getAttributeNS(elem,
215 if (attr == null || attr.length() == 0) {
216 attr = _Element_getAttributeNS(elem,
220 if (attr == null || attr.length() == 0)
848 Attr attr = doc.createAttributeNS(XmlnsAttributeDescriptor.XMLNS_URI, local
1282 Attr attr = doc.createAttributeNS(attrNsUri, attrLocalName); local
1367 Node attr = attrs.item(n); local
1398 Attr attr = doc.createAttributeNS(XmlnsAttributeDescriptor.XMLNS_URI, prefix); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 35 import org.w3c.dom.Attr;
218 * @return The Attr value as a string, or the empty string if that attribute
272 * @return The Attr value as a string, or the empty string if that attribute
732 public class Attribute implements Attr{
736 * Construct a Attr.
867 * @return The node is an Attr
1075 * @see org.w3c.dom.Attr
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8GCController.cpp 266 root = static_cast<Attr*>(node)->ownerElement();
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 38 import org.w3c.dom.Attr;
659 * Serializes the Attr Nodes of an Element.
661 * @param node The OwnerElement whose Attr Nodes are to be serialized.
668 Node attr = atts.item(i); local
670 String localName = attr.getLocalName();
671 String attrName = attr.getNodeName();
672 String attrPrefix = attr.getPrefix() == null ? "" : attr.getPrefix();
673 String attrValue = attr.getNodeValue();
675 // Determine the Attr's type.
1828 Node attr = atts.item(i); local
    [all...]

Completed in 312 milliseconds

<<111213