HomeSort by relevance Sort by last modified time
    Searched refs:handler (Results 276 - 300 of 1187) sorted by null

<<11121314151617181920>>

  /external/expat/lib/
expat.h 158 /* The Attlist declaration handler is called for *each* attribute. So
160 generate multiple calls to this handler. The "default" parameter
178 /* The XML declaration handler is called for *both* XML declarations
279 there is no applicable handler. This includes both characters that
282 construct which could be reported but for which no handler has been
286 character is not passed to the default handler. There are no
288 default handler: for example, a comment might be split between
342 XML_EntityDeclHandler handler);
345 This handler has been superceded by the EntityDeclHandler above.
389 have standalone="yes". If this handler returns XML_STATUS_ERROR
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/include/
expat.h 158 /* The Attlist declaration handler is called for *each* attribute. So
160 generate multiple calls to this handler. The "default" parameter
178 /* The XML declaration handler is called for *both* XML declarations
279 there is no applicable handler. This includes both characters that
282 construct which could be reported but for which no handler has been
286 character is not passed to the default handler. There are no
288 default handler: for example, a comment might be split between
342 XML_EntityDeclHandler handler);
345 This handler has been superceded by the EntityDeclHandler above.
389 have standalone="yes". If this handler returns XML_STATUS_ERROR
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/include/
expat.h 158 /* The Attlist declaration handler is called for *each* attribute. So
160 generate multiple calls to this handler. The "default" parameter
178 /* The XML declaration handler is called for *both* XML declarations
279 there is no applicable handler. This includes both characters that
282 construct which could be reported but for which no handler has been
286 character is not passed to the default handler. There are no
288 default handler: for example, a comment might be split between
342 XML_EntityDeclHandler handler);
345 This handler has been superceded by the EntityDeclHandler above.
389 have standalone="yes". If this handler returns XML_STATUS_ERROR
    [all...]
  /external/v8/src/
proxy.js 34 $Proxy.create = function(handler, proto) {
35 if (!IS_SPEC_OBJECT(handler))
41 return %CreateJSProxy(handler, proto)
44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
45 if (!IS_SPEC_OBJECT(handler))
62 handler, callTrap, constructTrap, $Function.prototype)
183 var handler = %GetHandler(proxy)
184 if (IS_UNDEFINED(handler.enumerate)) {
185 return %Apply(DerivedEnumerateTrap, handler, [], 0, 0)
187 return ToStringArray(handler.enumerate(), "enumerate"
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8NPUtils.cpp 132 ExceptionHandler handler; member in struct:WebCore::ExceptionHandlerInfo
138 void pushExceptionHandler(ExceptionHandler handler, void* data)
142 info->handler = handler;
167 topHandler->handler(topHandler->data, *v8::String::Utf8Value(m_tryCatch.Exception()));
  /external/webkit/Tools/Scripts/
test-webkitpy 60 level for the handler on the root logger is set to
71 handler = logging.StreamHandler(sys.stderr)
72 # We constrain the level on the handler rather than on the root
73 # logger itself. This is probably better because the handler is
76 # Modifying the handler, then, is less intrusive and less likely to
79 handler.setLevel(logging_level)
81 handler.setFormatter(formatter)
84 logger.addHandler(handler)
110 handler.addFilter(testing_filter)
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiServiceDiscoveryActivity.java 22 import android.os.Handler;
48 DeviceClickListener, Handler.Callback, MessageTarget,
69 private Handler handler = new Handler(this); field in class:WiFiServiceDiscoveryActivity
75 public Handler getHandler() {
76 return handler;
79 public void setHandler(Handler handler) {
80 this.handler = handler
311 Thread handler = null; local
    [all...]
  /external/chromium/base/
message_pump_win.cc 434 IOHandler* handler) {
435 ULONG_PTR key = reinterpret_cast<ULONG_PTR>(handler);
506 if (item.context->handler) {
507 if (filter && item.handler != filter) {
511 DCHECK_EQ(item.context->handler, item.handler);
513 item.handler->OnIOCompleted(item.context, item.bytes_transfered,
518 // The handler must be gone by now, just cleanup the mess.
537 item->handler = reinterpret_cast<IOHandler*>(key);
544 this == reinterpret_cast<MessagePumpForIO*>(item.handler)) {
    [all...]
message_pump_win.h 214 // context_->handler = this;
219 // // By setting the handler to NULL, we're asking for this context
221 // context_->handler = NULL;
262 // context->handler = this;
304 // overlapped IO operation. |handler| must be set to the registered IOHandler
306 // before the operation completes to indicate that the handler should not be
314 IOHandler* handler; member in struct:base::MessagePumpForIO::IOContext
324 // Register the handler to be used when asynchronous IO for the given file
326 // |handler| must be valid as long as there is pending IO for the given file.
327 void RegisterIOHandler(HANDLE file_handle, IOHandler* handler);
345 IOHandler* handler; member in struct:base::MessagePumpForIO::IOItem
    [all...]
  /external/icu4c/io/
uprntf_p.c 75 * A u_printf handler function.
76 * A u_printf handler is responsible for handling a single u_printf
85 u_printf_handler(const u_printf_stream_handler *handler,
94 u_printf_handler *handler; member in struct:u_printf_info
179 u_printf_simple_percent_handler(const u_printf_stream_handler *handler,
188 return handler->write(context, PERCENT, 1);
193 u_printf_string_handler(const u_printf_stream_handler *handler,
232 written = handler->pad_and_justify(context, info, s, len);
243 u_printf_char_handler(const u_printf_stream_handler *handler,
265 written = handler->pad_and_justify(context, info, s, len)
1218 u_printf_handler *handler; local
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 61 private MockHandler handler = new MockHandler(logger); field in class:ParserAdapterTest
77 adapter.setContentHandler(handler);
78 adapter.setDTDHandler(handler);
79 adapter.setErrorHandler(handler);
171 adapter.setDTDHandler(handler);
172 assertEquals(handler, adapter.getDTDHandler());
179 adapter.setContentHandler(handler);
180 assertEquals(handler, adapter.getContentHandler());
187 adapter.setErrorHandler(handler);
188 assertEquals(handler, adapter.getErrorHandler())
    [all...]
XMLFilterImplTest.java 51 private MockHandler handler = new MockHandler(logger); field in class:XMLFilterImplTest
68 parent.setContentHandler(handler);
69 parent.setDTDHandler(handler);
70 parent.setErrorHandler(handler);
72 child.setContentHandler(handler);
73 child.setDTDHandler(handler);
74 child.setErrorHandler(handler);
162 parent.setDTDHandler(handler);
163 assertEquals(handler, parent.getDTDHandler());
170 parent.setContentHandler(handler);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 178 * Register "handler" as the handler for type "type".
180 synchronized void registerChunkHandler(int type, ChunkHandler handler) {
187 mHandlerMap.put(type, handler);
327 ChunkHandler handler = client local
336 callHandler(client, packet, handler);
376 * "handler" will be set to the handler responsible for the original
380 ChunkHandler handler) {
393 if (handler == null)
677 ChunkHandler handler = iter.next(); local
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java 229 .handler(new InvokeSuperHandler())
287 InvocationHandler handler = new InvocationHandler() { local
292 assertEquals("asdf1", proxyFor(SingleInt.class).handler(handler).build().getString(1));
376 .handler(delegatesOddValues)
385 InvocationHandler handler = new InvocationHandler() { local
392 .handler(handler)
553 .handler(fakeHandler)
559 .handler(fakeHandler
702 InvocationHandler handler = new InvocationHandler() { local
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
EventBus.java 57 * <li>Expose a public method, known as the <i>event handler</i>, which accepts
70 * to any handler for any type to which the event is <em>assignable.</em> This
79 * <h2>Handler Methods</h2>
80 * Event handler methods must accept only one argument: the event.
87 * <p>The EventBus guarantees that it will not call a handler method from
90 * not present, handler methods need not worry about being reentrant, unless
98 * <p>If a handler for a supertype of all events (such as Object) is registered,
100 * Accordingly, while DeadEvent extends {@link Object}, a handler registered to
130 * Strategy for finding handler methods in registered objects. Currently,
203 * Registers all handler methods on {@code object} to receive events
363 final EventHandler handler; field in class:EventBus.EventWithHandler
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 28 import android.os.Handler;
46 public class AsyncQueryService extends Handler {
54 private Handler mHandler = this; // can be overridden for testing
175 info.handler = mHandler;
206 info.handler = mHandler;
242 info.handler = mHandler;
279 info.handler = mHandler;
310 info.handler = mHandler;
434 protected void setTestHandler(Handler handler) {
    [all...]
  /frameworks/base/core/java/android/view/
GestureDetector.java 21 import android.os.Handler;
211 private final Handler mHandler;
253 private class GestureHandler extends Handler {
258 GestureHandler(Handler handler) {
259 super(handler.getLooper());
289 * (as it allows specifying the Handler).
293 * @param handler the handler to use
296 * {@code handler} is null
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 40 /** The result tree handler */
50 * @param handler The Result tree handler to use
53 SerializationHandler handler)
56 super(handler, null);
59 m_handler = handler;
TrAXFilter.java 217 * Set the content event handler.
219 * @param handler The new content handler.
220 * @throws java.lang.NullPointerException If the handler
224 public void setContentHandler (ContentHandler handler)
226 m_transformer.setContentHandler(handler);
230 public void setErrorListener (ErrorListener handler)
232 m_transformer.setErrorListener(handler);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
metered_stream_unittest.py 102 handler = logging.StreamHandler(b)
103 logger.addHandler(handler)
105 logger.handlers.remove(handler)
  /libcore/luni/src/main/java/libcore/net/http/
