/openjdk7/jdk/test/java/nio/channels/FileChannel/ |
H A D | Args.java | 44 private static void tryCatch(Class ex, Thunk thunk) { argument 47 thunk.run();
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | ProgressiveHeapVisitor.java | 31 functionality that a chosen "thunk" is called periodically during 37 private HeapProgressThunk thunk; field in class:ProgressiveHeapVisitor 44 HeapProgressThunk thunk) { 46 this.thunk = thunk; 60 thunk.heapIterationFractionUpdate(curFrac); 68 thunk.heapIterationComplete(); 43 ProgressiveHeapVisitor(HeapVisitor userHeapVisitor, HeapProgressThunk thunk) argument
|
H A D | ReversePtrsAnalysis.java | 50 /** Sets an optional progress thunk */ 51 public void setHeapProgressThunk(HeapProgressThunk thunk) { argument 52 progressThunk = thunk;
|
/openjdk7/jdk/test/java/lang/StringBuffer/ |
H A D | Exceptions.java | 47 private static void tryCatch(String s, Throwable ex, Runnable thunk) { argument 50 thunk.run();
|
/openjdk7/jdk/test/java/lang/StringBuilder/ |
H A D | Exceptions.java | 47 private static void tryCatch(String s, Throwable ex, Runnable thunk) { argument 50 thunk.run();
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | Cleaner.java | 44 * <p> A cleaner tracks a referent object and encapsulates a thunk of arbitrary 112 private final Runnable thunk; field in class:Cleaner 114 private Cleaner(Object referent, Runnable thunk) { argument 116 this.thunk = thunk; 122 * @param thunk 129 public static Cleaner create(Object ob, Runnable thunk) { argument 130 if (thunk == null) 132 return add(new Cleaner(ob, thunk)); 142 thunk [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | ObjectListPanel.java | 47 private HeapProgressThunk thunk; field in class:ObjectListPanel 59 HeapProgressThunk thunk) { 63 this.thunk = thunk; 291 if (thunk != null) { 292 rev.setHeapProgressThunk(thunk); 58 ObjectListPanel(java.util.List els, HeapProgressThunk thunk) argument
|
/openjdk7/jdk/test/java/lang/Appendable/ |
H A D | Basic.java | 298 private static void test(Appendable a, CharSequence csq, BasicRunnable thunk) { argument 307 thunk.init(a.append(csq, start, end), 310 thunk.run(); 311 a = thunk.reset(a); 328 a = thunk.reset(a); 340 thunk.init(a.append(null, start, end), "null", 342 thunk.run(); 343 a = thunk.reset(a);
|
/openjdk7/jdk/test/java/nio/Buffer/ |
H A D | BasicByte.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(byte [] t, Class ex, Runnable thunk) { argument 354 tryCatch(ByteBuffer.wrap(t), ex, thunk);
|
H A D | BasicChar.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(char [] t, Class ex, Runnable thunk) { argument 354 tryCatch(CharBuffer.wrap(t), ex, thunk);
|
H A D | BasicDouble.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(double [] t, Class ex, Runnable thunk) { argument 354 tryCatch(DoubleBuffer.wrap(t), ex, thunk);
|
H A D | BasicFloat.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(float [] t, Class ex, Runnable thunk) { argument 354 tryCatch(FloatBuffer.wrap(t), ex, thunk);
|
H A D | BasicInt.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(int [] t, Class ex, Runnable thunk) { argument 354 tryCatch(IntBuffer.wrap(t), ex, thunk);
|
H A D | BasicLong.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(long [] t, Class ex, Runnable thunk) { argument 354 tryCatch(LongBuffer.wrap(t), ex, thunk);
|
H A D | BasicShort.java | 338 private static void tryCatch(Buffer b, Class ex, Runnable thunk) { argument 341 thunk.run(); 353 private static void tryCatch(short [] t, Class ex, Runnable thunk) { argument 354 tryCatch(ShortBuffer.wrap(t), ex, thunk);
|
/openjdk7/jdk/test/java/lang/String/ |
H A D | Exceptions.java | 52 private static void tryCatch(String s, Class ex, Runnable thunk) { argument 55 thunk.run();
|