Home | History | Annotate | Download | only in dom

Lines Matching defs:toInsert

112         LeafNodeImpl toInsert = (LeafNodeImpl) newChild;
113 if (toInsert.document != null && document != null && toInsert.document != document) {
116 if (toInsert.isParentOf(this)) {
120 if (toInsert.parent != null) {
121 int oldIndex = toInsert.index;
122 toInsert.parent.children.remove(oldIndex);
123 toInsert.parent.refreshIndices(oldIndex);
126 children.add(index, toInsert);
127 toInsert.parent = this;