HomeSort by relevance Sort by last modified time
    Searched refs:_handlers (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HandlerRegistry.js 39 this._handlers = {};
48 return Object.getOwnPropertyNames(this._handlers);
76 var handler = this._handlers[name];
83 this._handlers[name] = handler;
89 delete this._handlers[name];
ContextMenu.js 186 this._handlers = {};
222 this._handlers[id] = handler;
235 if (this._handlers[id])
236 this._handlers[id].call(this);
ExtensionAPI.js 755 this._handlers = {};
782 return !!this._handlers[command];
787 this._handlers[command] = handler;
792 delete this._handlers[command];
819 var handler = this._handlers[request.command];
ExtensionServer.js 37 this._handlers = {};
753 if (message.command in this._handlers)
754 result = this._handlers[message.command](message, event.target);
765 this._handlers[command] = callback;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logutils_unittest.py 79 self._handlers = logutils.configure_logging(logging_level=logging_level,
93 for handler in self._handlers:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 201 #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
617 _handlers = weakref.WeakValueDictionary() #map of handler names to handlers variable
674 if self._name in _handlers:
675 del _handlers[self._name]
678 _handlers[name] = self
774 _handlers, which is used for handler lookup by name. Subclasses
781 if self._name and self._name in _handlers:
782 del _handlers[self._name]
    [all...]
config.py 75 logging._handlers.clear()
77 # Handlers add themselves to logging._handlers
519 if name not in logging._handlers:
524 handler = logging._handlers[name]
549 logging._handlers.clear()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 201 #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
617 _handlers = weakref.WeakValueDictionary() #map of handler names to handlers variable
674 if self._name in _handlers:
675 del _handlers[self._name]
678 _handlers[name] = self
774 _handlers, which is used for handler lookup by name. Subclasses
781 if self._name and self._name in _handlers:
782 del _handlers[self._name]
    [all...]
config.py 75 logging._handlers.clear()
77 # Handlers add themselves to logging._handlers
519 if name not in logging._handlers:
524 handler = logging._handlers[name]
549 logging._handlers.clear()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker_unittest.py 92 self._handlers = configure_logging(stream=log_stream, logger=logger,
105 for handler in self._handlers:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_logging.py 67 self.saved_handlers = logging._handlers.copy()
104 logging._handlers.clear()
105 logging._handlers.update(self.saved_handlers)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_logging.py 67 self.saved_handlers = logging._handlers.copy()
104 logging._handlers.clear()
105 logging._handlers.update(self.saved_handlers)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 346 milliseconds