HomeSort by relevance Sort by last modified time
    Searched refs:handler (Results 101 - 125 of 1397) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 83 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
92 StylesheetHandler handler, String publicId, String systemId)
102 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
109 public void notationDecl(StylesheetHandler handler, String name,
120 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
128 public void unparsedEntityDecl(StylesheetHandler handler, String name,
140 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
142 public void startNonText(StylesheetHandler handler) throws org.xml.sax.SAXException
151 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes
    [all...]
ProcessorExsltFuncResult.java 46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
51 super.startElement(handler, uri, localName, rawName, attributes);
52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem();
60 handler.error(msg, new SAXException(msg));
67 handler.error(msg, new SAXException(msg));
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyReader.java 78 * Send the next frame to {@code handler}. Returns true unless there are no
81 public boolean nextFrame(Handler handler) throws IOException {
104 readSynStream(handler, flags, length);
108 readSynReply(handler, flags, length);
112 readRstStream(handler, flags, length);
116 readSettings(handler, flags, length);
121 handler.noop();
125 readPing(handler, flags, length);
129 readGoAway(handler, flags, length)
    [all...]
  /external/bison/lib/
sigprocmask.c 34 where any handler is uninstalled prior to being invoked. This is
51 for the signal SIGABRT. Only one signal handler is stored for both
67 signal_nothrow (int sig, handler_t handler)
73 result = signal (sig, handler);
95 ext_signal (int sig, handler_t handler)
102 SIGPIPE_handler = handler;
106 return signal (sig, handler);
190 /* Signal handler that is installed for blocked signals. */
194 /* Reinstall the handler, in case the signal occurs multiple times
196 signal in between when the kernel uninstalled the handler an
341 handler_t handler = SIGPIPE_handler; local
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
GroupOwnerSocketHandler.java 4 import android.os.Handler;
14 * The implementation of a ServerSocket handler. This is used by the wifi p2p
21 private Handler handler; field in class:GroupOwnerSocketHandler
24 public GroupOwnerSocketHandler(Handler handler) throws IOException {
27 this.handler = handler;
50 pool.execute(new ChatManager(socket.accept(), handler));
51 Log.d(TAG, "Launching the I/O handler");
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SslErrorHandlerTest.java 20 private SslErrorHandler handler; field in class:SslErrorHandlerTest
25 handler = Robolectric.newInstanceOf(SslErrorHandler.class);
26 shadow = Robolectric.shadowOf(handler);
37 handler.cancel();
44 handler.proceed();
  /external/webkit/Source/WebCore/bindings/gobject/
GObjectEventListener.h 36 static bool addEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture, void* userData)
38 RefPtr<GObjectEventListener> listener(adoptRef(new GObjectEventListener(object, target, domEventName, handler, useCapture, userData)));
42 static bool removeEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture)
44 GObjectEventListener key(object, target, domEventName, handler, useCapture, 0);
63 GObjectEventListener(GObject*, EventTarget*, const char* domEventName, GCallback handler, bool capture, void* userData);
  /dalvik/tests/044-proxy/src/
Clash.java 28 InvocationHandler handler = new ClashInvocationHandler(); local
34 handler);
43 handler);
  /dalvik/vm/mterp/cstubs/
entry.cpp 2 * Handler function table, one entry per opcode.
34 typedef void (*Handler)(Thread* self);
39 * while in the portable interpreter it is part of the handler
46 Handler handler = (Handler) gDvmMterpHandlers[inst & 0xff]; local
48 LOGVV("handler %p %s",
49 handler, (const char*) gDvmMterpHandlerNames[inst & 0xff]);
50 (*handler)(self);
  /external/llvm/include/llvm/Support/
ErrorHandling.h 25 /// An error handler callback.
29 /// install_fatal_error_handler - Installs a new error handler to be used
32 /// If you are using llvm_start_multithreaded, you should register the handler
35 /// If no error handler is installed the default is to print the error message
36 /// to stderr, and call exit(1). If an error handler is installed then it is
37 /// the handler's responsibility to log the message, it will no longer be
38 /// printed to stderr. If the error handler returns, then exit(1) will be
41 /// It is dangerous to naively use an error handler which throws an exception.
47 /// handler.
48 void install_fatal_error_handler(fatal_error_handler_t handler,
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
XMLReader.java 35 * is complete, and readers must wait for an event-handler callback
249 * Allow an application to register a DTD event handler.
251 * <p>If the application does not register a DTD handler, all DTD
254 * <p>Applications may register a new or different handler in the
256 * handler immediately.</p>
258 * @param handler The DTD handler.
261 public void setDTDHandler (DTDHandler handler);
265 * Return the current DTD handler.
267 * @return The current DTD handler, or null if non
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
DoNothingParser.java 40 public void setDocumentHandler(DocumentHandler handler) {
43 public void setDTDHandler(DTDHandler handler) {
49 public void setErrorHandler(ErrorHandler handler) {
DoNothingXMLReader.java 61 public void setContentHandler(ContentHandler handler) {
64 public void setDTDHandler(DTDHandler handler) {
70 public void setErrorHandler(ErrorHandler handler) {
NoAccessParser.java 40 public void setDocumentHandler(DocumentHandler handler) {
43 public void setDTDHandler(DTDHandler handler) {
49 public void setErrorHandler(ErrorHandler handler) {
NoAccessXMLReader.java 61 public void setContentHandler(ContentHandler handler) {
64 public void setDTDHandler(DTDHandler handler) {
70 public void setErrorHandler(ErrorHandler handler) {
NoInstanceParser.java 43 public void setDocumentHandler(DocumentHandler handler) {
46 public void setDTDHandler(DTDHandler handler) {
52 public void setErrorHandler(ErrorHandler handler) {
NoInstanceXMLReader.java 64 public void setContentHandler(ContentHandler handler) {
67 public void setDTDHandler(DTDHandler handler) {
73 public void setErrorHandler(ErrorHandler handler) {
NoSubclassXMLReader.java 61 public void setContentHandler(ContentHandler handler) {
64 public void setDTDHandler(DTDHandler handler) {
70 public void setErrorHandler(ErrorHandler handler) {
  /external/chromium/chrome/browser/
command_updater_unittest.cc 34 TestingCommandHandlerMock handler; local
35 CommandUpdater command_updater(&handler);
60 TestingCommandHandlerMock handler; local
61 CommandUpdater command_updater(&handler);
79 TestingCommandHandlerMock handler; local
80 CommandUpdater command_updater(&handler);
  /external/chromium/net/base/
keygen_handler_unittest.cc 76 KeygenHandler handler(768, "some challenge", GURL("http://www.example.com"));
77 handler.set_stores_key(false); // Don't leave the key-pair behind
78 std::string result = handler.GenKeyAndSignChallenge();
96 KeygenHandler handler(768, "some challenge",
98 handler.set_stores_key(false); // Don't leave the key-pair behind.
99 *result_ = handler.GenKeyAndSignChallenge();
  /external/chromium/net/http/
http_auth_handler_digest_unittest.cc 52 scoped_ptr<HttpAuthHandler> handler; local
54 // Create a handler for a particular challenge.
57 challenge, target, url_origin.GetOrigin(), BoundNetLog(), &handler);
58 if (rv_create != OK || handler.get() == NULL) {
59 ADD_FAILURE() << "Unable to create auth handler.";
72 int rv_generate = handler->GenerateAuthToken(
340 scoped_ptr<HttpAuthHandler> handler; local
345 &handler);
350 EXPECT_TRUE(handler.get() == NULL);
353 ASSERT_TRUE(handler.get() != NULL)
505 scoped_ptr<HttpAuthHandler> handler; local
531 scoped_ptr<HttpAuthHandler> handler; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 50 EventHandler handler = new EventHandler(this, method); local
52 handler.handleEvent(FIXTURE_ARGUMENT);
54 assertTrue("Handler must call provided method.", methodCalled);
55 assertTrue("Handler argument must be *exactly* the provided object.",
86 EventHandler handler = new EventHandler(this, method); local
89 handler.handleEvent(new Object());
99 EventHandler handler = new EventHandler(this, method); local
102 handler.handleEvent(new Object());
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QueryTask.java 24 import android.os.Handler;
37 private final Handler mHandler;
47 * @param handler Handler that {@link Consumer#consume} will
53 Handler handler, Consumer<C> consumer, boolean onlyTask) {
57 mHandler = handler;
80 NamedTaskExecutor executor, Handler handler,
85 executor, handler, consumer, onlyOneProvider)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
global.h 106 * \brief Internal structure for an async notification client handler.
118 typedef void (*snd_async_callback_t)(snd_async_handler_t *handler);
120 int snd_async_add_handler(snd_async_handler_t **handler, int fd,
122 int snd_async_del_handler(snd_async_handler_t *handler);
123 int snd_async_handler_get_fd(snd_async_handler_t *handler);
124 int snd_async_handler_get_signo(snd_async_handler_t *handler);
125 void *snd_async_handler_get_callback_private(snd_async_handler_t *handler);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
global.h 106 * \brief Internal structure for an async notification client handler.
118 typedef void (*snd_async_callback_t)(snd_async_handler_t *handler);
120 int snd_async_add_handler(snd_async_handler_t **handler, int fd,
122 int snd_async_del_handler(snd_async_handler_t *handler);
123 int snd_async_handler_get_fd(snd_async_handler_t *handler);
124 int snd_async_handler_get_signo(snd_async_handler_t *handler);
125 void *snd_async_handler_get_callback_private(snd_async_handler_t *handler);

Completed in 1093 milliseconds

1 2 3 45 6 7 8 91011>>