449450451452453454455456457458459
final IntegerArray attributes = new IntegerArray(4); do { attributes.add(attribute); } while ((attribute = _nextSibling[attribute]) != 0); return new NamedNodeMapImpl(attributes.toIntArray()); } else { return getEmptyNamedNodeMap(); } }
468469470471472473474475476477478
int child = _offsetOrChild[_index]; do { children.add(child); } while ((child = _nextSibling[child]) != 0); return new NodeListImpl(children.toIntArray()); } else { return getEmptyNodeList(); } }
279280281282283284285286287288289
final IntegerArray list = new IntegerArray(); int node; while ((node = iter.next()) != NodeIterator.END) { list.add(node); } _nodes = list.toIntArray(); } public int getLength() { return _nodes.length; }
396397398399400401402403404405406
415416417418419420421422423424425
300301302303304305306307308309310
421422423424425426427428429430431
440441442443444445446447448449450