Lines Matching defs:nodeType

394      * only the immediate parent, _if_ it matches the requested nodeType.
434 * @param nodeType The extended type ID being requested.
436 public TypedChildrenIterator(int nodeType)
438 _nodeType = nodeType;
477 int nodeType = _nodeType;
479 if (nodeType >= DTM.NTYPES) {
480 while (node != DTM.NULL && _exptype(node) != nodeType) {
487 if (eType == nodeType) {
490 } else if (m_expandedNameTable.getType(eType) == nodeType) {
653 * @param nodeType The extended type ID being requested.
655 public TypedNamespaceIterator(int nodeType)
658 _nodeType = nodeType;
754 * @param nodeType The extended type ID being requested.
756 public TypedRootIterator(int nodeType)
759 _nodeType = nodeType;
772 int nodeType = _nodeType;
778 if (nodeType >= DTM.NTYPES) {
779 if (nodeType == expType) {
784 if (expType == nodeType) {
788 if (m_expandedNameTable.getType(expType) == nodeType) {
940 int nodeType = _nodeType;
942 if (nodeType >= DTM.NTYPES) {
945 } while (node != DTM.NULL && _exptype(node) != nodeType);
950 if (eType == nodeType) {
953 } else if (m_expandedNameTable.getType(eType) == nodeType) {
1031 * @param nodeType The extended type ID that is requested.
1033 public TypedAttributeIterator(int nodeType)
1035 _nodeType = nodeType;
1201 int nodeType = _nodeType;
1204 if (nodeType >= DTM.NTYPES) {
1205 while (node != NULL && node != startID && _exptype(node) != nodeType) {
1212 if (expType == nodeType) {
1216 if (m_expandedNameTable.getType(expType) == nodeType) {
1430 int nodeType = _nodeType;
1432 if (nodeType >= DTM.NTYPES) {
1444 } else if (_exptype(node) == nodeType) {
1465 if (expType == nodeType) {
1469 if (m_expandedNameTable.getType(expType) == nodeType) {
1773 int nodeType = _nodeType;
1781 if (nodeType >= DTM.NTYPES) {
1785 if (eType == nodeType) {
1795 && m_expandedNameTable.getType(eType) == nodeType)
1796 || (eType < DTM.NTYPES && eType == nodeType)) {
1934 * @param nodeType Extended type ID being requested.
1936 public TypedDescendantIterator(int nodeType)
1938 _nodeType = nodeType;
2160 * @param nodeType The extended type ID being requested.
2162 public TypedSingletonIterator(int nodeType)
2164 _nodeType = nodeType;
2177 int nodeType = _nodeType;
2181 if (nodeType >= DTM.NTYPES) {
2182 if (getExpandedTypeID(result) == nodeType) {
2186 if (getNodeType(result) == nodeType) {