Searched defs:handlers (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium-trace/trace-viewer/tracing/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/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DStdCatchBuilder.java144 CatchHandlerList handlers = handlersFor(block, addresses);
150 currentHandlers = handlers;
154 if (currentHandlers.equals(handlers)
157 * The block we are looking at now has the same handlers
167 * The block we are looking at now has incompatible handlers,
169 * one. Note: We only emit an entry if it has associated handlers.
180 currentHandlers = handlers;
267 * handlers.
271 * @param handlers {@code non-null;} the handlers fo
274 makeEntry(BasicBlock start, BasicBlock end, CatchHandlerList handlers, BlockAddresses addresses) argument
[all...]
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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java31 * List of exception handlers (tuples of covered range, catch type,
59 * length of the handlers header (encoded size), if known; used for
135 "too many catch handlers");
140 // Write out the handlers "header" consisting of its size in entries.
222 * Helper method to annotate or simply print the exception handlers.
248 CatchHandlerList handlers = entry.getHandlers();
251 String s2 = handlers.toHuman(subPrefix, "");
267 annotateTo.annotate(0, prefix + "handlers:");
297 * @param handlers {@code non-null;} handlers t
304 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java29 private static final Map<String, Method> handlers; field in class:URLHandler
96 handlers = h;
106 if (handlers != null) {
107 Method m = handlers.get(protocol);
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DContextHandlerCollection.java42 * {@link org.eclipse.jetty.http.PathMap} to it's contained handlers based
44 * The contexts do not need to be directly contained, only children of the contained handlers.
76 Handler[] handlers=null;
80 handlers = new Handler[]{ branches[b] };
84 handlers = ((HandlerContainer)branches[b]).getChildHandlersByClass(ContextHandler.class);
89 for (int i=0;i<handlers.length;i++)
91 ContextHandler handler=(ContextHandler)handlers[i];
159 public void setHandlers(Handler[] handlers) argument
162 super.setHandlers(handlers);
183 Handler[] handlers
[all...]
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/src/ic/arm/
H A Dic-compiler-arm.cc36 CodeHandleList* handlers,
81 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq);
35 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/v8/src/ic/arm64/
H A Dic-compiler-arm64.cc37 CodeHandleList* handlers,
81 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET);
36 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/v8/src/ic/ia32/
H A Dic-compiler-ia32.cc40 CodeHandleList* handlers,
83 __ j(equal, handlers->at(current));
39 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/v8/src/ic/mips/
H A Dic-compiler-mips.cc19 CodeHandleList* handlers,
65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
18 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/v8/src/ic/mips64/
H A Dic-compiler-mips64.cc19 CodeHandleList* handlers,
65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
18 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/v8/src/ic/x87/
H A Dic-compiler-x87.cc40 CodeHandleList* handlers,
83 __ j(equal, handlers->at(current));
39 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DAnalyzer.java64 private List[] handlers; field in class:Analyzer
107 handlers = new List[n];
114 // computes exception handlers for each instruction
120 List insnHandlers = handlers[j];
123 handlers[j] = insnHandlers;
269 List insnHandlers = handlers[insn];
339 List insnHandlers = handlers[insn];
382 * Returns the exception handlers for the given instruction.
389 return handlers[insn];
/external/v8/src/ic/x64/
H A Dic-compiler-x64.cc74 CodeHandleList* handlers,
118 __ j(equal, handlers->at(current), RelocInfo::CODE_TARGET);
73 CompilePolymorphic(TypeHandleList* types, CodeHandleList* handlers, Handle<Name> name, Code::StubType type, IcCheckType check) argument
/external/vogar/src/vogar/
H A DOptionParser.java144 private static final HashMap<Class<?>, Handler> handlers = new HashMap<Class<?>, Handler>(); field in class:OptionParser
146 handlers.put(boolean.class, new BooleanHandler());
147 handlers.put(Boolean.class, new BooleanHandler());
149 handlers.put(byte.class, new ByteHandler());
150 handlers.put(Byte.class, new ByteHandler());
151 handlers.put(short.class, new ShortHandler());
152 handlers.put(Short.class, new ShortHandler());
153 handlers.put(int.class, new IntegerHandler());
154 handlers.put(Integer.class, new IntegerHandler());
155 handlers
[all...]
/external/v8/src/ic/
H A Dhandler-compiler.cc379 MapHandleList* receiver_maps, CodeHandleList* handlers) {
406 handlers->Add(cached_stub);
378 CompileElementHandlers( MapHandleList* receiver_maps, CodeHandleList* handlers) argument
H A Dic-compiler.cc41 CodeHandleList handlers(1);
43 handlers.Add(handler);
45 return CompilePolymorphic(&types, &handlers, name, stub_type, check);
63 // prototype cannot hold multiple handlers, one for each of the string maps,
257 CodeHandleList handlers(receiver_maps->length());
259 compiler.CompileElementHandlers(receiver_maps, &handlers);
262 &types, &handlers, isolate->factory()->empty_string(), Code::NORMAL,
273 Code::Kind kind, TypeHandleList* types, CodeHandleList* handlers,
275 Handle<Code> handler = handlers->at(0);
279 return ic_compiler.CompilePolymorphic(types, handlers, nam
272 ComputePolymorphic( Code::Kind kind, TypeHandleList* types, CodeHandleList* handlers, int valid_types, Handle<Name> name, ExtraICState extra_ic_state) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/six/
H A Dtest_six.py20 from logging import handlers namespace
21 m = six._import_module("logging.handlers")
22 assert m is handlers
/external/chromium-trace/trace-viewer/third_party/webapp2/
H A Dwebapp2.py23 from wsgiref import handlers namespace
515 does it here to allow more flexibility in extended classes: handlers
1115 handlers = None variable in class:Router
1126 self.handlers = {}
1180 """Sets the function that adapts loaded handlers for dispatching.
1271 if handler not in self.handlers:
1272 self.handlers[handler] = handler = import_string(handler)
1274 handler = self.handlers[handler]
1283 Because handlers use or implement different dispatching mechanisms,
1564 Uncaught exceptions can be handled by error handlers registere
[all...]
/external/openssh/
H A Dsftp-server.c91 /* Packet handlers */
125 struct sftp_handler handlers[] = { variable in typeref:struct:sftp_handler
1449 for (i = 0; handlers[i].handler != NULL; i++) {
1450 if (type == handlers[i].type) {
1451 if (!request_permitted(&handlers[i])) {
1455 handlers[i].handler(id);
1460 if (handlers[i].handler == NULL)
1530 for (i = 0; handlers[i].handler != NULL; i++)
1531 printf("%s\n", handlers[i].name);
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_client.c57 * store registered RX handlers. These handlers are registered by calls to
196 * auth_handlers - Authentication message handlers
201 * num_auth_handlers - Number of handlers in auth_handlers
206 * acct_handlers - Accounting message handlers
211 * num_acct_handlers - Number of handlers in acct_handlers
262 * There can be multiple registered RADIUS message handlers. The handlers will
275 struct radius_rx_handler **handlers, *newh; local
279 handlers
764 struct radius_rx_handler *handlers; local
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius_client.c57 * store registered RX handlers. These handlers are registered by calls to
196 * auth_handlers - Authentication message handlers
201 * num_auth_handlers - Number of handlers in auth_handlers
206 * acct_handlers - Accounting message handlers
211 * num_acct_handlers - Number of handlers in acct_handlers
262 * There can be multiple registered RADIUS message handlers. The handlers will
275 struct radius_rx_handler **handlers, *newh; local
279 handlers
764 struct radius_rx_handler *handlers; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_client.c57 * store registered RX handlers. These handlers are registered by calls to
196 * auth_handlers - Authentication message handlers
201 * num_auth_handlers - Number of handlers in auth_handlers
206 * acct_handlers - Accounting message handlers
211 * num_acct_handlers - Number of handlers in acct_handlers
262 * There can be multiple registered RADIUS message handlers. The handlers will
275 struct radius_rx_handler **handlers, *newh; local
279 handlers
764 struct radius_rx_handler *handlers; local
[all...]
/external/clang/lib/AST/
H A DStmt.cpp823 Stmt *tryBlock, ArrayRef<Stmt*> handlers) {
825 Size += ((handlers.size() + 1) * sizeof(Stmt));
828 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
841 ArrayRef<Stmt*> handlers)
842 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
845 std::copy(handlers.begin(), handlers.end(), Stmts + 1);
822 Create(const ASTContext &C, SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers) argument
840 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers) argument

Completed in 431 milliseconds

123