Searched refs:Step (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDParser.java93 Step s;
100 steps.add(new Step.Any(Axis.ROOT));
104 steps.add(new Step.Any(Axis.DESCENDANTS));
116 s = Step();
135 steps.add(new Step.Any(Axis.DESCENDANTS));
142 s = Step();
149 final public Step Step() throws ParseException { method in class:SCDParser
150 Step s; String p; Token n;
259 s=new Step
[all...]
H A DSCDImpl.java42 private final Step[] steps;
49 public SCDImpl(String text, Step[] steps) {
H A DStep.java43 public abstract class Step<T extends XSComponent> { class
56 protected Step(Axis<? extends T> axis) { method in class:Step
96 static final class Any extends Step<XSComponent> {
107 private static abstract class Filtered<T extends XSComponent> extends Step<T> {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A Dxpath.cup273 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) {
274 if (rlp instanceof Step) {
275 return new ParentLocationPath(step, (Step) rlp);
317 non terminal Expression Predicate, FilterExpr, Step;
584 if (rlp instanceof Step &&
585 parser.isElementAxis(((Step) rlp).getAxis()))
589 final Step step = new Step(Axis.DESCENDANTORSELF, nodeType, null);
604 RelativeLocationPath ::= Step:step
607 | RelativeLocationPath:rlp SLASH Step
[all...]
H A DParentLocationPath.java60 if (_step instanceof Step) {
117 int right = ((Step)_step).getAxis();
160 if (_path instanceof Step) {
161 int type = ((Step)_path).getNodeType();
224 if ((_path instanceof Step) && (stp instanceof Step)) {
225 final int path = ((Step)_path).getAxis();
226 final int step = ((Step)stp).getAxis();
H A DPredicate.java112 private Step _step = null;
243 if (exp instanceof Step) {
244 _ptype = ((Step)exp).getNodeType();
251 if (exp instanceof Step) {
252 _ptype = ((Step)exp).getNodeType();
255 else if (parent instanceof Step) {
256 _ptype = ((Step)parent).getNodeType();
317 _nthDescendant = (parent instanceof Step) &&
453 public Step getStep() {
474 if (left instanceof Step) {
[all...]
H A DUnionPathExpr.java69 if (_components[i] instanceof Step) {
70 final Step step = (Step)_components[i];
H A DCastExpr.java133 if ((_left instanceof Step) && (_type == Type.Boolean)) {
134 Step step = (Step)_left;
197 // the Step object create and iterator that we cast back to a single
206 il.append(new SIPUSH((short)((Step)_left).getNodeType()));
H A DStepPattern.java75 private Step _step = null;
203 Step step = null;
205 // Create an instance of Step to do the translation
210 step = new Step(_axis, _nodeType, _predicates);
212 step = new Step(_axis, _nodeType, null);
220 step = new Step(_axis, _nodeType, _predicates);
H A DStep.java21 * $Id: Step.java,v 1.6 2006/06/06 22:34:34 spericas Exp $
55 final class Step extends RelativeLocationPath { class in inherits:RelativeLocationPath
79 public Step(int axis, int nodeType, Vector predicates) { method in class:Step
390 Step step = predicate.getStep();
393 // If the predicate's Step is simply '.' we translate this Step
399 // Otherwise we create a parent location path with this Step and
400 // the predicates Step, and place the node test on top of that
H A DXPathParser.java1084 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) {
1085 if (rlp instanceof Step) {
1086 return new ParentLocationPath(step, (Step) rlp);
1343 RESULT = new Step(Axis.CHILD, NodeTest.PI, predicates);
1779 RESULT = new Step(Axis.PARENT, NodeTest.ANODE, null);
1788 RESULT = new Step(Axis.SELF, NodeTest.ANODE, null);
1932 case 81: // Step ::= AbbreviatedStep
1939 CUP$XPathParser$result = new com.sun.java_cup.internal.runtime.Symbol(7/*Step*/, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).left, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).right, RESULT);
1944 case 80: // Step ::= AxisSpecifier NodeTest
1953 RESULT = new Step(axi
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DSCD.java32 import com.sun.xml.internal.xsom.impl.scd.Step;
77 return new SCDImpl(path,list.toArray(new Step[list.size()]));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java132 * {@link Step}s.
137 Step[] steps = new Step[size];
189 // true when the next token should be 'Step' (as defined in
211 Step step = new Step(
222 Step step = new Step(
243 Step step = new Step(axi
439 public static class Step class in class:XPath
457 public Step(Axis axis, NodeTest nodeTest) { method in class:XPath.Step
463 protected Step(Step step) { method in class:XPath.Step
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DXPathMatcher.java235 XPath.Step[] steps = fLocationPaths[i].steps;
239 XPath.Step step = steps[fCurrentStep[i]];
259 XPath.Step step = steps[fCurrentStep[i]];
279 XPath.Step step = steps[fCurrentStep[i]];
431 XPath.Step[] steps = fLocationPaths[i].steps;
/openjdk7/jdk/src/share/back/
H A DeventFilter.c106 struct StepFilter Step; member in union:Filter_::__anon504
222 case JDWP_REQUEST_MODIFIER(Step): {
223 jthread thread = filter->u.Step.thread;
226 tossGlobalRef(env, &(filter->u.Step.thread));
510 case JDWP_REQUEST_MODIFIER(Step):
511 if (!isSameObject(env, thread, filter->u.Step.thread)) {
924 StepFilter *filter = &FILTER(node, index).u.Step;
940 FILTER(node, index).modifier = JDWP_REQUEST_MODIFIER(Step);
H A DEventRequestImpl.c182 case JDWP_REQUEST_MODIFIER(Step): {
/openjdk7/jdk/test/com/sun/jdi/
H A DDeferredStepTest.sh176 4619349 Step Over fails in a multi threaded debuggee
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java597 filters.add(JDWP.EventRequest.Set.Modifier.Step.
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2347 (Alt Step=10
2634 " <LI>Step Event"
3117 "Step into any method calls that occur before the end of the step. ")
3119 "Step over any method calls that occur before the end of the step. ")
3121 "Step out of the current method. ")
3126 "Step by the minimum possible amount (often a bytecode instruction). ")
3128 "Step to the next source line unless there is no line number information in which case a MIN step is done instead.")

Completed in 355 milliseconds