Home
last modified time | relevance | path

Searched refs:handlerList (Results 1 – 4 of 4) sorted by relevance

/third_party/jsframework/runtime/main/app/
DApp.ts95 const handlerList: Function[] = events[type] || []; constant
96 handlerList.push(handler);
97 events[type] = handlerList;
107 const handlerList: Function[] = events[type]; constant
109 if (handlerList) {
110 handlerList.forEach((handler) => {
/third_party/jsframework/runtime/main/model/
Dindex.ts282 const handlerList = events[type]; constant
283 if (handlerList) {
286 handlerList.forEach((handler) => {
305 const handlerList = events[type]; constant
306 if (handlerList) {
308 handlerList.forEach((handler) => {
366 const handlerList = events[type] || []; constant
367 handlerList.push(handler);
368 events[type] = handlerList;
393 const handlerList = events[type]; constant
[all …]
/third_party/python/Lib/logging/
D__init__.py2167 def shutdown(handlerList=_handlerList): argument
2174 for wr in reversed(handlerList[:]):
/third_party/python/Lib/test/
Dtest_logging.py4157 logging.shutdown(handlerList=list(handlers))
4169 logging.shutdown(handlerList=list(handlers))