Searched defs:fRoot (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeIteratorImpl.java51 private Node fRoot; field in class:NodeIteratorImpl
97 fRoot = root;
105 return fRoot;
140 if (fRoot == null) return null;
196 if (fRoot == null || fCurrentNode == null) return null;
251 for (Node n = fCurrentNode; n != fRoot; n = n.getParentNode()) {
265 if (node == null) return fRoot;
277 if (node == fRoot) { //if Root has no kids
288 while (parent != null && parent != fRoot) {
296 } // while (parent != null && parent != fRoot) {
[all...]
H A DTreeWalkerImpl.java49 Node fRoot; field in class:TreeWalkerImpl
53 // (fWhatToShow, fNodeFilter, fCurrentNode, fRoot) such that
68 fRoot = root;
75 return fRoot;
276 if (node == null || node == fRoot) return null;
300 return getNextSibling(node, fRoot);
355 return getPreviousSibling(node, fRoot);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMValidatorHelper.java146 private Node fRoot; field in class:DOMValidatorHelper
176 fRoot = node;
201 fRoot = null;
555 if (fRoot != null) {
556 Node currentNode = fRoot.getParentNode();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractDOMParser.java251 protected Node fRoot; field in class:AbstractDOMParser
394 fRoot = null;
443 fRoot = null;
1027 if (fRoot == null) {
1029 fRoot = el;
1327 if ((fCurrentNode != fRoot) && !fInEntityRef && (fDOMFilter.getWhatToShow () & NodeFilter.SHOW_ELEMENT)!=0) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java355 private XSDocumentInfo fRoot = null; field in class:XSDHandler
619 fRoot = constructTrees(schemaRoot, is.getSystemId(), desc, grammar != null);
620 if (fRoot == null) {
673 return fGrammarBucket.getGrammar(fRoot.fTargetNamespace);
1217 // Starting with fRoot, we examine each child of the schema
1228 schemasToProcess.push(fRoot);
1352 // (fRoot), this method
1367 setSchemasVisible(fRoot);
1369 schemasToProcess.push(fRoot);
3437 fRoot
[all...]

Completed in 56 milliseconds