HomeSort by relevance Sort by last modified time
    Searched refs:lookupPrefix (Results 1 - 25 of 49) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 271 assertEquals(null, document.lookupPrefix("http://addons"));
272 assertEquals(null, doctype.lookupPrefix("http://addons"));
274 assertEquals(null, sp.lookupPrefix("http://addons"));
277 assertEquals(null, png.lookupPrefix("http://addons"));
279 assertEquals(null, menu.lookupPrefix("http://addons"));
280 assertEquals("a", item.lookupPrefix("http://addons"));
281 assertEquals("a", itemXmlns.lookupPrefix("http://addons"));
282 assertEquals("a", itemXmlnsA.lookupPrefix("http://addons"));
283 assertEquals("a", name.lookupPrefix("http://addons"));
284 assertEquals("a", standard.lookupPrefix("http://addons"))
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodelookupprefix04.js 82 Using lookupPrefix on an Entity and Notation node and check if the value returned is Null .
112 prefix = entity.lookupPrefix("");
114 prefix = notation.lookupPrefix("");
nodelookupprefix08.js 79 Invoke lookupPrefix on an Element node with no prefix, which has 2 namespace
103 prefix = elem.lookupPrefix("http://www.usa.com");
105 prefixEmpty = elem.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix09.js 82 Invoke lookupPrefix on an Element node with no prefix, whose parent has no prefix and
106 prefix = elem.lookupPrefix("http://www.usa.com");
108 prefixEmpty = elem.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix18.js 79 Invoke lookupPrefix on the default attribute node of the p node with
107 prefix = attr.lookupPrefix("http://www.w3.org/1999/xhtml");
109 prefix = attr.lookupPrefix("http://www.altavista.com");
nodelookupprefix01.js 82 Using lookupPrefix on this Document node check if the value returned is Null .
101 prefix = doc.lookupPrefix(nullNSURI);
nodelookupprefix03.js 82 Using lookupPrefix on this DocumentType node check if the value returned is Null .
104 prefix = docType.lookupPrefix(nullNSURI);
nodelookupprefix06.js 79 Invoke lookupPrefix on an Element node with no prefix, which has a namespace
102 prefix = elem.lookupPrefix("http://www.netzero.com");
nodelookupprefix07.js 79 Invoke lookupPrefix on an Element node with no prefix, which has a namespace
102 prefix = elem.lookupPrefix("http://www.netzero.com");
nodelookupprefix16.js 78 Invoke lookupPrefix on a new Attribute node with with a namespace URI
102 prefix = attr.lookupPrefix("http://www.w3.org/XML/1998/namespace");
nodelookupprefix02.js 79 Using lookupPrefix on a new Document node with a namespaceURI and prefix
114 prefix = newDoc.lookupPrefix(rootNS);
nodelookupprefix05.js 79 Using lookupPrefix on the DocumentElement node of a new document with a
117 prefix = elem.lookupPrefix(rootNS);
nodelookupprefix10.js 79 Invoke lookupPrefix on a new Child of a new Element node with a namespace URI
104 prefix = child.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix11.js 79 Invoke lookupPrefix on an imported new Element node with a namespace URI
119 prefix = importedNode.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix12.js 79 Invoke lookupPrefix on an renamed new Element node with a namespace URI
104 prefix = renamedNode.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix13.js 79 Invoke lookupPrefix on a Element's new Text node, which has a namespace attribute declaration
109 prefix = txt.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix14.js 79 Invoke lookupPrefix on a Element's new CDATA node, which has a namespace attribute declaration
109 prefix = cdata.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix15.js 79 Invoke lookupPrefix on a Element's new Comment node, which has a namespace attribute declaration
111 prefix = clonedComment.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix17.js 79 Invoke lookupPrefix on the title attribute node of the acronym node with
107 prefix = attr.lookupPrefix("http://www.netzero.com");
nodelookupprefix19.js 79 Invoke lookupPrefix on the an attribute node without a namespace prefix of
107 prefix = attr.lookupPrefix("http://www.w3.org/1999/xhtml");
nodelookupprefix20.js 82 Invoke lookupPrefix on the an attribute node without a namespace prefix of
110 prefix = attr.lookupPrefix("http://www.altavista.com");
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 474 public String lookupPrefix(String namespaceURI){
493 return((NodeImpl)((Document)this).getDocumentElement()).lookupPrefix(namespaceURI);
504 return getOwnerElement().lookupPrefix(namespaceURI);
513 return ancestor.lookupPrefix(namespaceURI);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 78 String prefix = mDoc.lookupPrefix(SdkConstants.NS_RESOURCES);
  /external/webkit/Source/WebCore/dom/
Node.idl 104 [ConvertNullStringTo=Null] DOMString lookupPrefix(in [ConvertNullToNullString] DOMString namespaceURI);

Completed in 2408 milliseconds

1 2