Searched refs:handlers (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/chromium-trace/catapult/firefighter/default/
H A Dmain.py7 from handlers import blank
8 from handlers import query
9 from handlers import trace
/external/chromium-trace/catapult/firefighter/update/
H A Dmain.py7 from handlers import blank
8 from handlers import builds
/external/webrtc/webrtc/modules/desktop_capture/x11/
H A Dshared_x_display.cc51 EventHandlersMap::iterator handlers = event_handlers_.find(type); local
52 if (handlers == event_handlers_.end())
56 std::remove(handlers->second.begin(), handlers->second.end(), handler);
57 handlers->second.erase(new_end, handlers->second.end());
59 // Check if no handlers left for this event.
60 if (handlers->second.empty())
61 event_handlers_.erase(handlers);
76 EventHandlersMap::iterator handlers local
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
H A Dapp.yaml23 handlers:
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/hello/server/
H A Dapp.yaml23 handlers:
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Dmain.py21 handlers:
39 from mapreduce import handlers namespace
59 """Create new handlers map.
70 # Task queue handlers.
73 (r".*/worker_callback.*", handlers.MapperWorkerCallbackHandler),
74 (r".*/controller_callback.*", handlers.ControllerCallbackHandler),
75 (r".*/kickoffjob_callback.*", handlers.KickOffJobHandler),
76 (r".*/finalizejob_callback.*", handlers.FinalizeJobHandler),
79 # All JSON handlers should have /command/ prefix.
80 (r".*/command/start_job", handlers
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchTable.java102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in class:CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) { argument
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers
[all...]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
H A Dsimple_api_parser.js19 var SimpleApiParser = module.exports = function (handlers, options) {
21 this.handlers = {
22 doctype: this._wrapHandler(handlers.doctype),
23 startTag: this._wrapHandler(handlers.startTag),
24 endTag: this._wrapHandler(handlers.endTag),
25 text: this._wrapHandler(handlers.text),
26 comment: this._wrapHandler(handlers.comment)
83 this.handlers.startTag(token.tagName, token.attrs, token.selfClosing);
86 this.handlers.endTag(token.tagName);
89 this.handlers
[all...]
/external/autotest/client/cros/cellular/pseudomodem/
H A Dlogging_setup.py10 import logging.handlers namespace
52 for handler in root.handlers:
62 syslog_handler = logging.handlers.SysLogHandler(
64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DHandlerList.java46 Handler[] handlers = getHandlers();
48 if (handlers!=null && isStarted())
50 for (int i=0;i<handlers.length;i++)
52 handlers[i].handle(target,baseRequest, request, response);
H A DHandlerCollection.java35 /** A collection of handlers.
37 * The default implementations calls all handlers in list order,
40 * handlers.
65 * @return Returns the handlers.
75 * @param handlers The handlers to set.
77 public void setHandlers(Handler[] handlers) argument
83 _handlers = handlers;
87 for (int i=0;handlers!=null && i<handlers
[all...]
/external/v8/test/cctest/interpreter/bytecode_expectations/
H A DPrimitiveReturnStatements.golden23 handlers: [
40 handlers: [
57 handlers: [
74 handlers: [
91 handlers: [
108 handlers: [
125 handlers: [
142 handlers: [
159 handlers: [
176 handlers
[all...]
H A DLookupSlotInEval.golden31 handlers: [
56 handlers: [
81 handlers: [
105 handlers: [
H A DThisFunction.golden28 handlers: [
48 handlers: [
H A DTypeof.golden31 handlers: [
53 handlers: [
H A DPrimitiveExpressions.golden26 handlers: [
46 handlers: [
66 handlers: [
86 handlers: [
106 handlers: [
126 handlers: [
146 handlers: [
166 handlers: [
186 handlers: [
206 handlers
[all...]
H A DParameters.golden26 handlers: [
44 handlers: [
62 handlers: [
80 handlers: [
98 handlers: [
118 handlers: [
138 handlers: [
H A DDeleteLookupSlotInEval.golden36 handlers: [
60 handlers: [
87 handlers: [
H A DFunctionLiterals.golden25 handlers: [
46 handlers: [
69 handlers: [
H A DIntegerConstants.golden24 handlers: [
43 handlers: [
62 handlers: [
/external/autotest/frontend/afe/
H A Drpcserver_logging.py1 import logging, logging.handlers, time, os namespace
17 handler = logging.handlers.SocketHandler(
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/
H A Dapp.yaml23 handlers:
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
H A Dapp.yaml23 handlers:
/external/clang/lib/AST/
H A DStmtCXX.cpp27 Stmt *tryBlock, ArrayRef<Stmt *> handlers) {
29 Size += ((handlers.size() + 1) * sizeof(Stmt *));
32 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
45 ArrayRef<Stmt *> handlers)
46 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
49 std::copy(handlers.begin(), handlers.end(), Stmts + 1);
26 Create(const ASTContext &C, SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt *> handlers) argument
44 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt *> handlers) argument
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
H A DSLF4JBridgeHandler.java57 * // Optionally remove existing handlers attached to j.u.l root logger
66 * handlers = org.slf4j.bridge.SLF4JBridgeHandler</pre>
137 Handler[] handlers = rootLogger.getHandlers();
138 for (int i = 0; i < handlers.length; i++) {
139 if (handlers[i] instanceof SLF4JBridgeHandler) {
140 rootLogger.removeHandler(handlers[i]);
153 Handler[] handlers = rootLogger.getHandlers();
154 for (int i = 0; i < handlers.length; i++) {
155 if (handlers[i] instanceof SLF4JBridgeHandler) {
163 * Invoking this method removes/unregisters/detaches all handlers currentl
[all...]

Completed in 2237 milliseconds

1234567891011