Searched defs:step (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/test/java/beans/Performance/
H A DTestPropertyChangeSupport.java49 private static void test(int step, int listeners, int attempts) { argument
67 System.out.println("Step: " + step
H A DTestVetoableChangeSupport.java50 private static void test(int step, int listeners, int attempts) throws PropertyVetoException { argument
68 System.out.println("Step: " + step
/openjdk7/jdk/test/java/awt/xembed/server/
H A DJavaClient.java118 void changeSize(int step) { argument
119 width += step;
120 height += step;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DLocalSeqNumber.java85 public synchronized int step() { method in class:LocalSeqNumber
H A DSeqNumber.java39 public int step(); method in interface:SeqNumber
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DMapLoops.java145 int step() { method in class:MapLoops.Runner
182 ops -= step();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DUnionIterator.java55 public int step() { method in class:UnionIterator.LookAheadIterator
H A DMultiValuedNodeHeapIterator.java66 public abstract int step(); method in class:MultiValuedNodeHeapIterator.HeapNode
198 _heap[0].step(); // value consumed
201 _heap[0].step(); // value consumed
217 _heap[i].step(); // to get the first node
284 _heap[i].step();
/openjdk7/jdk/src/share/classes/java/math/
H A DBitSieve.java109 int step = smallSieve.sieveSearch(smallSieve.length, start);
110 int convertedStep = (step *2) + 1;
119 // Take each multiple of step out of sieve
126 step = smallSieve.sieveSearch(smallSieve.length, step+1);
127 convertedStep = (step *2) + 1;
128 } while (step > 0);
181 * multiples of the specified step starting at the specified start index,
184 private void sieveSingle(int limit, int start, int step) { argument
187 start += step;
[all...]
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DMapLoops.java186 int step() { method in class:MapLoops.Runner
224 ops -= step();
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DIndentingWriter.java66 * given Writer. Use the default indent step of four spaces.
74 * given Writer and uses the supplied indent step.
76 public IndentingWriter(Writer out, int step) { argument
80 throw new IllegalArgumentException("negative indent step");
82 indentStep = step;
87 * given Writer and uses the supplied indent step and tab size.
89 public IndentingWriter(Writer out, int step, int tabSize) { argument
93 throw new IllegalArgumentException("negative indent step");
95 indentStep = step;
160 * Increase the current indent by the indent step
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParentLocationPath.java54 public ParentLocationPath(RelativeLocationPath path, Expression step) { argument
56 _step = step;
111 * combination of two step's with axes that will create duplicate or
159 // one attribute that matches the left step.
226 final int step = ((Step)stp).getAxis();
227 if ((path == Axis.DESCENDANTORSELF && step == Axis.CHILD) ||
228 (path == Axis.PRECEDING && step == Axis.PARENT)) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitor.java80 * Visit a step within a location path.
83 * @param step The Step object.
86 public boolean visitStep(ExpressionOwner owner, NodeTest step) argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java102 private int step = 0; // 0-start,1-nego,2-auth,3-done field in class:NTLMClient
180 return step >= 2;
221 step++;
222 if (step == 1) {
H A DNTLMServer.java98 private int step = 0; field in class:NTLMServer
174 step++;
175 if (step == 1) {
191 return step >= 2;
/openjdk7/jdk/test/java/awt/Focus/ActualFocusedWindowTest/
H A DActualFocusedWindowRetaining.java51 public static int step; field in class:ActualFocusedWindowRetaining
115 step = 1;
119 step++;
122 step = 4;
126 step = 5;
130 step = 6;
134 step = 7;
140 step = 8;
196 throw new RuntimeException(new String("Step " + step + ": " + msg));
/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DModifierPermutation.java102 dumpArray("mouseButtons (step="+k+")", mouseButtons);
103 // dumpArray("mouseButtonsDown (step="+k+")", mouseButtonsDown);
175 public static void nextPermutation(int step, int []array){ argument
276 public static void nextPermutation(int step, int []array){
/openjdk7/jdk/test/sun/java2d/pipe/hw/VSyncedBufferStrategyTest/
H A DVSyncedBufferStrategyTest.java134 step();
153 private void step() { method in class:VSyncedBufferStrategyTest
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeDemo.java60 * Represents the formula {@code f(n) = start + (step * n)} for n = 0 & n < iterations
64 private final int step; field in class:MergeDemo.Range
67 private Range(int start, int step, int iterations) { argument
69 this.step = step;
74 * Parses start, step and iterations from args
87 return start + (step * iteration);
97 builder.append(start).append(" ").append(step).append(" ").append(iterations);
136 System.err.println("MergeExample <size start> <size step> <size steps> <parallel start> <parallel step>"
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DComponentSampleModel.java269 * Preserves band ordering with new step factor...
271 int []orderBands(int orig[], int step) { argument
284 ret[map[index]] = i*step;
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.cpp218 int step = 0, fails = 0; local
220 ++step; \
222 if (trace > 0 && (step % trace) == 0) { \
223 tty->print_cr("step %d, n=%08x: value=" fmt " (len=%d)", \
224 step, n, x, xlen); } \
226 tty->print_cr("step %d, n=%d: " fmt " != " fmt, step, n, x, y); \
231 bytes.write_byte(x); ++step;
235 bytes.write_int(x); ++step;
236 bytes.write_signed_int(x); ++step;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java674 private static void printStep(String step, String output, String input) { argument
676 log.log(java.util.logging.Level.FINE, " " + step + ": " + output);
/openjdk7/jdk/src/share/back/
H A DstepControl.c53 * They usually require multiple events step, and otherwise, before they
54 * complete. While a step request is pending, we may need to temporarily
57 * events. So, for step events only, we directly enable and disable stepping.
58 * This is safe because there can only ever be one pending step request
71 EXIT_ERROR(error, "enabling single step");
85 EXIT_ERROR(error, "disabling single step");
166 initState(JNIEnv *env, jthread thread, StepRequest *step) argument
173 step->fromLine = -1;
174 step->fromNative = JNI_FALSE;
175 step
265 StepRequest *step; local
368 StepRequest *step; local
435 StepRequest *step; local
486 completeStep(JNIEnv *env, jthread thread, StepRequest *step) argument
516 StepRequest *step; local
703 StepRequest *step; local
727 initEvents(jthread thread, StepRequest *step) argument
791 StepRequest *step; local
851 clearStep(jthread thread, StepRequest *step) argument
882 StepRequest *step; local
910 stepControl_clearRequest(jthread thread, StepRequest *step) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/util/
H A DIndentingWriter.java51 public IndentingWriter(Writer out,int step) { argument
55 throw new IllegalArgumentException("negative indent step");
57 indentStep = step;
/openjdk7/jdk/src/share/demo/applets/GraphicsTest/
H A DGraphicsTest.java180 int step,
188 int a2 = step;
424 int step; field in class:ShapeTest
426 public ShapeTest(Shape shape, int step) { argument
428 this.step = step;
446 cx += step, cy += step, cw -= (step * 2), ch -= (step *
179 arcSteps(Graphics g, int step, int x, int y, int w, int h, Color c1, Color c2) argument
[all...]

Completed in 102 milliseconds

12