HomeSort by relevance Sort by last modified time
    Searched refs:entRef (Results 26 - 50 of 67) sorted by null

12 3

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
processinginstructionsetdatanomodificationallowederr.java 77 Node entRef;
82 entRef = gender.getFirstChild();
83 assertNotNull("entRefNotNull", entRef);
84 piNode = (ProcessingInstruction) entRef.getLastChild();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributenodens06.java 75 EntityReference entRef;
82 entRef = doc.createEntityReference("ent4");
83 newChild = attribute.appendChild(entRef);
85 elementList = entRef.getChildNodes();
importNode11.java 74 EntityReference entRef;
81 entRef = aNewDoc.createEntityReference("ent3");
82 assertNotNull("createdEntRefNotNull", entRef);
83 aNode = doc.importNode(entRef, true);
nodenormalize01.java 88 EntityReference entRef;
107 entRef = newDoc.createEntityReference("EntRef");
108 assertNotNull("createdEntRefNotNull", entRef);
117 appendedChild = element3.appendChild(entRef);
139 entRef = (EntityReference) entRef.cloneNode(false);
143 appendedChild = element7.appendChild(entRef);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeinsertbefore15.js 92 var entRef;
106 entRef = doc.createEntityReference("delta");
107 elemChild = entRef.firstChild;
114 inserted = entRef.insertBefore(cdata,elemChild);
126 inserted = entRef.insertBefore(pi,elemChild);
138 inserted = entRef.insertBefore(comment,elemChild);
150 inserted = entRef.insertBefore(txt,elemChild);
162 inserted = entRef.insertBefore(elem,elemChild);
nodecomparedocumentposition26.js 91 var entRef;
108 entRef = varElem.firstChild;
110 assertNotNull("entRefNotNull",entRef);
115 entRef = doc.createEntityReference("ent4");
118 entRefChild1 = entRef.firstChild;
121 entRefPosition = entRef.compareDocumentPosition(entRefChild1);
123 entRefChild1Position = entRefChild1.compareDocumentPosition(entRef);
nodecomparedocumentposition27.js 91 var entRef;
108 entRef = varElem.firstChild;
110 assertNotNull("entRefNotNull",entRef);
115 entRef = doc.createEntityReference("ent4");
118 entRefChild1 = entRef.lastChild;
121 entRefPosition = entRef.compareDocumentPosition(entRefChild1);
123 entRefChild1Position = entRefChild1.compareDocumentPosition(entRef);
nodecomparedocumentposition28.js 92 var entRef;
110 entRef = varElem.firstChild;
112 assertNotNull("entRefNotNull",entRef);
117 entRef = doc.createEntityReference("ent4");
120 entRefChild1 = entRef.firstChild;
123 entRefChild2 = entRef.lastChild;
nodereplacechild22.js 90 var entRef;
102 entRef = doc.createEntityReference("beta");
103 appendedChild = elem.appendChild(entRef);
108 replacedChild = entRefMain.replaceChild(elem,entRef);
119 replacedChild = entRefMain.replaceChild(entRef,elem);
130 replacedChild = entRefMain.replaceChild(entRefMain,entRef);
nodereplacechild23.js 90 var entRef;
105 entRef = doc.createEntityReference("delta");
110 appendedChild = elem.appendChild(entRef);
119 replaced = entRef.replaceChild(cdata,elem);
130 replaced = entRef.replaceChild(pi,cdata);
141 replaced = entRef.replaceChild(comment,pi);
152 replaced = entRef.replaceChild(txt,comment);
163 replaced = entRef.replaceChild(elem,txt);
nodecomparedocumentposition25.js 92 var entRef;
103 entRef = elemName.firstChild;
105 elementPosition = elemName.compareDocumentPosition(entRef);
107 entRefPosition = entRef.compareDocumentPosition(elemName);
nodegettextcontent17.js 90 var entRef;
101 entRef = doc.createEntityReference("beta");
102 appendedChild = elem.appendChild(entRef);
103 textContent = entRef.textContent;
nodereplacechild24.js 91 var entRef;
103 entRef = elem.firstChild;
109 replaced = entRef.replaceChild(entRef,elem);
nodesettextcontent12.js 93 var entRef;
104 entRef = doc.createEntityReference("beta");
105 appendedChild = elem.appendChild(entRef);
110 entRef.textContent = "NA";
nodereplacechild18.js 90 var entRef;
105 entRef = doc.createEntityReference("alpha");
106 appendedChild = docFrag.appendChild(entRef);
108 replacedCData = docFrag.replaceChild(entRef,cdata);
112 replacedEref = docFrag.replaceChild(cdata,entRef);
nodesetuserdata08.js 91 var entRef;
110 entRef = doc.createEntityReference("delta");
113 entRef.setUserData("Key1", doc, null);
115 entRef.setUserData("Key1", doc, nullHandler.handle);
122 returned1 = entRef.getUserData("Key1");
nodesetuserdata10.js 91 var entRef;
112 entRef = varElem.firstChild;
116 entRef.setUserData("Key1", doc, null);
118 entRef.setUserData("Key1", doc, nullHandler.handle);
125 returned1 = entRef.getUserData("Key1");
nodegetbaseuri19.js 94 var entRef;
118 entRef = pElem.lastChild;
120 assertNotNull("entRefNotNull",entRef);
121 textNode = entRef.firstChild;
nodereplacechild19.js 90 var entRef;
103 entRef = doc.createEntityReference("alpha");
104 appendedChild = elem.appendChild(entRef);
106 replaced = docFrag.replaceChild(entRef,elem);
nodereplacechild25.js 94 var entRef;
111 entRef = elem.firstChild;
117 replaced = elem.replaceChild(entity,entRef);
128 replaced = elem.replaceChild(elem,entRef);
canonicalform01.js 101 var entRef;
123 entRef = doc.createEntityReference("ent1");
124 child = pElem.appendChild(entRef);
documentadoptnode16.js 94 var entRef;
118 entRef = doc.createEntityReference("gamma");
120 appendedChild = childsAttr.appendChild(entRef);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 105 EntityReference entRef;
125 entRef = newDoc.createEntityReference("EntRef");
126 assertNotNull("createdEntRefNotNull", entRef);
135 element3.appendChild(entRef);
157 entRef = (EntityReference) entRef.cloneNode(false);
161 element7.appendChild(entRef);
NodeIsSupported.java 163 EntityReference entRef;
166 entRef = doc.createEntityReference("ent1");
167 assertNotNull("createdEntRefNotNull", entRef);
168 success = entRef.isSupported("XML CORE", "");
ElementSetAttributeNodeNS.java 209 EntityReference entRef;
215 entRef = doc.createEntityReference("ent4");
216 attribute.appendChild(entRef);
218 elementList = entRef.getChildNodes();

Completed in 267 milliseconds

12 3