Searched refs:counter (Results 1 - 25 of 233) sorted by relevance

12345678910

/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInfo.java27 final int counter; field in class:Info
32 Info(int counter, String className, String methodName, int location) { argument
33 this.counter = counter;
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DByteArrayCounter.java26 package sun.management.counter;
29 * Interface for performance counter wrapping <code>byte[]</code> objects.
H A DLongArrayCounter.java26 package sun.management.counter;
29 * Interface for performance counter wrapping <code>long[]</code> objects.
H A DLongCounter.java26 package sun.management.counter;
29 * Interface for a performance counter wrapping a
37 * Get the value of this Long performance counter
H A DStringCounter.java26 package sun.management.counter;
29 * Interface for a performance counter wrapping a <code>String</code> object.
H A DCounter.java26 package sun.management.counter;
29 * The base class for a performance counter.
36 * Returns the name of this performance counter
41 * Returns the Units for this performance counter
46 * Returns the Variability for this performance counter
51 * Returns true if this performance counter is a vector
61 * Returns an Object that encapsulates the data value of this counter
66 * Returns <tt>true</tt> if this counter is an internal counter.
71 * Return the flags associated with the counter
[all...]
/openjdk7/hotspot/test/runtime/7107135/
H A DTest.java40 public static int counter = 1; field in class:Test
43 counter = counter * -1;
44 int i = counter;
45 if(counter < 2) counter += Runner();
/openjdk7/jdk/src/share/classes/sun/swing/
H A DBakedArrayList.java58 for (int counter = 0, max = data.size(); counter < max; counter++){
59 add(data.get(counter));
70 for (int counter = size() - 1; counter >= 0; counter--) {
71 _hashCode = 31 * _hashCode + get(counter).hashCode();
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6985295.java39 long counter = 0;
42 counter++;
43 if (counter > 1000000) {
48 System.out.println("iteration went " + counter + " times (" + i + ")");
/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineMethodAddInvokeTarget.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
H A DRedefineMethodAddInvokeTarget_1.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
H A DRedefineMethodAddInvokeTarget_2.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java82 for (int counter = areaAttributes.size() - 1; counter >= 0;
83 counter--) {
84 if (areaAttributes.elementAt(counter).isEqual(as)){
85 areaAttributes.removeElementAt(counter);
86 if (counter < numAreas) {
87 areas.removeElementAt(counter);
125 for (int counter = 0; counter < numAttributes; counter
[all...]
/openjdk7/jdk/test/javax/swing/JSlider/6918861/
H A Dbug6918861.java47 if (ui.counter != 111) {
53 if (ui.counter != 0) {
61 private int counter; field in class:bug6918861.HackedSynthSliderUI
70 counter += 1;
76 counter -= 1;
82 counter += 10;
88 counter -= 10;
94 counter += 100;
100 counter -= 100;
/openjdk7/jdk/src/share/classes/sun/management/
H A DHotspotMemoryMBean.java28 import sun.management.counter.Counter;
H A DHotspotRuntimeMBean.java28 import sun.management.counter.Counter;
H A DHotspotThreadMBean.java28 import sun.management.counter.Counter;
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DInstrumentationException.java26 package sun.management.counter.perf;
/openjdk7/jdk/make/java/java/
H A Dlocalelist.sh84 counter=0
87 counter=`expr $counter + 1`
94 if [ $index != $counter ]
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DDynamicTreeNode.java117 for (int counter = 0, maxCounter = NAMES.length;
118 counter < maxCounter; counter++) {
120 fonts[counter] = new Font(fontNames[counter], 0, fontSize);
122 fonts[counter] = null;
169 for (int counter = 0; counter < DynamicTreeNode.DEFAULT_CHILDREN_COUNT;
170 counter++) {
180 if (counter
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionMap.java201 int counter;
203 for (counter = keys.length - 1; counter >= 0; counter--) {
204 keyMap.put(keys[counter], keys[counter]);
206 for (counter = pKeys.length - 1; counter >= 0; counter--) {
207 keyMap.put(pKeys[counter], pKey
[all...]
H A DInputMap.java204 int counter;
206 for (counter = keys.length - 1; counter >= 0; counter--) {
207 keyMap.put(keys[counter], keys[counter]);
209 for (counter = pKeys.length - 1; counter >= 0; counter--) {
210 keyMap.put(pKeys[counter], pKey
[all...]
/openjdk7/jdk/test/javax/swing/UITest/
H A DUITest.java106 for (int counter = 0; counter < lafInfo.length; counter++) {
107 if (lafInfo[counter].getName().toLowerCase().indexOf(name) != -1) {
/openjdk7/jdk/test/java/rmi/activation/log/
H A DLogTest.java47 private static Counter counter = new Counter(); field in class:LogTest
56 log = new ReliableLog(".", new TestLogHandler(counter), false);
77 counter.increment();
78 log.update(counter);
92 ((counter.value() + 1 == expectedCount) ? "" : "not ") +
94 counter.increment();
95 log.update(counter);
110 counter = (Counter) log.recover();
111 System.err.println("recovered counter value: " + counter
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTreeModelEvent.java90 * order, the most natural processing methodology is to use a delete-counter.
91 * Start by initializing the counter to zero and start work through the
93 * value of the delete-counter to the index-position where the delete occurred,
95 * <code>addElement()</code>. Then increment the delete-counter. The index
302 for(int counter = 0; counter < childIndices.length; counter++)
303 retBuffer.append(Integer.toString(childIndices[counter])+ " ");
308 for(int counter = 0; counter < childre
[all...]

Completed in 128 milliseconds

12345678910