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

1 2 3

  /external/webkit/Source/WebCore/xml/
NativeXPathNSResolver.cpp 46 String NativeXPathNSResolver::lookupNamespaceURI(const String& prefix)
48 // This is not done by Node::lookupNamespaceURI as per the DOM3 Core spec,
53 return m_node ? m_node->lookupNamespaceURI(prefix) : String();
XPathNSResolver.idl 24 [ConvertNullStringTo=Null] DOMString lookupNamespaceURI(in DOMString prefix);
XPathNSResolver.h 40 virtual String lookupNamespaceURI(const String& prefix) = 0;
NativeXPathNSResolver.h 42 virtual String lookupNamespaceURI(const String& prefix);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCustomXPathNSResolver.mm 45 String DOMCustomXPathNSResolver::lookupNamespaceURI(const String& prefix)
50 namespaceURI = [m_customResolver lookupNamespaceURI:prefix];
DOMCustomXPathNSResolver.h 45 virtual String lookupNamespaceURI(const String& prefix);
DOMXPath.mm 59 - (NSString *)lookupNamespaceURI:(NSString *)prefix
61 return IMPL->lookupNamespaceURI(prefix);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomXPathNSResolver.cpp 55 String V8CustomXPathNSResolver::lookupNamespaceURI(const String& prefix)
58 v8::Handle<v8::String> lookupNamespaceURIName = v8::String::New("lookupNamespaceURI");
60 // Check if the resolver has a function property named lookupNamespaceURI.
62 v8::Handle<v8::Value> lookupNamespaceURI = m_resolver->Get(lookupNamespaceURIName);
63 if (lookupNamespaceURI->IsFunction())
64 lookupNamespaceURIFunc = v8::Handle<v8::Function>::Cast(lookupNamespaceURI);
70 logInfo(frame, "XPathNSResolver does not have a lookupNamespaceURI method.", String());
V8CustomXPathNSResolver.h 54 virtual String lookupNamespaceURI(const String& prefix);
  /external/webkit/Source/WebCore/bindings/js/
JSCustomXPathNSResolver.h 52 virtual String lookupNamespaceURI(const String& prefix);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodelookupnamespaceuri14.js 79 Invoke lookupNamespaceURI on a Element's new Text node, which has a namespace attribute declaration
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
94 var lookupNamespaceURI;
108 lookupNamespaceURI = cdata.lookupNamespaceURI("dom3");
109 assertEquals("nodelookupnamespaceuri14","http://www.w3.org/1999/xhtml",lookupNamespaceURI);
nodelookupnamespaceuri01.js 79 Return value from lookupNamespaceURI(null) on a Document node with no default namespace should be null.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
98 namespaceURI = doc.lookupNamespaceURI(nullPrefix);
nodelookupnamespaceuri03.js 82 Using lookupNamespaceURI on this DocumentType node check if the value returned is Null .
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
104 namespaceURI = docType.lookupNamespaceURI(nullPrefix);
nodelookupnamespaceuri04.js 82 Using lookupNamespaceURI on an Entity and Notation node and check if the value returned is Null .
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
112 namespaceURI = entity.lookupNamespaceURI("");
nodelookupnamespaceuri06.js 79 Invoke lookupNamespaceURI on an Element node with no prefix, which has a namespace
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
102 namespaceURI = elem.lookupNamespaceURI("dmstc");
nodelookupnamespaceuri07.js 79 Invoke lookupNamespaceURI on an Element node with no prefix, which has a namespace
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
102 namespaceURI = elem.lookupNamespaceURI("dmstc");
nodelookupnamespaceuri16.js 79 Invoke lookupNamespaceURI on a new Attribute node with with a namespace URI
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
103 namespaceURI = attr.lookupNamespaceURI("xml");
nodelookupnamespaceuri08.js 79 Invoke lookupNamespaceURI on an Element node with no prefix, which has 2 namespace
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
104 namespaceURI = elem.lookupNamespaceURI("dmstc");
106 namespaceURIEmpty = elem.lookupNamespaceURI("");
nodelookupnamespaceuri09.js 79 Invoke lookupNamespaceURI on an Element node with no prefix, whose parent has no prefix and
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
103 namespaceURI = elem.lookupNamespaceURI("dmstc");
105 namespaceURIEmpty = elem.lookupNamespaceURI("");
nodelookupnamespaceuri02.js 79 Using lookupNamespaceURI on a new Document node with a namespaceURI and prefix
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
114 namespaceURI = newDoc.lookupNamespaceURI("dom3");
nodelookupnamespaceuri05.js 79 Using lookupNamespaceURI on the DocumentElement node of a new document with a
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
117 namespaceURI = elem.lookupNamespaceURI("dom3");
nodelookupnamespaceuri10.js 79 Invoke lookupNamespaceURI on a new Child of a new Element node with a namespace URI
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
104 namespaceURI = child.lookupNamespaceURI("xhtml");
nodelookupnamespaceuri11.js 79 Invoke lookupNamespaceURI on an imported new Element node with a namespace URI and prefix
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
117 namespaceURI = importedNode.lookupNamespaceURI("dom3");
nodelookupnamespaceuri13.js 79 Invoke lookupNamespaceURI on a Element's new Text node, which has a namespace attribute declaration
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-lookupNamespaceURI
108 namespaceURI = txt.lookupNamespaceURI("dom3");
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 201 assertEquals(null, doctype.lookupNamespaceURI("a"));
203 assertEquals(null, sp.lookupNamespaceURI("a"));
206 assertEquals(null, png.lookupNamespaceURI("a"));
208 assertEquals(null, document.lookupNamespaceURI("a"));
209 assertEquals(null, menu.lookupNamespaceURI("a"));
210 assertEquals("http://addons", item.lookupNamespaceURI("a"));
211 assertEquals("http://addons", itemXmlns.lookupNamespaceURI("a"));
212 assertEquals("http://addons", itemXmlnsA.lookupNamespaceURI("a"));
213 assertEquals("http://addons", name.lookupNamespaceURI("a"));
214 assertEquals("http://addons", standard.lookupNamespaceURI("a"))
    [all...]

Completed in 361 milliseconds

1 2 3