Home
last modified time | relevance | path

Searched refs:cleanupCallback (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dfinalization-registry.tq98 target: JSFunction)(cleanupCallback: JSAny): JSFinalizationRegistry {
104 // 2. If IsCallable(cleanupCallback) is false, throw a TypeError exception.
105 const cleanupCallback = Cast<Callable>(cleanupCallback) otherwise
116 // 6. Set finalizationRegistry.[[CleanupCallback]] to cleanupCallback.
117 finalizationRegistry.cleanup = cleanupCallback;
/third_party/typescript/lib/
Dlib.esnext.weakref.d.ts72 new(cleanupCallback: (heldValue: any) => void): FinalizationRegistry;
Dlib.es2021.weakref.d.ts72 new<T>(cleanupCallback: (heldValue: T) => void): FinalizationRegistry<T>;
/third_party/typescript/src/lib/
Des2021.weakref.d.ts52 new<T>(cleanupCallback: (heldValue: T) => void): FinalizationRegistry<T>;
/third_party/node/lib/internal/per_context/
Dprimordials.js440 constructor(cleanupCallback) { super(cleanupCallback); } argument
/third_party/skia/modules/canvaskit/
Dcanvaskit_bindings.cpp765 auto cleanupCallback = GrRefCntedCallback::Make(deleteJSTexture, releaseCtx); in onGenerateTexture() local
772 std::move(cleanupCallback)); in onGenerateTexture()