Home
last modified time | relevance | path

Searched refs:Handler (Results 1 – 25 of 207) sorted by relevance

123456789

/third_party/typescript/tests/baselines/reference/
DjsDeclarationsClassStatic.types2 class Handler {
3 >Handler : Handler
16 Handler.statische = function() { }
17 >Handler.statische = function() { } : () => void
18 >Handler.statische : () => void
19 >Handler : typeof Handler
36 module.exports = Handler;
37 >module.exports = Handler : typeof Handler
38 >module.exports : typeof Handler
39 >module : { exports: typeof Handler; }
[all …]
DjsDeclarationsClassStatic.js2 class Handler { class
10 Handler.statische = function() { }
16 module.exports = Handler;
27 var Handler = /** @class */ (function () {
28 function Handler() { class in Handler
30 Object.defineProperty(Handler, "OPTIONS", {
37 Handler.prototype.process = function () {
39 return Handler;
41 Handler.statische = function () { };
46 module.exports = Handler;
[all …]
DjsDeclarationsClassStatic.symbols2 class Handler {
3 >Handler : Symbol(Handler, Decl(source.js, 0, 0), Decl(source.js, 7, 1))
6 >OPTIONS : Symbol(Handler.OPTIONS, Decl(source.js, 0, 15))
12 >process : Symbol(Handler.process, Decl(source.js, 3, 2))
15 Handler.statische = function() { }
16 >Handler.statische : Symbol(Handler.statische, Decl(source.js, 7, 1))
17 >Handler : Symbol(Handler, Decl(source.js, 0, 0), Decl(source.js, 7, 1))
18 >statische : Symbol(Handler.statische, Decl(source.js, 7, 1))
30 module.exports = Handler;
34 >Handler : Symbol(Handler, Decl(source.js, 0, 0), Decl(source.js, 7, 1))
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/
DMidiDeviceMonitor.java24 import android.os.Handler;
53 private HashMap<DeviceCallback, Handler> mCallbacks = new HashMap<DeviceCallback,Handler>();
65 for(Map.Entry<DeviceCallback, Handler> item : mCallbacks.entrySet()) { in onDeviceAdded()
67 Handler handler = item.getValue(); in onDeviceAdded()
83 for(Map.Entry<DeviceCallback, Handler> item : mCallbacks.entrySet()) { in onDeviceRemoved()
85 Handler handler = item.getValue(); in onDeviceRemoved()
101 for(Map.Entry<DeviceCallback, Handler> item : mCallbacks.entrySet()) { in onDeviceStatusChanged()
103 Handler handler = item.getValue(); in onDeviceStatusChanged()
124 new Handler(Looper.getMainLooper())); in MidiDeviceMonitor()
135 public void registerDeviceCallback(DeviceCallback callback, Handler handler) { in registerDeviceCallback()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/
DRPCUtils.h512 unpackAndRun(HandlerT &Handler, std::tuple<TArgTs...> &Args) { in unpackAndRun() argument
513 return unpackAndRunHelper(Handler, Args, in unpackAndRun()
519 static Error unpackAndRunAsync(HandlerT &Handler, ResponderT &Responder, in unpackAndRunAsync() argument
521 return unpackAndRunAsyncHelper(Handler, Responder, Args, in unpackAndRunAsync()
530 run(HandlerT &Handler, ArgTs &&... Args) { in run() argument
531 Handler(std::move(Args)...); in run()
539 run(HandlerT &Handler, TArgTs... Args) { in run() argument
540 return Handler(std::move(Args)...); in run()
566 unpackAndRunHelper(HandlerT &Handler, ArgTuple &Args, in unpackAndRunHelper() argument
568 return run(Handler, std::move(std::get<Indexes>(Args))...); in unpackAndRunHelper()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DMetadata.def23 // Handler for all types of metadata.
28 // Handler for leaf nodes in the class hierarchy.
33 // Handler for non-leaf nodes in the class hierarchy.
38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to
51 // Handler for leaf nodes under MDNode.
56 // Handler for leaf nodes under MDNode.
61 // Handler for non-leaf nodes under MDNode.
66 // Handler for specialized leaf nodes under MDNode.
71 // Handler for specialized non-leaf nodes under MDNode.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DMetadata.def22 // Handler for all types of metadata.
27 // Handler for leaf nodes in the class hierarchy.
32 // Handler for non-leaf nodes in the class hierarchy.
37 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to
50 // Handler for leaf nodes under MDNode.
55 // Handler for leaf nodes under MDNode.
60 // Handler for non-leaf nodes under MDNode.
65 // Handler for specialized leaf nodes under MDNode.
70 // Handler for specialized non-leaf nodes under MDNode.
/third_party/cef/tests/cefclient/browser/
Durlrequest_test.cc84 class Handler : public CefMessageRouterBrowserSide::Handler { class
86 Handler() { CEF_REQUIRE_UI_THREAD(); } in Handler() function in client::urlrequest_test::__anon44a7b9c00111::Handler
88 ~Handler() { CancelPendingRequest(); } in ~Handler()
126 base::BindOnce(&Handler::OnRequestComplete, base::Unretained(this)); in OnQuery()
175 DISALLOW_COPY_AND_ASSIGN(Handler);
181 handlers.insert(new Handler()); in CreateMessageHandlers()
Dbinding_test.cc21 class Handler : public CefMessageRouterBrowserSide::Handler { class
23 Handler() {} in Handler() function in client::binding_test::__anon4ec94bbf0111::Handler
53 handlers.insert(new Handler()); in CreateMessageHandlers()
Ddialog_test.cc93 class Handler : public CefMessageRouterBrowserSide::Handler { class
95 Handler() {} in Handler() function in client::dialog_test::__anoncd39b2d40111::Handler
166 DISALLOW_COPY_AND_ASSIGN(Handler);
172 handlers.insert(new Handler()); in CreateMessageHandlers()
Dserver_test.cc211 class Handler : public CefMessageRouterBrowserSide::Handler { class
213 Handler() : weak_ptr_factory_(this) {} in Handler() function in client::server_test::__anon573864fb0111::Handler
215 virtual ~Handler() { in ~Handler()
296 port, base::BindOnce(&Handler::OnStartComplete, in HandleStartAction()
310 &Handler::OnStopComplete, weak_ptr_factory_.GetWeakPtr(), callback)); in HandleStopAction()
377 base::WeakPtrFactory<Handler> weak_ptr_factory_;
383 handlers.insert(new Handler()); in CreateMessageHandlers()
Dwindow_test.cc60 class Handler : public CefMessageRouterBrowserSide::Handler { class
62 Handler() : runner_(CreateWindowTestRunner()) {} in Handler() function in client::window_test::__anoncc3b1dbc0111::Handler
118 handlers.insert(new Handler()); in CreateMessageHandlers()
/third_party/cef/tests/ceftests/extensions/
Dextension_test_handler.cc40 class Handler : public CefRequestContextHandler { in RunTest() class
42 explicit Handler(ExtensionTestHandler* test_handler) in RunTest() function in ExtensionTestHandler::RunTest::Handler
57 IMPLEMENT_REFCOUNTING(Handler); in RunTest()
59 rc_handler = new Handler(this); in RunTest()
79 class Handler : public CefRequestContextHandler { in RunTest() class
81 Handler() {} in RunTest() function in ExtensionTestHandler::RunTest::Handler
84 IMPLEMENT_REFCOUNTING(Handler); in RunTest()
87 CefRequestContext::CreateContext(request_context_, new Handler()); in RunTest()
/third_party/skia/tools/
Dserve_wasm.py14 class Handler(http.server.SimpleHTTPRequestHandler): class
17 Handler.extensions_map['.js'] = 'application/javascript'
19 Handler.extensions_map['.wasm'] = 'application/wasm'
21 httpd = socketserver.TCPServer(("", PORT), Handler)
/third_party/skia/specs/web-img-decode/proposed/
Dserve.py12 class Handler(http.server.SimpleHTTPRequestHandler): class
15 Handler.extensions_map['.js'] = 'application/javascript'
17 Handler.extensions_map['.wasm'] = 'application/wasm'
19 httpd = socketserver.TCPServer(("", PORT), Handler)
/third_party/cef/include/wrapper/
Dcef_message_router.h246 class Handler {
282 virtual ~Handler() {} in ~Handler()
298 virtual bool AddHandler(Handler* handler, bool first) = 0;
308 virtual bool RemoveHandler(Handler* handler) = 0;
318 Handler* handler) = 0;
326 Handler* handler) = 0;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DCallLowering.cpp173 ValueHandler &Handler) const { in handleAssignments()
178 return handleAssignments(CCInfo, ArgLocs, MIRBuilder, Args, Handler); in handleAssignments()
185 ValueHandler &Handler) const { in handleAssignments()
193 if (Handler.assignArg(i, CurVT, CurVT, CCValAssign::Full, Args[i], in handleAssignments()
218 if (Handler.isIncomingArgumentHandler()) { in handleAssignments()
221 if (Handler.assignArg(i, NewVT, NewVT, CCValAssign::Full, Args[i], in handleAssignments()
248 if (Handler.assignArg(i + Part, NewVT, NewVT, CCValAssign::Full, in handleAssignments()
281 if (Handler.assignArg(i + PartIdx, NewVT, NewVT, CCValAssign::Full, in handleAssignments()
296 j += Handler.assignCustomValue(Args[i], makeArrayRef(ArgLocs).slice(j)); in handleAssignments()
306 if (Handler.isIncomingArgumentHandler() && VAVT != OrigVT) { in handleAssignments()
[all …]
/third_party/cef/tests/cefclient/renderer/
Dperformance_test_tests.cc89 class Handler : public CefV8Handler { in PERF_TEST_FUNC() class
91 Handler() {} in PERF_TEST_FUNC() function in client::performance_test::__anonb51fd19b0111::PERF_TEST_FUNC::Handler
99 IMPLEMENT_REFCOUNTING(Handler); in PERF_TEST_FUNC()
103 CefRefPtr<CefV8Handler> handler = new Handler(); in PERF_TEST_FUNC()
111 class Handler : public CefV8Handler { in PERF_TEST_FUNC() class
113 Handler() {} in PERF_TEST_FUNC() function in client::performance_test::__anonb51fd19b0111::PERF_TEST_FUNC::Handler
121 IMPLEMENT_REFCOUNTING(Handler); in PERF_TEST_FUNC()
125 CefRefPtr<CefV8Handler> handler = new Handler(); in PERF_TEST_FUNC()
136 class Handler : public CefV8Handler { in PERF_TEST_FUNC() class
138 Handler() {} in PERF_TEST_FUNC() function in client::performance_test::__anonb51fd19b0111::PERF_TEST_FUNC::Handler
[all …]
/third_party/cef/tests/ceftests/
Dv8_unittest.cc1869 class Handler : public CefV8Handler { in RunFunctionCreateTest() class
1871 Handler() {} in RunFunctionCreateTest() function in __anonac0665330111::V8RendererTest::RunFunctionCreateTest::Handler
1879 IMPLEMENT_REFCOUNTING(Handler); in RunFunctionCreateTest()
1885 CefRefPtr<CefV8Value> value = CefV8Value::CreateFunction("f", new Handler); in RunFunctionCreateTest()
1915 class Handler : public CefV8Handler { in RunFunctionHandlerTest() class
1917 Handler() {} in RunFunctionHandlerTest() function in __anonac0665330111::V8RendererTest::RunFunctionHandlerTest::Handler
1945 IMPLEMENT_REFCOUNTING(Handler); in RunFunctionHandlerTest()
1951 Handler* handler = new Handler; in RunFunctionHandlerTest()
1986 class Handler : public CefV8Handler { in RunFunctionHandlerExceptionTest() class
1988 Handler() {} in RunFunctionHandlerExceptionTest() function in __anonac0665330111::V8RendererTest::RunFunctionHandlerExceptionTest::Handler
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
DFormatHandler.java1026 public static class RelativeDateFormatHandler implements SerializableTestUtility.Handler
1049 public static class BasicDurationFormatHandler implements SerializableTestUtility.Handler
1075 public static class NumberFormatHandler implements SerializableTestUtility.Handler
1697 public static class DecimalFormatSymbolsHandler implements SerializableTestUtility.Handler
1741 public static class CurrencyPluralInfoHandler implements SerializableTestUtility.Handler
1772 public static class MessageFormatHandler implements SerializableTestUtility.Handler
1793 public static class MessageFormatFieldHandler implements SerializableTestUtility.Handler
1808 …ublic static class RelativeDateTimeFormatterFieldHandler implements SerializableTestUtility.Handler
1823 public static class DateIntervalSpanFieldHandler implements SerializableTestUtility.Handler
1838 public static class ListFormatterFieldHandler implements SerializableTestUtility.Handler
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DFormatHandler.java1024 public static class RelativeDateFormatHandler implements SerializableTestUtility.Handler
1047 public static class BasicDurationFormatHandler implements SerializableTestUtility.Handler
1073 public static class NumberFormatHandler implements SerializableTestUtility.Handler
1695 public static class DecimalFormatSymbolsHandler implements SerializableTestUtility.Handler
1739 public static class CurrencyPluralInfoHandler implements SerializableTestUtility.Handler
1770 public static class MessageFormatHandler implements SerializableTestUtility.Handler
1791 public static class MessageFormatFieldHandler implements SerializableTestUtility.Handler
1806 …ublic static class RelativeDateTimeFormatterFieldHandler implements SerializableTestUtility.Handler
1821 public static class DateIntervalSpanFieldHandler implements SerializableTestUtility.Handler
1836 public static class ListFormatterFieldHandler implements SerializableTestUtility.Handler
[all …]
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/
DjsDeclarationsClassStatic.ts7 class Handler { class
15 Handler.statische = function() { }
21 module.exports = Handler;
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dhrtimer.h109 typedef enum hrtimer_restart (*Handler)(struct hrtimer *); typedef
117 Handler function; /**< Timeout callback function. */
135 Handler pfnHandler; /**< Timeout callback function. */
217 int linux_hrtimer_create(struct hrtimer *timer, union ktime time, Handler handler);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DErrorHandling.cpp148 fatal_error_handler_t Handler = nullptr; in report_bad_alloc_error() local
156 Handler = BadAllocErrorHandler; in report_bad_alloc_error()
160 if (Handler) { in report_bad_alloc_error()
161 Handler(HandlerData, Reason, GenCrashDiag); in report_bad_alloc_error()
225 void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler) { in LLVMInstallFatalErrorHandler() argument
227 LLVM_EXTENSION reinterpret_cast<void *>(Handler)); in LLVMInstallFatalErrorHandler()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86CallLowering.cpp218 OutgoingValueHandler Handler(MIRBuilder, MRI, MIB, RetCC_X86); in lowerReturn() local
219 if (!handleAssignments(MIRBuilder, SplitArgs, Handler)) in lowerReturn()
368 FormalArgHandler Handler(MIRBuilder, MRI, CC_X86); in lowerFormalArguments() local
369 if (!handleAssignments(MIRBuilder, SplitArgs, Handler)) in lowerFormalArguments()
424 OutgoingValueHandler Handler(MIRBuilder, MRI, MIB, CC_X86); in lowerCall() local
425 if (!handleAssignments(MIRBuilder, SplitArgs, Handler)) in lowerCall()
440 .addImm(Handler.getNumXmmRegs()); in lowerCall()
473 CallReturnHandler Handler(MIRBuilder, MRI, RetCC_X86, MIB); in lowerCall() local
474 if (!handleAssignments(MIRBuilder, SplitArgs, Handler)) in lowerCall()
481 CallSeqStart.addImm(Handler.getStackSize()) in lowerCall()
[all …]

123456789