Searched defs:whatToShow (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/traversal/
H A DDocumentTraversal.java64 * just before this node. The <code>whatToShow</code> flags and the
67 * @param whatToShow This flag specifies which node types may appear in
83 int whatToShow,
92 * <code>TreeWalker</code>. The <code>whatToShow</code> flags and the
101 * @param whatToShow This flag specifies which node types may appear in
117 int whatToShow,
82 createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
116 createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMFilter.java32 // Constants for whatToShow. These are used to set the node type that will
153 * @param whatToShow one of SHOW_XXX values.
156 public short acceptNode(int nodeHandle, int whatToShow); argument
182 * @param whatToShow one of SHOW_XXX values.
188 public short acceptNode(int nodeHandle, int whatToShow, int expandedName); argument
H A DDTMManager.java270 * Create a new <code>DTMIterator</code> based only on a whatToShow
279 * @param whatToShow This flag specifies which node types may appear in
291 public abstract DTMIterator createDTMIterator(int whatToShow, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeIteratorImpl.java32 * <p>The whatToShow and filter functionality is implemented as expected.
52 /** The whatToShow mask. */
93 int whatToShow,
99 fWhatToShow = whatToShow;
108 // Implementation Note: Note that the iterator looks at whatToShow
112 /** Return the whatToShow value */
128 * depth-first order which also passes the filter, and whatToShow.
168 // does node pass the filters and whatToShow?
185 * _backwards_ depth-first order which also passes the filter, and whatToShow.
219 // check if node passes filters and whatToShow
91 NodeIteratorImpl( DocumentImpl document, Node root, int whatToShow, NodeFilter nodeFilter, boolean entityReferenceExpansion) argument
[all...]
H A DTreeWalkerImpl.java42 /** The whatToShow mask. */
64 int whatToShow,
69 fWhatToShow = whatToShow;
78 /** Return the whatToShow value */
83 public void setWhatShow(int whatToShow){ argument
84 fWhatToShow = whatToShow;
480 * The node whatToShow and the filter are combined into one result. */
483 7.1.2.4. Filters and whatToShow flags
485 Iterator and TreeWalker apply whatToShow flags before applying Filters. If a node is rejected by the
486 active whatToShow flag
63 TreeWalkerImpl(Node root, int whatToShow, NodeFilter nodeFilter, boolean entityReferenceExpansion) argument
[all...]
H A DDocumentImpl.java191 * @param whatToShow The whatToShow mask.
195 short whatToShow,
198 return createNodeIterator(root, whatToShow, filter, true);
207 * @param whatToShow The whatToShow mask.
214 int whatToShow,
226 whatToShow,
243 * @param whatToShow The whatToShow mas
194 createNodeIterator(Node root, short whatToShow, NodeFilter filter) argument
213 createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
246 createTreeWalker(Node root, short whatToShow, NodeFilter filter) argument
262 createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMManagerDefault.java788 * NEEDSDOC @param whatToShow
794 synchronized public DTMIterator createDTMIterator(int whatToShow, DTMFilter filter, argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DNodeTest.java197 * @param whatToShow Bit set defined mainly by {@link org.w3c.dom.traversal.NodeFilter}.
201 public NodeTest(int whatToShow, String namespace, String name) argument
203 initNodeTest(whatToShow, namespace, name);
210 * @param whatToShow Bit set defined mainly by {@link org.w3c.dom.traversal.NodeFilter}.
212 public NodeTest(int whatToShow) argument
214 initNodeTest(whatToShow);
262 * Initialize this node test by setting the whatToShow property, and
266 * @param whatToShow Bit set defined mainly by {@link org.w3c.dom.traversal.NodeFilter}.
268 public void initNodeTest(int whatToShow) argument
271 m_whatToShow = whatToShow;
286 initNodeTest(int whatToShow, String namespace, String name) argument
361 getNodeTypeTest(int whatToShow) argument
415 debugWhatToShow(int whatToShow) argument
[all...]
H A DStepPattern.java52 * @param whatToShow Bit set defined mainly by {@link org.w3c.dom.traversal.NodeFilter}.
58 public StepPattern(int whatToShow, String namespace, String name, int axis, argument
62 super(whatToShow, namespace, name);
71 * @param whatToShow Bit set defined mainly by {@link org.w3c.dom.traversal.NodeFilter}.
75 public StepPattern(int whatToShow, int axis, int axisForPredicate) argument
78 super(whatToShow);
98 int whatToShow = getWhatToShow();
100 switch (whatToShow)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java270 * Create a new <code>DTMIterator</code> based only on a whatToShow and
274 * @param whatToShow This flag specifies which node types may appear in
286 public DTMIterator createDTMIterator(int whatToShow, argument
289 return m_dtmManager.createDTMIterator(whatToShow, filter, entityReferenceExpansion);

Completed in 117 milliseconds