HomeSort by relevance Sort by last modified time
    Searched refs:doc (Results 126 - 150 of 3924) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
SetAttributeNS.java 82 Document doc; local
85 doc = (Document) load("staffNS", builder);
86 elementList = doc.getElementsByTagName("employee");
103 Document doc; local
106 doc = (Document) load("staffNS", builder);
107 elementList = doc.getElementsByTagName("emp:employee");
127 // Document doc;
135 // doc = (Document) load("staffNS", builder);
136 // genderList = doc.getElementsByTagName("gender");
143 // gen = doc.createEntityReference("ent4")
162 Document doc; local
193 Document doc; local
211 Document doc; local
232 Document doc; local
254 Document doc; local
282 Document doc; local
    [all...]
NodeIsSupported.java 83 Document doc; local
99 doc = (Document) load("staffNS", builder);
100 element = doc.getDocumentElement();
118 Document doc; local
134 doc = (Document) load("staffNS", builder);
135 attribute = doc.createAttribute("TestAttr");
153 Document doc; local
156 doc = (Document) load("staffNS", builder);
157 docType = doc.getDoctype();
162 Document doc; local
172 Document doc; local
    [all...]
NamedNodeMapRemoveNamedItemNS.java 76 Document doc; local
81 doc = (Document) load("staffNS", builder);
82 elementList = doc.getElementsByTagNameNS("http://www.nist.gov",
95 // Document doc;
103 // doc = (Document) load("staffNS", builder);
104 // elementList = doc.getElementsByTagNameNS("http://www.nist.gov",
116 Document doc; local
124 doc = (Document) load("staffNS", builder);
125 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root");
126 attribute1 = doc
141 Document doc; local
208 Document doc; local
230 Document doc; local
252 Document doc; local
275 Document doc; local
    [all...]
DocumentCreateAttributeNS.java 80 Document doc; local
88 doc = (Document) load("staffNS", builder);
89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
102 Document doc; local
110 doc = (Document) load("staffNS", builder);
111 attribute1 = doc.createAttributeNS(
126 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/",
142 Document doc; local
157 doc = (Document) load("staffNS", builder);
164 doc.createAttributeNS(namespaceURI, qualifiedName)
173 Document doc; local
202 Document doc; local
227 Document doc; local
251 Document doc; local
    [all...]
SetNamedItemNS.java 77 Document doc; local
85 doc = (Document) load("staffNS", builder);
86 elementList = doc.getElementsByTagName("address");
106 Document doc; local
113 doc = (Document) load("staffNS", builder);
117 elementList = doc.getElementsByTagName("address");
134 Document doc; local
142 doc = (Document) load("staffNS", builder);
143 arg = doc.createAttributeNS(namespaceURI, qualifiedName);
145 elementList = doc.getElementsByTagName("address")
199 Document doc; local
    [all...]
ElementSetAttributeNS.java 56 Document doc; local
61 doc = (Document) load("staff", builder);
62 element = doc.createElementNS("http://www.w3.org/DOM", "dom:elem");
73 Document doc; local
79 doc = (Document) load("staff", builder);
80 elementList = doc.getElementsByTagNameNS("*", "address");
94 Document doc; local
100 doc = (Document) load("staffNS", builder);
101 elementList = doc.getElementsByTagName("emp:employee");
117 Document doc; local
150 Document doc; local
169 Document doc; local
201 Document doc; local
    [all...]
SetAttributeNodeNS.java 85 Document doc; local
91 doc = (Document) load("staffNS", builder);
92 elementList = doc.getElementsByTagName("emp:address");
95 newElement = doc.createElement("newElement");
97 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
113 // Document doc;
122 // doc = (Document) load("staffNS", builder);
125 // genderList = doc.getElementsByTagName("gender");
130 // gen = doc.createEntityReference("ent4");
136 // newAttr = doc.createAttributeNS("www.xyz.com", "emp:local1")
151 Document doc; local
166 Document doc; local
    [all...]
ImportNode.java 92 Document doc; local
110 doc = (Document) load("staffNS", builder);
115 aNode = doc.importNode(newAttr, false);
135 Document doc; local
143 doc = (Document) load("staffNS", builder);
146 aNode = doc.importNode(cDataSec, false);
157 Document doc; local
165 doc = (Document) load("staffNS", builder);
168 aNode = doc.importNode(comment, false);
179 Document doc; local
200 Document doc; local
227 Document doc; local
276 Document doc; local
334 Document doc; local
443 Document doc; local
469 Document doc; local
491 Document doc; local
510 Document doc; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlParser.java 56 SMILDocument doc = mContentHandler.getSmilDocument(); local
57 validateDocument(doc);
59 return doc;
62 private void validateDocument(SMILDocument doc) {
69 doc.getBody();
75 doc.getLayout();
  /external/webkit/Source/WebCore/html/
ValidationMessage.cpp 85 Document* doc = m_bubbleMessage->document(); local
89 m_bubbleMessage->appendChild(HTMLBRElement::create(doc), ec);
90 m_bubbleMessage->appendChild(Text::create(doc, lines[i]), ec);
92 RefPtr<HTMLElement> bold = HTMLElement::create(bTag, doc);
98 int magnification = doc->page() ? doc->page()->settings()->validationMessageTimerMaginification() : -1;
109 static PassRefPtr<HTMLElement> create(Document* doc, const AtomicString& pseudoName)
111 return adoptRef(new ElementWithPseudoId(doc, pseudoName));
115 ElementWithPseudoId(Document* doc, const AtomicString& pseudoName)
116 : HTMLElement(divTag, doc)
127 Document* doc = host->document(); local
    [all...]
  /external/libxml2/include/libxml/
entities.h 47 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlEntity
82 xmlNewEntity (xmlDocPtr doc,
89 xmlAddDocEntity (xmlDocPtr doc,
96 xmlAddDtdEntity (xmlDocPtr doc,
105 xmlGetDocEntity (xmlDocPtr doc,
108 xmlGetDtdEntity (xmlDocPtr doc,
111 xmlGetParameterEntity (xmlDocPtr doc,
115 xmlEncodeEntities (xmlDocPtr doc,
119 xmlEncodeEntitiesReentrant(xmlDocPtr doc,
122 xmlEncodeSpecialChars (xmlDocPtr doc,
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLDocument19.js 46 if (typeof(this.doc) != 'undefined') {
47 docRef = this.doc;
49 docsLoaded += preload(docRef, "doc", "document");
88 var doc;
93 if (typeof(this.doc) != 'undefined') {
94 docRef = this.doc;
96 doc = load(docRef, "doc", "document");
97 doc.open();
104 doc.write("<html>")
    [all...]
HTMLDocument20.js 46 if (typeof(this.doc) != 'undefined') {
47 docRef = this.doc;
49 docsLoaded += preload(docRef, "doc", "document");
88 var doc;
93 if (typeof(this.doc) != 'undefined') {
94 docRef = this.doc;
96 doc = load(docRef, "doc", "document");
97 doc.open();
104 doc.writeln("<html>")
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLDocument19.js 46 if (typeof(this.doc) != 'undefined') {
47 docRef = this.doc;
49 docsLoaded += preload(docRef, "doc", "document");
88 var doc;
93 if (typeof(this.doc) != 'undefined') {
94 docRef = this.doc;
96 doc = load(docRef, "doc", "document");
97 doc.open();
104 doc.write("<html>")
    [all...]
HTMLDocument20.js 46 if (typeof(this.doc) != 'undefined') {
47 docRef = this.doc;
49 docsLoaded += preload(docRef, "doc", "document");
88 var doc;
93 if (typeof(this.doc) != 'undefined') {
94 docRef = this.doc;
96 doc = load(docRef, "doc", "document");
97 doc.open();
104 doc.writeln("<html>")
    [all...]
  /external/libxml2/
xlink.c 110 * @doc: the document containing the node
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) {
128 if (doc == NULL) doc = node->doc;
129 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
157 xlink = xmlSearchNs(doc, node, XLINK_NAMESPACE);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrinsertbefore7.java 61 Document doc; local
75 doc = (Document) load("hc_staff", true);
76 acronymList = doc.getElementsByTagName("acronym");
80 terNode = doc.createTextNode("ter");
87 dayNode = doc.createCDATASection("day");
94 dayNode = doc.createCDATASection("day");
95 docFrag = doc.createDocumentFragment();
elementinuseattributeerr.java 71 Document doc; local
79 doc = (Document) load("staff", true);
80 addressElementList = doc.getElementsByTagName("address");
82 newElement = doc.createElement("newElement");
84 newAttribute = doc.createAttribute("newAttribute");
elementsetattributenodenomodificationallowederr.java 68 Document doc; local
76 doc = (Document) load("staff", true);
77 genderList = doc.getElementsByTagName("gender");
84 entRef = doc.createEntityReference("ent4");
89 newAttr = doc.createAttribute("newAttr");
elementsetattributenodenomodificationallowederrEE.java 74 Document doc; local
82 doc = (Document) load("staff", true);
83 genderList = doc.getElementsByTagName("gender");
85 entRef = doc.createEntityReference("ent4");
90 newAttr = doc.createAttribute("newAttr");
hc_attrappendchild4.java 62 Document doc; local
71 doc = (Document) load("hc_staff", true);
72 acronymList = doc.getElementsByTagName("acronym");
82 textNode = doc.createCDATASection("terday");
89 textNode = doc.createCDATASection("terday");
hc_attrgetvalue2.java 60 Document doc; local
70 doc = (Document) load("hc_staff", true);
71 acronymList = doc.getElementsByTagName("acronym");
81 alphaRef = doc.createEntityReference("alpha");
88 alphaRef = doc.createEntityReference("alpha");
hc_attrinsertbefore5.java 62 Document doc; local
72 doc = (Document) load("hc_staff", true);
73 acronymList = doc.getElementsByTagName("acronym");
83 textNode = doc.createCDATASection("terday");
90 textNode = doc.createCDATASection("terday");
hc_attrnormalize.java 59 Document doc; local
69 doc = (Document) load("hc_staff", true);
70 acronymList = doc.getElementsByTagName("acronym");
74 textNode = doc.createTextNode("terday");
76 textNode = doc.createTextNode("");
  /cts/tools/utils/cts/
tools.py 53 def WriteDescription(self, doc, parent):
56 child = doc.createElement('TestSuite')
60 suite.WriteDescription(doc, child)
62 child = doc.createElement('TestCase')
66 test = doc.createElement('Test')
95 doc = minidom.Document()
96 package = doc.createElement('TestPackage')
99 self.root_suite.WriteDescription(doc, package)
100 doc.appendChild(package)
101 return doc
    [all...]

Completed in 6992 milliseconds

1 2 3 4 56 7 8 91011>>