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

1234

/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...]
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...]
/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/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...]
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 DAbstractHandlerContainer.java32 * This is the base class for handlers that may contain other handlers.
86 Handler[] handlers=byClass==null?container.getChildHandlers():container.getChildHandlersByClass(byClass);
87 list=LazyList.addArray(list, handlers);
H A DDefaultHandler.java131 Handler[] handlers = server==null?null:server.getChildHandlersByClass(ContextHandler.class);
133 for (int i=0;handlers!=null && i<handlers.length;i++)
135 ContextHandler context = (ContextHandler)handlers[i];
/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...]
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/impl/
H A DJDK14AdapterLoggerNameTest.java64 Handler[] handlers = logger.getHandlers();
65 for (int i = 0; i < handlers.length; i++) {
66 logger.removeHandler(handlers[i]);
/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/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java78 BasicBlock.Catch handlers = tb.toCatch;
79 while (handlers != null) {
80 TypedBlock h = (TypedBlock)handlers.body;
86 handlers = handlers.next;
171 BasicBlock.Catch handlers = tb.toCatch;
173 while (handlers != null) {
174 TypedBlock h = (TypedBlock)handlers.body;
186 handlers = handlers
[all...]
/external/android-clat/
H A Dnetlink_callbacks.c22 #include <netlink/handlers.h>
/external/libnl/include/netlink/
H A Dsocket.h16 #include <netlink/handlers.h>
H A Dnetlink.h32 #include <netlink/handlers.h>
/external/libnl/
H A DAndroid.mk19 lib/handlers.c \
/external/v8/src/ic/
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/clang/tools/scan-build/
H A Dsorttable.js382 // create a hash table of event handlers for each element/event pair
383 var handlers = element.events[type];
384 if (!handlers) {
385 handlers = element.events[type] = {};
388 handlers[0] = element["on" + type];
392 handlers[handler.$$guid] = handler;
415 // get a reference to the hash table of event handlers
416 var handlers = this.events[event.type];
418 for (var i in handlers) {
419 this.$$handleEvent = 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/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
H A DAbstractControlActionsManager.java31 import org.eclipse.ui.handlers.IHandlerActivation;
32 import org.eclipse.ui.handlers.IHandlerService;
38 * Manager for installing/unistalling global handlers for {@link Control} actions commands.
122 * Activates the handlers for list of commands (see COMMAND_HANDLERS) with:<br>
168 * Deactivates all handlers and clears handlers collection.
/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

Completed in 1354 milliseconds

1234