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

12345

/external/webkit/Tools/QueueStatusServer/handlers/
H A D__init__.py3 from handlers.updatebase import UpdateBase
H A Dupdatesvnrevision.py32 import handlers namespace
36 class UpdateSVNRevision(handlers.UpdateBase):
H A Dstatusbubble_unittest.py32 from handlers.statusbubble import StatusBubble
/external/webkit/Tools/QueueStatusServer/
H A Dmain.py36 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
[all...]
/external/oprofile/daemon/
H A Dopd_extended.c58 && 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
[all...]
H A Dopd_extended.h28 // 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)
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Devent_target.js34 var handlers = this.listeners_[type];
35 if (handlers.indexOf(handler) < 0)
36 handlers.push(handler);
50 var handlers = this.listeners_[type];
51 var index = handlers.indexOf(handler);
54 if (handlers.length == 1)
57 handlers.splice(index, 1);
87 var handlers = this.listeners_[type].concat();
88 for (var i = 0, handler; handler = handlers[i]; i++) {
/external/chromium-trace/trace-viewer/src/
H A Devent_target.js33 var handlers = this.listeners_[type];
34 if (handlers.indexOf(handler) < 0)
35 handlers.push(handler);
49 var handlers = this.listeners_[type];
50 var index = handlers.indexOf(handler);
53 if (handlers.length == 1)
56 handlers.splice(index, 1);
86 var handlers = this.listeners_[type].concat();
87 for (var i = 0, handler; handler = handlers[i]; i++) {
/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/webkit/Tools/TestResultServer/
H A Dmain.py36 from handlers import dashboardhandler
37 from handlers import menu
38 from handlers import testfilehandler
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
H A Dapp.yaml11 handlers:
/external/chromium-trace/trace-viewer/examples/
H A Drun_stream_server.sh8 HANDLERSPATH=examples/stream_server/handlers
/external/webkit/Tools/RebaselineQueueServer/
H A Dmain.py36 from handlers import pages
37 from handlers import builderqueue
/external/chromium/chrome/browser/ui/webui/
H A Dconstrained_html_ui.cc31 std::vector<WebUIMessageHandler*> handlers; local
32 dialog_delegate->GetWebUIMessageHandlers(&handlers);
35 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
36 it != handlers.end(); ++it) {
H A Dhtml_dialog_ui.cc47 std::vector<WebUIMessageHandler*> handlers; local
52 (*delegate)->GetWebUIMessageHandlers(&handlers);
57 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
58 it != handlers.end(); ++it) {
H A Dconstrained_html_ui_browsertest.cc39 std::vector<WebUIMessageHandler*>* handlers) const {}
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dlogutils.py129 """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/chromium/chrome/common/
H A Dworker_thread_ticker.cc22 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/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTryListBuilder.java41 /*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>();
151 new CodeItem.EncodedTypeAddrPair[tryRange.handlers.size()];
154 for (Handler handler: tryRange.handlers) {
[all...]
/external/chromium/chrome/browser/resources/shared/js/
H A Di18n_template.js9 * It currently supports two handlers:
28 * This provides the handlers for the templating engine. The key is used as
33 var handlers = {
96 for (var key in handlers) {
111 handlers[name](element, att, obj);
/external/chromium/chrome/browser/chromeos/
H A Dchoose_mobile_network_dialog.h27 std::vector<WebUIMessageHandler*>* handlers) const;
H A Dsim_dialog_delegate.h37 std::vector<WebUIMessageHandler*>* handlers) const;
/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/chromium/chrome/browser/ui/views/
H A Dkeyboard_overlay_delegate.h33 std::vector<WebUIMessageHandler*>* handlers) const;
/external/libnl-headers/netlink/
H A Dsocket.h16 #include <netlink/handlers.h>

Completed in 476 milliseconds

12345