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

1 2 3 4

  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSResourceResolver.java 69 * @param baseURI The absolute base URI of the resource being parsed, or
79 String baseURI);
LSInput.java 126 * <code>baseURI</code> as the base, if that fails, the behavior is
145 * <code>baseURI</code> as the base, if that fails, the behavior is
180 public void setBaseURI(String baseURI);
  /libcore/luni/src/main/java/org/xml/sax/ext/
EntityResolver2.java 119 * @param baseURI The document's base URI, serving as an additional
133 public InputSource getExternalSubset (String name, String baseURI)
170 * @param baseURI The URI with respect to which relative systemIDs
193 String baseURI,
DefaultHandler2.java 104 * @param baseURI The document's base URI, serving as an additional
116 public InputSource getExternalSubset (String name, String baseURI)
121 * Tells the parser to resolve the systemId against the baseURI
126 * be invoked with null <em>name</em> and <em>baseURI</em>, and
137 * @param baseURI The URI with respect to which relative systemIDs
155 String baseURI, String systemId)
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 167 * @param baseURI the base URI
171 public static URI resolve(final URI baseURI, final String reference) {
172 return URIUtils.resolve(baseURI, URI.create(reference));
179 * @param baseURI the base URI
183 public static URI resolve(final URI baseURI, URI reference){
184 if (baseURI == null) {
194 URI resolved = baseURI.resolve(reference);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri02.js 78 Using getBaseURI check if the baseURI attribute of a new Document node is null
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
93 var baseURI;
113 baseURI = newDoc.baseURI;
115 assertNull("baseURIIsNull",baseURI);
118 baseURI = newDoc.baseURI;
120 assertEquals("baseURISameAsDocURI","http://www.example.com/sample.xml".toLowerCase(),baseURI.toLowerCase());
nodegetbaseuri01.js 82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
90 var baseURI;
98 baseURI = doc.baseURI;
100 assertURIEquals("notNull",null,null,null,null,"barfoo",null,null,true,baseURI);
103 assertEquals("sameAsDocumentURI",documentURI,baseURI);
nodegetbaseuri03.js 78 Check that Node.baseURI is null for a DocumentType as defined in the Infoset Mapping (Appendix C).
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
91 var baseURI;
100 baseURI = docType.baseURI;
102 assertNull("nodegetbaseuri03",baseURI);
nodegetbaseuri05.js 78 Using getBaseURI check if the baseURI attribute of this DocumentElement is http://www.w3.org/DOM/L3Test.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
91 var baseURI;
100 baseURI = docElem.baseURI;
102 assertEquals("nodegetbaseuri05","http://www.w3.org/DOM/L3Test",baseURI);
nodegetbaseuri09.js 78 Get the baseURI value on an element with an explicit xml:base attribute.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
92 var baseURI;
101 baseURI = bodyElem.baseURI;
103 assertEquals("nodegetbaseuri09","http://www.w3.org/DOM/EmployeeID",baseURI);
nodegetbaseuri15.js 82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
90 var baseURI;
103 baseURI = attrNode.baseURI;
105 assertNull("baseURI",baseURI);
nodegetbaseuri17.js 82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
90 var baseURI;
104 baseURI = textNode.baseURI;
106 assertNull("baseURI",baseURI);
nodegetbaseuri18.js 82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
90 var baseURI;
104 baseURI = comment.baseURI;
106 assertNull("baseURI",baseURI);
nodegetbaseuri04.js 78 Node.baseURI for a document element without an xml:base attribute should be same as Document.documentURI.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
91 var baseURI;
101 baseURI = docElem.baseURI;
103 assertURIEquals("baseURI",null,null,null,null,"barfoo",null,null,true,baseURI);
106 assertEquals("baseURIEqualsDocURI",documentURI,baseURI);
nodegetbaseuri06.js 78 TODO Clarification: Create a new Element in this document. Since its baseURI should be the baseURI of
79 the Document Entity which I assume is not null, using getBaseURI check if the baseURI
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
93 var baseURI;
101 baseURI = doc.baseURI;
103 assertNotNull("nodegetbaseuri06",baseURI);
nodegetbaseuri11.js 79 check if the baseURI attribute of the new Processing Instruction node is the same as Document.documentURI.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
95 var baseURI;
111 baseURI = imported.baseURI;
113 assertURIEquals("equalsBarfooBase",null,null,null,null,"barfoo_base",null,null,true,baseURI);
116 assertEquals("equalsDocURI",docURI,baseURI);
nodegetbaseuri16.js 79 Node.getBaseURI for an EntityReference to should be the baseURI where the entity declaration occurs.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
91 var baseURI;
105 baseURI = entRef.baseURI;
107 assertURIEquals("baseURI",null,null,null,null,"external_barfoo",null,null,true,baseURI);
nodegetbaseuri19.js 79 Checks baseURI for a text node is null.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
92 var baseURI;
126 baseURI = textNode.baseURI;
128 assertNull("baseURI",baseURI);
nodegetbaseuri07.js 78 Append a created element to a document and check that its baseURI
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
92 var baseURI;
108 baseURI = newElement.baseURI;
110 assertEquals("nodegetbaseuri07","http://www.w3.org/DOM/EmployeeID",baseURI);
nodegetbaseuri10.js 79 check if the baseURI attribute of the new Processing Instruction node is "'http://www.w3.org/DOM/L3Test".
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
93 var baseURI;
105 baseURI = newPI.baseURI;
107 assertEquals("nodegetbaseuri10","http://www.w3.org/DOM/L3Test",baseURI);
nodegetbaseuri13.js 83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
94 var baseURI;
107 baseURI = notation.baseURI;
111 assertEquals("sameAsDocURI",docURI,baseURI);
112 assertURIEquals("entityBase",null,null,null,null,"hc_staff",null,null,true,baseURI);
nodegetbaseuri20.js 79 baseURI for an element from an entity reference should be the URI of the
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-baseURI
92 var baseURI;
104 baseURI = pElem.baseURI;
106 assertURIEquals("equalsExternalBarFoo",null,null,null,null,"external_widget",null,null,true,baseURI);
  /external/webkit/Source/WebCore/svg/
SVGImageLoader.cpp 52 KURL base = element()->baseURI();
  /external/webkit/Source/WebCore/wml/
WMLImageLoader.cpp 52 return KURL(element()->baseURI(), stripLeadingAndTrailingHTMLSpaces(attr));
  /frameworks/av/media/libstagefright/include/
M3UParser.h 29 M3UParser(const char *baseURI, const void *data, size_t size);
75 const AString &line, sp<AMessage> *meta, const AString &baseURI);

Completed in 271 milliseconds

1 2 3 4