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

1 2 3 4 5 6 7 8

  /external/webkit/Tools/QueueStatusServer/handlers/
__init__.py 3 from handlers.updatebase import UpdateBase
updatesvnrevision.py 32 import handlers namespace
36 class UpdateSVNRevision(handlers.UpdateBase):
  /external/webkit/Tools/QueueStatusServer/
main.py 36 from handlers.dashboard import Dashboard
37 from handlers.gc import GC
38 from handlers.nextpatch import NextPatch
39 from handlers.patch import Patch
40 from handlers.patchstatus import PatchStatus
41 from handlers.queuestatus import QueueStatus
42 from handlers.recentstatus import QueuesOverview
43 from handlers.releasepatch import ReleasePatch
44 from handlers.showresults import ShowResults
45 from handlers.statusbubble import StatusBubbl
    [all...]
  /external/oprofile/daemon/
opd_extended.c 58 && ext_feature_table[opd_ext_feat_index].handlers != NULL)
68 && ext_feature_table[opd_ext_feat_index].handlers != NULL
69 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile != NULL)
102 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_init(args);
120 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_deinit();
129 && ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats != NULL) {
131 ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats();
143 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create != NULL)
144 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf);
152 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup != NULL
    [all...]
  /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...]
  /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...]
  /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...]
  /external/webkit/Tools/TestResultServer/
main.py 36 from handlers import dashboardhandler
37 from handlers import menu
38 from handlers import testfilehandler
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
app.yaml 11 handlers:
  /external/chromium-trace/trace-viewer/examples/
run_stream_server.sh 8 HANDLERSPATH=examples/stream_server/handlers
  /external/webkit/Tools/RebaselineQueueServer/
main.py 36 from handlers import pages
37 from handlers import builderqueue
  /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;
  /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/chromium/chrome/browser/chromeos/
choose_mobile_network_dialog.h 27 std::vector<WebUIMessageHandler*>* handlers) const;
sim_dialog_delegate.h 37 std::vector<WebUIMessageHandler*>* handlers) const;
  /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/webkit/Tools/Scripts/webkitpy/common/system/
logutils.py 129 """Return a list of the default logging handlers to use.
159 handlers=None):
163 A list of references to the logging handlers added to the root
164 logger. This allows the caller to later remove the handlers
176 handlers. The stream must define an "encoding" data attribute,
178 handlers: A list of logging.Handler instances to add to the logger
197 if handlers is None:
198 handlers = _default_handlers(stream)
202 for handler in handlers:
207 return handlers
    [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...]
  /external/chromium/chrome/browser/ui/views/
keyboard_overlay_delegate.h 33 std::vector<WebUIMessageHandler*>* handlers) const;
  /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);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 219 option handlers. */
241 const struct cl_option_handlers *handlers,
268 /* The number of individual handlers. */
271 /* The handlers themselves. */
272 struct cl_option_handler_func handlers[3]; member in struct:cl_option_handlers
309 extern void set_default_handlers (struct cl_option_handlers *handlers);
328 const struct cl_option_handlers *handlers,
340 const struct cl_option_handlers *handlers,
345 const struct cl_option_handlers *handlers,
361 const struct cl_option_handlers *handlers,
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 219 option handlers. */
241 const struct cl_option_handlers *handlers,
268 /* The number of individual handlers. */
271 /* The handlers themselves. */
272 struct cl_option_handler_func handlers[3]; member in struct:cl_option_handlers
309 extern void set_default_handlers (struct cl_option_handlers *handlers);
328 const struct cl_option_handlers *handlers,
340 const struct cl_option_handlers *handlers,
345 const struct cl_option_handlers *handlers,
361 const struct cl_option_handlers *handlers,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 219 option handlers. */
241 const struct cl_option_handlers *handlers,
268 /* The number of individual handlers. */
271 /* The handlers themselves. */
272 struct cl_option_handler_func handlers[3]; member in struct:cl_option_handlers
309 extern void set_default_handlers (struct cl_option_handlers *handlers);
328 const struct cl_option_handlers *handlers,
340 const struct cl_option_handlers *handlers,
345 const struct cl_option_handlers *handlers,
361 const struct cl_option_handlers *handlers,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 219 option handlers. */
241 const struct cl_option_handlers *handlers,
268 /* The number of individual handlers. */
271 /* The handlers themselves. */
272 struct cl_option_handler_func handlers[3]; member in struct:cl_option_handlers
309 extern void set_default_handlers (struct cl_option_handlers *handlers);
328 const struct cl_option_handlers *handlers,
340 const struct cl_option_handlers *handlers,
345 const struct cl_option_handlers *handlers,
361 const struct cl_option_handlers *handlers,
    [all...]

Completed in 1046 milliseconds

1 2 3 4 5 6 7 8