HeaderParser.java 34 public static void parseCacheControl(String value, CacheControlHandler handler) {
43 handler.handle(directive, null);
67 handler.handle(directive, parameter);
  /system/netd/
NetlinkManager.cpp 88 NetlinkHandler *handler = new NetlinkHandler(this, *sock, format); local
89 if (handler->start()) {
95 return handler;
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
LoginContextTest.java 60 private final MyCallbackHandler handler = new MyCallbackHandler(); field in class:LoginContextTest
127 * default callback handler is specified via security
153 * default callback handler is specified via security
177 * Expected: creation of default callback handler
181 // checks initialization of specified callback handler
203 * Expected: not null subject, null callback handler or
204 * wrapped default callback handler, not null shared
230 // login context doesn't have callback handler
231 assertNull("Handler", module.handler);
967 public CallbackHandler handler; field in class:LoginContextTest.MyLoginModule
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
PointerTracker.java 185 public static PointerTracker getPointerTracker(final int id, KeyEventHandler handler) {
190 final PointerTracker tracker = new PointerTracker(i, handler);
222 public PointerTracker(int id, KeyEventHandler handler) {
223 if (handler == null)
226 setKeyDetectorInner(handler.getKeyDetector());
227 mListener = handler.getKeyboardActionListener();
228 mDrawingProxy = handler.getDrawingProxy();
229 mTimerProxy = handler.getTimerProxy();
461 KeyEventHandler handler) {
465 onDownEvent(x, y, eventTime, handler);
    [all...]
  /development/apps/Development/src/com/android/development/
LogViewer.java 27 import android.os.Handler;
43 Handler handler; field in class:LogViewer
50 this.handler = new Handler();
118 handler.post(new AppendCharacters(builder));
125 handler.post(new AppendThrowable(e));

Completed in 1053 milliseconds

<<11121314151617181920>>