HomeSort by relevance Sort by last modified time
    Searched defs:handlers (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/ui/webui/
constrained_html_ui.cc 31 std::vector<WebUIMessageHandler*> handlers; local
32 dialog_delegate->GetWebUIMessageHandlers(&handlers);
35 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
36 it != handlers.end(); ++it) {
html_dialog_ui.cc 47 std::vector<WebUIMessageHandler*> handlers; local
52 (*delegate)->GetWebUIMessageHandlers(&handlers);
57 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
58 it != handlers.end(); ++it) {
  /external/webkit/Tools/QueueStatusServer/handlers/
updatesvnrevision.py 32 import handlers namespace
36 class UpdateSVNRevision(handlers.UpdateBase):
  /external/chromium/chrome/common/
worker_thread_ticker.cc 22 TickHandlerListType* handlers = &ticker_->tick_handler_list_; local
23 for (TickHandlerListType::const_iterator i = handlers->begin();
24 i != handlers->end(); ++i) {
48 // You cannot change the list of handlers when the timer is running.
59 // You cannot change the list of handlers when the timer is running.
  /external/oprofile/daemon/
opd_extended.h 28 // Feature handlers
29 struct opd_ext_handlers * handlers; member in struct:opd_ext_feature
33 * OProfile Extended handlers
42 // Extended sfile handlers
47 * OProfile Extended sub-handlers (sfile)
opd_trans.c 264 handler_t handlers[LAST_CODE + 1] = { variable
346 handlers[code](&trans);
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/
StaticPortConfigHandler.java 17 package com.android.ide.eclipse.monitor.handlers;
24 import org.eclipse.ui.handlers.HandlerUtil;
  /libcore/support/src/test/java/tests/io/
MockOs.java 37 private final InheritableThreadLocal<Map<String, Deque<InvocationHandler>>> handlers field in class:MockOs
85 * Returns the invocation handlers to handle upcoming invocations of
89 Map<String, Deque<InvocationHandler>> threadFaults = handlers.get();
103 Deque<InvocationHandler> handlers = getHandlers(methodName); local
105 handlers.add(delegateHandler);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 102 /** {@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) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
StdCatchBuilder.java 144 CatchHandlerList handlers = handlersFor(block, addresses); local
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 for the rang
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 102 /** {@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) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
StdCatchBuilder.java 144 CatchHandlerList handlers = handlersFor(block, addresses); local
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 for the rang
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 33 import wsgiref.handlers namespace
37 Base class for our page-based request handlers that contains
205 wsgiref.handlers.CGIHandler().run(application)
web_services.py 18 Handlers for Sample SyncAdapter services.
34 import wsgiref.handlers namespace
397 wsgiref.handlers.CGIHandler().run(application)
  /external/chromium/chrome/common/extensions/
extension_l10n_util_unittest.cc 376 ListValue* handlers = new ListValue(); local
377 manifest.Set(keys::kFileBrowserHandlers, handlers);
379 handlers->Append(handler);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchTable.java 102 /** {@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) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
StdCatchBuilder.java 144 CatchHandlerList handlers = handlersFor(block, addresses); local
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 for the rang
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 33 your app's source directory. Then, copy the URL handlers from app.yaml into
46 import wsgiref.handlers namespace
304 wsgiref.handlers.CGIHandler().run(application)
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 78 BasicBlock.Catch handlers = tb.toCatch; local
79 while (handlers != null) {
80 TypedBlock h = (TypedBlock)handlers.body;
86 handlers = handlers.next;
171 BasicBlock.Catch handlers = tb.toCatch; local
173 while (handlers != null) {
174 TypedBlock h = (TypedBlock)handlers.body;
186 handlers = handlers.next
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
MultiTouchChannel.java 17 package com.android.tools.sdkcontroller.handlers;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 33 * List of exception handlers (tuples of covered range, catch type,
61 * length of the handlers header (encoded size), if known; used for
137 "too many catch handlers");
142 // Write out the handlers "header" consisting of its size in entries.
224 * Helper method to annotate or simply print the exception handlers.
250 CatchHandlerList handlers = entry.getHandlers(); local
253 String s2 = handlers.toHuman(subPrefix, "");
269 annotateTo.annotate(0, prefix + "handlers:");
299 * @param handlers {@code non-null;} handlers to annotat
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 31 * 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(); local
251 String s2 = handlers.toHuman(subPrefix, "");
267 annotateTo.annotate(0, prefix + "handlers:");
297 * @param handlers {@code non-null;} handlers to annotat
    [all...]
  /external/chromium/chrome/browser/printing/
print_dialog_cloud_unittest.cc 109 void(std::vector<WebUIMessageHandler*>* handlers));
337 std::vector<WebUIMessageHandler*> handlers; local
338 delegate_->GetWebUIMessageHandlers(&handlers);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 31 * 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(); local
251 String s2 = handlers.toHuman(subPrefix, "");
267 annotateTo.annotate(0, prefix + "handlers:");
297 * @param handlers {@code non-null;} handlers to annotat
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 41 /*TODO: add logic to merge adjacent, identical try blocks, and remove superflous handlers
61 public LinkedList<Handler> handlers; field in class:TryListBuilder.TryRange
68 this.handlers = new LinkedList<Handler>();
108 tryRange.handlers.addAll(this.handlers);
117 handlers.addLast(handler);
121 handlers.addFirst(handler);
142 ArrayList<CodeItem.EncodedCatchHandler> handlers = new ArrayList<CodeItem.EncodedCatchHandler>(); local
151 new CodeItem.EncodedTypeAddrPair[tryRange.handlers.size()];
154 for (Handler handler: tryRange.handlers) {
    [all...]

Completed in 2705 milliseconds

1 2 3 4