/openjdk7/jdk/test/java/lang/instrument/ |
H A D | Counter.java | 45 increment() method in class:Counter
|
/openjdk7/langtools/test/tools/javac/boxing/ |
H A D | T6369051.java | 38 void increment() { method in class:IntegerValue
|
/openjdk7/jdk/test/javax/management/query/ |
H A D | CustomQueryTest.java | 47 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/test/javax/swing/JTableHeader/6889007/ |
H A D | bug6889007.java | 91 private static synchronized void increaseTestValue(int increment) { argument 92 testValue += increment;
|
/openjdk7/jdk/src/share/classes/sun/management/ |
H A D | Sensor.java | 115 * 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/corba/src/share/classes/com/sun/corba/se/impl/orbutil/ |
H A D | ObjectWriter.java | 32 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/src/share/classes/java/awt/geom/ |
H A D | ArcIterator.java | 37 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/macosx/native/com/sun/media/sound/ |
H A D | PLATFORM_API_MacOSX_MidiOut.c | 200 UINT32 increment = 512; local 211 if (remaining > increment) { 212 nData = increment;
|
/openjdk7/jdk/src/share/classes/sun/nio/fs/ |
H A D | AbstractWatchKey.java | 111 // 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 D | CounterMode.java | 187 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 D | CountStatisticImpl.java | 81 public synchronized void increment() { method in class:CountStatisticImpl 86 public synchronized void increment(long delta) { method in class:CountStatisticImpl
|
/openjdk7/jdk/test/java/rmi/activation/log/ |
H A D | LogTest.java | 77 counter.increment(); 94 counter.increment(); 133 int increment() { method in class:LogTest.Counter
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | PerfCounter.java | 104 public void increment() { method in class:PerfCounter
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | Surrogate.java | 147 public int increment() { method in class:Surrogate.Parser 179 * and increment() methods will return meaningful values, or 220 * and increment() methods will return meaningful values, or
|
/openjdk7/jdk/src/share/classes/java/text/ |
H A D | RBTableBuilder.java | 140 order = increment(entry.getStrength(), order); 291 private final int increment(int aStrength, int lastValue) method in class:RBTableBuilder 296 // increment priamry order and mask off secondary and tertiary difference 302 // increment secondary order and mask off tertiary difference 310 // increment tertiary order
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | invocationCounter.hpp | 67 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/hotspot/src/share/vm/prims/ |
H A D | jvmtiGetLoadedClasses.cpp | 169 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/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/ |
H A D | Surrogate.java | 138 public int increment() { method in class:Surrogate.Parser 167 * and increment() methods will return meaningful values, or 208 * and increment() methods will return meaningful values, or
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/ |
H A D | MethodVisitor.java | 321 * @param increment amount to increment the local variable by. 323 void visitIincInsn(int var, int increment); argument
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | idealKit.hpp | 49 // - no increment, must be explicitly coded 60 // increment(variable, value) - increment variable by value 73 // increment(i, ConI(1)); 189 void increment(IdealVariable& v, Node* j) { set(v, AddI(value(v), j)); } function in class:IdealKit
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JSlider.java | 876 * 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/windows/native/sun/windows/ |
H A D | awt_Scrollbar.cpp | 542 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/hotspot/src/cpu/sparc/vm/ |
H A D | templateInterpreter_sparc.cpp | 285 // increment invocation count & check for overflow 294 // Note: In tiered we increment either counters in methodOop or in MDO depending if we're profiling or not. 296 const int increment = InvocationCounter::count_increment; local 307 __ increment_mask_and_jump(mdo_invocation_counter, increment, mask, 318 __ increment_mask_and_jump(invocation_counter, increment, mask, 612 // do nothing for empty methods (do not even increment invocation counter) 883 // increment invocation counter and check for overflow 1342 // increment invocation counter and check for overflow
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | templateInterpreter_x86_32.cpp | 337 // increment invocation count & check for overflow 348 // Note: In tiered we increment either counters in methodOop or in MDO depending if we're profiling or not. 350 int increment = InvocationCounter::count_increment; local 361 __ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow); 366 __ increment_mask_and_jump(invocation_counter, increment, mask, rcx, true, Assembler::zero, overflow); 934 // increment invocation count & check for overflow 1156 __ increment(rsp, wordSize); 1362 // increment invocation count & check for overflow
|
H A D | templateInterpreter_x86_64.cpp | 290 // increment invocation count & check for overflow 304 // Note: In tiered we increment either counters in methodOop or in MDO depending if we're profiling or not. 306 int increment = InvocationCounter::count_increment; local 317 __ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow); 322 __ increment_mask_and_jump(invocation_counter, increment, mask, rcx, true, Assembler::zero, overflow); 914 // increment invocation count & check for overflow 1382 // increment invocation count & check for overflow
|