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

1 2 3

  /external/chromium_org/ui/webui/resources/js/
i18n_template.js 33 var Handler;
40 * @type {Object.<Handler>}
44 * This handler sets the textContent of the element.
51 * This handler adds options to a select element.
  /external/chromium_org/chrome/common/extensions/docs/server2/
handler_test.py 8 from handler import Handler
14 handler = Handler(Request.ForTest('_notreal'))
15 self.assertEqual(404, handler.Get().status)
app_engine_handler.py 8 from handler import Handler
13 '''Top-level handler for AppEngine requests. Just converts them into our
39 response = Handler(request).Get()
handler.py 30 class Handler(Servlet):
integration_test.py 26 from handler import Handler
99 Handler(Request.ForTest(url, arguments=arguments)).Get()
106 response = Handler(Request.ForTest('/_cron')).Get()
124 # lambda path: Handler(Request.ForTest(path)).Get(),
190 check_result(Handler(Request.ForTest(path)).Get())
196 redirect_response = Handler(Request.ForTest(path + '.html')).Get()
205 redirect_response = Handler(
216 check_result(Handler(Request.ForTest(
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
write_batch.h 46 class Handler {
48 virtual ~Handler();
52 Status Iterate(Handler* handler) const;
  /docs/source.android.com/scripts/
micro-httpd.py 25 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
26 httpd = SocketServer.TCPServer(('0.0.0.0', PORT), Handler)
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
testable_callback.cc 25 // by the "Handler" which represents the actual callback code.
35 PP_MakeCompletionCallback(&TestableCallback::Handler, this);
44 void TestableCallback::Handler(void* user_data, int32_t result) {
  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 38 public interface Handler<T> {
42 /** A handler that does nothing given any input. */
43 public static final Handler<Object> DO_NOTHING = new Handler<Object>() {
50 * A handler that re-raises an error, wrapping it in a runtime exception if
53 public static final Handler<Throwable> PROPAGATE = new Handler<Throwable>() {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/test_protocol/
Handler.java 25 public class Handler extends URLStreamHandler {
  /external/chromium_org/content/renderer/input/
input_handler_manager_client.h 33 // The Manager will supply a |handler| when bound to the client. This is valid
34 // until the manager shuts down, at which point it supplies a null |handler|.
35 // The client should only makes calls to |handler| on the compositor thread.
39 ui::LatencyInfo* latency_info)> Handler;
42 virtual void SetBoundHandler(const Handler& handler) = 0;
  /external/chromium_org/ipc/
ipc_forwarding_message_filter.h 22 // add a MessageRouter to the handler.
29 // The handler is invoked on the thread associated with
31 typedef base::Callback<void(const Message&)> Handler;
35 // to |handler|.
37 // The caller must ensure that |handler| outlives the lifetime of the filter.
44 void AddRoute(int routing_id, const Handler& handler);
63 std::map<int, Handler> handlers_;
  /external/chromium_org/remoting/host/linux/
x11_util.h 18 // Temporarily install an alternative handler for X errors. The default handler
25 typedef base::Callback<void(Display*, XErrorEvent*)> Handler;
27 explicit ScopedXErrorHandler(const Handler& handler);
31 // handler.
34 // Basic handler that ignores X errors.
35 static Handler Ignore();
40 Handler handler_;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Handler.java 33 * Information about an exception handler block.
37 class Handler {
40 * Beginning of the exception handler's scope (inclusive).
45 * End of the exception handler's scope (exclusive).
50 * Beginning of the exception handler's code.
52 Label handler; field in class:Handler
55 * Internal name of the type of exceptions handled by this handler, or
62 * handled by this handler, or 0 to catch any exceptions.
67 * Next exception handler block info.
69 Handler next;
    [all...]
  /external/chromium_org/extensions/browser/
script_executor.cc 30 // A handler for a single injection request. On creation this will send the
33 class Handler : public content::WebContentsObserver {
35 Handler(ObserverList<ScriptExecutionObserver>* script_observers,
48 virtual ~Handler() {}
63 IPC_BEGIN_MESSAGE_MAP(Handler, message)
151 // Handler handles IPCs and deletes itself on completion.
152 new Handler(script_observers_, web_contents_, params, callback);
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_key_bindings_handler.h 59 // Object structure of Handler class, which is derived from GtkTextView.
60 struct Handler {
65 // Class structure of Handler class.
70 // Creates a new instance of Handler class.
82 // Initializes Handler structure.
83 static void HandlerInit(Handler *self);
88 // Registeres Handler class to GObject type system and return its type id.
91 // Gets the Gtk2KeyBindingsHandler object which owns the Handler object.
94 // Handler of "backspace" signal.
97 // Handler of "copy-clipboard" signal
    [all...]
  /external/chromium_org/mojo/common/
message_pump_mojo.h 38 // handler can be registered for a specified handle.
40 void AddHandler(MessagePumpMojoHandler* handler,
59 struct Handler {
60 Handler() : handler(NULL), wait_signals(MOJO_HANDLE_SIGNAL_NONE), id(0) {}
62 MessagePumpMojoHandler* handler; member in struct:mojo::common::MessagePumpMojo::Handler
69 typedef std::map<Handle, Handler> HandleToHandler;
100 // An ever increasing value assigned to each Handler::id. Used to detect
103 // match it means the handler was removed then added so that we shouldn't
  /external/chromium_org/tools/telemetry/telemetry/unittest/
simple_mock_unittest.py 54 def Handler(arg0):
57 mock.ExpectCall('baz', 7).WhenCalled(Handler)
  /external/clang/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 40 FnCheck Handler = llvm::StringSwitch<FnCheck>(C.getCalleeName(CE))
48 if (!Handler)
51 (this->*Handler)(CE, C);
  /external/chromium_org/third_party/skia/include/animator/
SkAnimator.h 201 Helper to choose whether to return a SkView::Click handler.
204 @return true if a mouseDown event handler is enabled.
427 typedef void* Handler;
429 void setHostHandler(Handler handler) {
430 this->onSetHostHandler(handler);
467 virtual void setJavaOwner(Handler owner);
476 virtual void onSetHostHandler(Handler handler);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
FrameReader.java 28 boolean nextFrame(Handler handler) throws IOException;
30 public interface Handler {
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch.cc 35 WriteBatch::Handler::~Handler() { }
42 Status WriteBatch::Iterate(Handler* handler) const {
59 handler->Put(key, value);
66 handler->Delete(key);
112 class MemTableInserter : public WriteBatch::Handler {
  /external/chromium-trace/trace-viewer/
run_dev_server.py 25 class Handler(SimpleHTTPServer.SimpleHTTPRequestHandler):
156 server = Server(('', options.port), Handler)
  /external/chromium_org/chrome/browser/devtools/
devtools_embedder_message_dispatcher.cc 68 bool ParseAndHandle0(const base::Callback<void(void)>& handler,
72 handler.Run();
77 bool ParseAndHandle1(const base::Callback<void(A1)>& handler,
84 handler.Run(arg1.value());
89 bool ParseAndHandle2(const base::Callback<void(A1, A2)>& handler,
99 handler.Run(arg1.value(), arg2.value());
104 bool ParseAndHandle3(const base::Callback<void(A1, A2, A3)>& handler,
117 handler.Run(arg1.value(), arg2.value(), arg3.value());
122 bool ParseAndHandle4(const base::Callback<void(A1, A2, A3, A4)>& handler,
138 handler.Run(arg1.value(), arg2.value(), arg3.value(), arg4.value())
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 126 class CONTENT_EXPORT Handler {
131 virtual ~Handler();
139 Handler();
142 const CommandHandler& handler);
160 DISALLOW_COPY_AND_ASSIGN(Handler);

Completed in 2388 milliseconds

1 2 3