/aosp_15_r20/libcore/ojluni/src/test/java/nio/Buffer/ |
H A D | BasicDouble.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(double[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(double[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(DoubleBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicShort.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(short[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(short[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(ShortBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicInt.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(int[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(int[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(IntBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicFloat.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(float[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(float[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(FloatBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicLong.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(long[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(long[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(LongBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicChar.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(char[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(char[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(CharBuffer.wrap(t), ex, thunk); in tryCatch() local
|
H A D | BasicByte.java | 565 private static void catchNullArgument(Buffer b, Runnable thunk) { in catchNullArgument() 569 private static void catchIllegalArgument(Buffer b, Runnable thunk) { in catchIllegalArgument() 573 private static void catchReadOnlyBuffer(Buffer b, Runnable thunk) { in catchReadOnlyBuffer() 577 private static void catchIndexOutOfBounds(Buffer b, Runnable thunk) { in catchIndexOutOfBounds() 581 private static void catchIndexOutOfBounds(byte[] t, Runnable thunk) { in catchIndexOutOfBounds() 585 private static void tryCatch(Buffer b, Class<?> ex, Runnable thunk) { in tryCatch() 604 private static void tryCatch(byte[] t, Class<?> ex, Runnable thunk) { in tryCatch() 605 tryCatch(ByteBuffer.wrap(t), ex, thunk); in tryCatch() local
|
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
H A D | Cleaner.java | 33 private Cleaner(java.lang.Object referent, java.lang.Runnable thunk) { in Cleaner() 47 public static sun.misc.Cleaner create(java.lang.Object ob, java.lang.Runnable thunk) { in create() 68 private final java.lang.Runnable thunk; field in Cleaner
|
/aosp_15_r20/libcore/ojluni/src/main/java/jdk/internal/ref/ |
H A D | Cleaner.java | 112 private final Runnable thunk; field in Cleaner 114 private Cleaner(Object referent, Runnable thunk) { in Cleaner() 130 public static Cleaner create(Object ob, Runnable thunk) { in create()
|
/aosp_15_r20/libcore/ojluni/src/main/java/sun/misc/ |
H A D | Cleaner.java | 111 private final Runnable thunk; field in Cleaner 113 private Cleaner(Object referent, Runnable thunk) { in Cleaner() 157 public static Cleaner create(Object ob, Runnable thunk) { in create()
|
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/ |
H A D | tensor_cord_test.cc | 81 auto thunk = CreateThunkFor(cleaner); in TEST() local 148 auto thunk = CreateThunkFor(cleaner); in TEST() local 169 auto thunk = CreateThunkFor(cleaner); in TEST() local 189 auto thunk = CreateThunkFor(cleaner); in TEST() local
|
/aosp_15_r20/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | qsort.c | 110 local_qsort(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk) in local_qsort() 227 __qsort_r_compat(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp) in __qsort_r_compat() 233 qsort_s(void *a, rsize_t n, rsize_t es, cmp_t *cmp, void *thunk) in qsort_s()
|
/aosp_15_r20/libcore/ojluni/annotations/mmodule/sun/misc/ |
H A D | Cleaner.annotated.java | 37 Cleaner(java.lang.Object referent, java.lang.Runnable thunk) { super(null, null); throw new Runtime… in Cleaner() 41 public static sun.misc.Cleaner create(java.lang.Object ob, java.lang.Runnable thunk) { throw new Ru… in create()
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
H A D | sequential_thunk.cc | 37 for (auto& thunk : thunks_) { in Initialize() local 44 for (const auto& thunk : thunks_) { in ExecuteOnStream() local
|
H A D | ir_emitter_unnested.cc | 1108 auto thunk = in EmitGemmThunk() local 1133 auto thunk = std::make_unique<CublasLtMatmulThunk>( in EmitCublasLtMatmulThunk() local 1366 auto thunk = std::make_unique<CustomCallThunk>( in EmitCustomCallThunk() local 2279 Thunk* thunk, mlir::lmhlo::ScatterOp scatter, in EmitScatter() 2308 const ScatterDescriptor& desc, Thunk* thunk, in EmitScatter() 2754 auto thunk = std::make_unique<ThunkType>(GetThunkInfo(op), result_slice); in EmitReplicaOrPartitionId() local 2784 auto thunk = std::make_unique<NcclCollectivePermuteThunk>( in EmitCollectivePermute() local 2795 mlir::Operation* op, Thunk* thunk) { in MaybeAddAllReduceStartThunkToMap() 2840 auto thunk = in EmitNcclThunk() local 2938 auto thunk = in EmitInfeed() local [all …]
|
/aosp_15_r20/external/escapevelocity/src/main/java/com/google/escapevelocity/ |
H A D | Macro.java | 101 Node thunk = parameterThunks.get(var); in getVar() local 123 final Node thunk = parameterThunks.get(var); in setVar() local
|
/aosp_15_r20/frameworks/base/startop/apps/test/src/ |
H A D | SystemServerBenchmarks.java | 40 void addBenchmark(CharSequence name, Runnable thunk); in addBenchmark() 206 static void runBenchmarkInBackground(Runnable thunk, ResultListener reporter) { in runBenchmarkInBackground()
|
H A D | InteractiveMicrobenchmarkActivity.java | 68 public void addBenchmark(CharSequence name, Runnable thunk) { in addBenchmark()
|
/aosp_15_r20/art/dex2oat/linker/ |
H A D | relative_patcher.cc | 148 bool RelativePatcher::WriteThunk(OutputStream* out, const ArrayRef<const uint8_t>& thunk) { in WriteThunk() 156 bool RelativePatcher::WriteMiscThunk(OutputStream* out, const ArrayRef<const uint8_t>& thunk) { in WriteMiscThunk()
|
H A D | multi_oat_relative_patcher_test.cc | 64 std::vector<uint8_t> thunk(next_write_call_thunk_, 'c'); in WriteThunks() local 71 std::vector<uint8_t> thunk(next_write_misc_thunk_, 'm'); in WriteThunks() local
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/ |
H A D | _interceptor.py | 696 thunk = lambda m: self._channel.unary_unary( function 717 thunk = lambda m: self._channel.unary_stream( function 738 thunk = lambda m: self._channel.stream_unary( function 759 thunk = lambda m: self._channel.stream_stream( function
|
/aosp_15_r20/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/util/ |
H A D | Cleaner.java | 41 public static Cleaner create(Object ob, Runnable thunk) { in create()
|
/aosp_15_r20/frameworks/libs/binary_translation/proxy_loader/include/berberis/proxy_loader/ |
D | proxy_library_builder.h | 30 void* thunk; member
|
/aosp_15_r20/frameworks/libs/binary_translation/proxy_loader/ |
D | proxy_library_builder.cc | 50 void* thunk = function.thunk; in InterceptSymbol() local
|
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/core/ |
H A D | function_wrappers.py | 110 def with_function_scope(thunk, scope_name, options): argument
|