Searched refs:increment (Results 1 - 25 of 70) sorted by relevance

123

/openjdk7/jdk/test/java/lang/instrument/
H A DCounter.java45 increment() method in class:Counter
H A DDifferent_ExampleRedefine.java51 fCounter.increment();
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6369051.java38 void increment() { method in class:IntegerValue
/openjdk7/jdk/src/share/classes/sun/management/
H A DSensor.java115 * and increments the count with the input <tt>increment</tt>.
117 public void trigger(int increment) { argument
120 count += increment;
129 * and increments the count with the input <tt>increment</tt>.
131 public void trigger(int increment, MemoryUsage usage) { argument
134 count += increment;
153 * and increments the count with the input <tt>increment</tt>.
155 public void clear(int increment) { argument
158 count += increment;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArcIterator.java37 double x, y, w, h, angStRad, increment, cv; field in class:ArcIterator
53 this.increment = Math.PI / 2;
57 increment = -increment;
62 this.increment = Math.toRadians(ext / arcSegs);
63 this.cv = btan(increment);
188 private static double btan(double increment) { argument
189 increment /= 2.0;
190 return 4.0 / 3.0 * Math.sin(increment) / (1.0 + Math.cos(increment));
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DScrollPaneWheelScroller.java53 int increment = 0;
58 increment = getIncrementFromAdjustable(adj, e);
60 log.finer("increment from adjustable(" + adj.getClass() + ") : " + increment);
62 scrollAdjustable(adj, increment);
133 int increment = 0;
136 increment = e.getUnitsToScroll() * adj.getUnitIncrement();
139 increment = adj.getBlockIncrement() * e.getWheelRotation();
141 return increment;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectWriter.java32 int initialLevel, int increment )
35 return new IndentingObjectWriter( initialLevel, increment ) ;
141 private int increment ; field in class:ObjectWriter.IndentingObjectWriter
143 public IndentingObjectWriter( int initialLevel, int increment )
146 this.increment = increment ;
152 char[] fill = new char[ level * increment ] ;
/openjdk7/jdk/test/javax/swing/JTableHeader/6889007/
H A Dbug6889007.java91 private static synchronized void increaseTestValue(int increment) { argument
92 testValue += increment;
/openjdk7/jdk/test/java/rmi/activation/log/
H A DLogTest.java77 counter.increment();
94 counter.increment();
133 int increment() { method in class:LogTest.Counter
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchKey.java111 // repeated event then we simply increment the counter
117 ((Event<?>)prev).increment();
122 // is a modify event then we simply increment the count
128 ((Event<?>)ev).increment();
194 // synchronize on watch key to access/increment count
219 void increment() { method in class:AbstractWatchKey.Event
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCounterMode.java187 private static void increment(byte[] b) { method in class:CounterMode
204 increment(counter);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/
H A DCountStatisticImpl.java81 public synchronized void increment() { method in class:CountStatisticImpl
86 public synchronized void increment(long delta) { method in class:CountStatisticImpl
/openjdk7/jdk/test/javax/management/query/
H A DCustomQueryTest.java47 public void increment(); method in interface:CustomQueryTest.CountMBean
57 public void increment() { method in class:CustomQueryTest.Count
72 /* A query that calls the increment method of the Count MBean every time
80 getMBeanServer().invoke(countName, "increment", null, null);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSlider.java876 * slider minimum, and using the increment specified.
888 * @param increment distance between labels in the generated hashtable
892 * @throws IllegalArgumentException if {@code increment} is less than or
895 public Hashtable createStandardLabels( int increment ) {
896 return createStandardLabels( increment, getMinimum() );
902 * starting point specified, and using the increment specified.
914 * @param increment distance between labels in the generated hashtable
920 * out of range, or if {@code increment} is less than or equal
923 public Hashtable createStandardLabels( int increment, int start ) { argument
928 if ( increment <
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiOut.c200 UINT32 increment = 512; local
211 if (remaining > increment) {
212 nData = increment;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java321 * @param increment amount to increment the local variable by.
323 void visitIincInsn(int var, int increment); argument
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dassembler_linux_x86.cpp47 increment(rsp, wordSize);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerfCounter.java104 public void increment() { method in class:PerfCounter
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m314 QUARTZ_RENDERER_INLINE CGFloat btan(CGFloat increment)
316 increment /= 2.0f;
317 CGFloat a = 1.0f - cos(increment);
318 CGFloat b = tan(increment);
377 CGFloat increment = angExtDeg;
378 if (increment > 360.0f)
380 increment = 360.0f;
382 else if (increment < -360.0f)
384 increment = -360.0f;
386 increment /
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGetLoadedClasses.cpp169 static void increment(klassOop k) { function in class:JvmtiGetLoadedClassesClosure
228 // increment the count for the given basic type array class (and any
268 SystemDictionary::classes_do(&JvmtiGetLoadedClassesClosure::increment);
269 Universe::basic_type_classes_do(&JvmtiGetLoadedClassesClosure::increment);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp67 count_increment = count_grain, // use this value to increment the 32bit _counter word
110 void increment() { _counter += count_increment; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Scrollbar.cpp542 jint increment)
549 c->SetLineIncrement(increment);
561 jint increment)
568 c->SetPageIncrement(increment);
541 Java_sun_awt_windows_WScrollbarPeer_setLineIncrement(JNIEnv *env, jobject self, jint increment) argument
560 Java_sun_awt_windows_WScrollbarPeer_setPageIncrement(JNIEnv *env, jobject self, jint increment) argument
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java303 int increment = Math.min(3, values.length/16);
304 for (int i = 0; i < values.length; i+= increment) {
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java557 int increment = ((int[])value)[1];
561 if (register <= 255 && (((byte)increment) == increment)) {
703 out.writeByte(((int[])value)[1]); // increment
710 out.writeShort(((int[])value)[1]); // increment
811 int increment = ((int[])value)[1];
812 return prefix + opcNames[opc] + " " + register + ", " + increment;
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java1447 boolean increment = false;
1454 increment = true;
1456 increment = false;
1458 increment = (qsign > 0);
1460 increment = (qsign < 0);
1472 increment = false; // We're closer to higher digit
1474 increment = true;
1476 increment = true;
1478 increment = false;
1480 increment
[all...]

Completed in 72 milliseconds

123