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

/openjdk10/jdk/test/javax/swing/plaf/aqua/
H A DCustomComboBoxFocusTest.java152 private static abstract class Step implements Runnable { class in class:CustomComboBoxFocusTest
156 final Step next = nextStep();
165 public abstract Step nextStep();
168 private final Step init = new Step() {
227 public Step nextStep() {
232 private class FocusStep extends Step {
234 private final Step focusHandler;
235 private final Step next;
237 public FocusStep(JComboBox<String> t, Step
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/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> {
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParentLocationPath.java58 if (_step instanceof Step) {
115 int right = ((Step)_step).getAxis();
158 if (_path instanceof Step) {
159 int type = ((Step)_path).getNodeType();
222 if ((_path instanceof Step) && (stp instanceof Step)) {
223 final int path = ((Step)_path).getAxis();
224 final int step = ((Step)stp).getAxis();
H A DPredicate.java110 private Step _step = null;
241 if (exp instanceof Step) {
242 _ptype = ((Step)exp).getNodeType();
249 if (exp instanceof Step) {
250 _ptype = ((Step)exp).getNodeType();
253 else if (parent instanceof Step) {
254 _ptype = ((Step)parent).getNodeType();
315 _nthDescendant = (parent instanceof Step) &&
451 public Step getStep() {
472 if (left instanceof Step) {
[all...]
H A DUnionPathExpr.java67 if (_components[i] instanceof Step) {
68 final Step step = (Step)_components[i];
H A DCastExpr.java135 if ((_left instanceof Step) && (_type == Type.Boolean)) {
136 Step step = (Step)_left;
199 // the Step object create and iterator that we cast back to a single
208 il.append(new SIPUSH((short)((Step)_left).getNodeType()));
H A DStepPattern.java73 private Step _step = null;
201 Step step = null;
203 // Create an instance of Step to do the translation
208 step = new Step(_axis, _nodeType, _predicates);
210 step = new Step(_axis, _nodeType, null);
218 step = new Step(_axis, _nodeType, _predicates);
H A DStep.java53 final class Step extends RelativeLocationPath { class in inherits:RelativeLocationPath
77 public Step(int axis, int nodeType, Vector predicates) { method in class:Step
388 Step step = predicate.getStep();
391 // If the predicate's Step is simply '.' we translate this Step
397 // Otherwise we create a parent location path with this Step and
398 // the predicates Step, and place the node test on top of that
H A DXPathParser.java1105 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) {
1106 if (rlp instanceof Step) {
1107 return new ParentLocationPath(step, (Step) rlp);
1364 RESULT = new Step(Axis.CHILD, NodeTest.PI, predicates);
1800 RESULT = new Step(Axis.PARENT, NodeTest.ANODE, null);
1809 RESULT = new Step(Axis.SELF, NodeTest.ANODE, null);
1953 case 81: // Step ::= AbbreviatedStep
1960 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);
1965 case 80: // Step ::= AxisSpecifier NodeTest
1974 RESULT = new Step(axi
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java133 * {@link Step}s.
135 private LocationPath buildLocationPath( ArrayList<Step> stepsVector ) throws XPathException {
138 Step[] steps = new Step[size];
187 ArrayList<Step> stepsVector = new ArrayList<>();
190 // true when the next token should be 'Step' (as defined in
210 Step step = new Step(
223 Step step = new Step(
437 public static class Step class in class:XPath
455 public Step(Axis axis, NodeTest nodeTest) { method in class:XPath.Step
461 protected Step(Step step) { method in class:XPath.Step
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/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()]));
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DXPathMatcher.java237 XPath.Step[] steps = fLocationPaths[i].steps;
241 XPath.Step step = steps[fCurrentStep[i]];
262 XPath.Step step = steps[fCurrentStep[i]];
282 XPath.Step step = steps[fCurrentStep[i]];
437 XPath.Step[] steps = fLocationPaths[i].steps;
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DeventFilter.c106 struct StepFilter Step; member in union:Filter_::__anon1347
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): {
/openjdk10/jdk/test/com/sun/jdi/
H A DDeferredStepTest.sh175 4619349 Step Over fails in a multi threaded debuggee
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java625 filters.add(JDWP.EventRequest.Set.Modifier.Step.
/openjdk10/jdk/make/data/jdwp/
H A Djdwp.spec2458 (Alt Step=10
2777 " <LI>Step Event"
3261 "Step into any method calls that occur before the end of the step. ")
3263 "Step over any method calls that occur before the end of the step. ")
3265 "Step out of the current method. ")
3270 "Step by the minimum possible amount (often a bytecode instruction). ")
3272 "Step to the next source line unless there is no line number information in which case a MIN step is done instead.")

Completed in 220 milliseconds