Searched refs:NodeImpl (Results 1 - 8 of 8) sorted by relevance
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
H A D | NodeListImpl.java | 36 private List<NodeImpl> children; 39 children = new ArrayList<NodeImpl>(); 42 NodeListImpl(List<NodeImpl> list) { 46 void add(NodeImpl node) {
|
H A D | DocumentImpl.java | 74 private WeakHashMap<NodeImpl, Map<String, UserData>> nodeToUserData; 129 private NodeImpl shallowCopy(short operation, Node node) { 220 NodeImpl copy = shallowCopy(operation, node); 243 if (!(node instanceof NodeImpl)) { 246 NodeImpl nodeImpl = (NodeImpl) node; 291 private void changeDocumentToThis(NodeImpl node) { 301 changeDocumentToThis((NodeImpl) list.item(i)); 318 setNameNS((NodeImpl) node, namespaceURI, qualifiedName); 495 Map<String, UserData> getUserDataMap(NodeImpl nod [all...] |
H A D | LeafNodeImpl.java | 33 public abstract class LeafNodeImpl extends NodeImpl {
|
H A D | EntityImpl.java | 32 public class EntityImpl extends NodeImpl implements Entity {
|
H A D | NodeImpl.java | 47 public abstract class NodeImpl implements Node { class in inherits:Node 70 NodeImpl(DocumentImpl document) { method in class:NodeImpl 228 static void setNameNS(NodeImpl node, String namespaceURI, String qualifiedName) { 277 static void setName(NodeImpl node, String name) { 448 private NodeImpl getNamespacingElement() { 454 return (NodeImpl) ((Document) this).getDocumentElement(); 463 return (NodeImpl) ((Attr) this).getOwnerElement(); 481 private NodeImpl getContainingElement() { 484 return (NodeImpl) p; 498 NodeImpl targe [all...] |
H A D | AttrImpl.java | 35 public final class AttrImpl extends NodeImpl implements Attr {
|
H A D | InnerNodeImpl.java | 58 for (NodeImpl node : children) { 223 ((NodeImpl) child).getTextContent(buf); 236 for (NodeImpl node : children) { 248 for (NodeImpl node : children) {
|
H A D | ElementImpl.java | 149 for (NodeImpl node : children) {
|
Completed in 214 milliseconds