HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 601 - 625 of 2987) sorted by null

<<21222324252627282930>>

  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 51 * Throws an exception if the type already has a handler registered.
53 public static void registerHandler(int type, ChunkHandler handler) {
54 if (handler == null) {
55 throw new NullPointerException("handler == null");
62 mHandlerMap.put(type, handler);
67 * Unregister the existing handler for the specified type.
69 * Returns the old handler.
115 ChunkHandler handler = (ChunkHandler) iter.next(); local
118 handler.connected();
121 handler.disconnected()
143 ChunkHandler handler; local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
BrowseErrorActivity.java 20 import android.os.Handler;
59 final Handler handler = new Handler(); local
60 handler.postDelayed(new Runnable() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
StepNormalizer.java 56 /** Underlying step handler. */
57 private final FixedStepHandler handler; field in class:StepNormalizer
73 * @param handler fixed time step handler to wrap
75 public StepNormalizer(final double h, final FixedStepHandler handler) {
77 this.handler = handler;
81 /** Determines whether this handler needs dense output.
82 * This handler needs dense output in order to provide data at
91 /** Reset the step handler
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
67 if (!(handler.getElemTemplateElement() instanceof Stylesheet))
70 handler.error(msg, new SAXException(msg));
72 super.startElement(handler, uri, localName, rawName, attributes);
80 //String ns = handler.getNamespaceSupport().getURI(prefix);
87 handler.error(msg, new SAXException(msg));
95 StylesheetHandler handler, ElemTemplateElement elem)
99 super.appendAndPush(handler, elem);
100 //System.out.println("originating node " + handler.getOriginatingNode());
101 elem.setDOMBackPointer(handler.getOriginatingNode())
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLGroupVisitor.java 38 * Create a new group handler.
79 final HTMLGroupVisitor handler = new HTMLGroupVisitor(page, local
81 page.addItem(handler.getPage());
82 return handler;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLGroupVisitorTest.java 39 private XMLGroupVisitor handler; field in class:XMLGroupVisitorTest
50 handler = new XMLGroupVisitor(root, null);
56 driver.sendBundle(handler);
64 driver.sendGroup(handler);
72 driver.sendBundle(handler);
73 handler.visitEnd();
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFind.java 34 public void run(String from, String to, DepHandler handler) throws IOException {
56 handler.handleStart();
64 new DepFindVisitor(classes, entry.getSource(), handler),
75 handler.handleEnd();
  /external/mockito/src/test/java/org/mockito/internal/handler/
MockHandlerImplTest.java 6 package org.mockito.internal.handler;
47 MockHandlerImpl<?> handler = new MockHandlerImpl(new MockSettingsImpl()); local
49 handler.matchersBinder = new MatchersBinder() {
57 handler.handle(invocation);
73 MockHandlerImpl<?> handler = create_correctly_stubbed_handler(throwingListener); local
76 handler.handle(invocation);
82 MockHandlerImpl<?> handler = new MockHandlerImpl(mockSettings); local
86 String there_should_not_be_a_CCE_here = (String) handler.handle(
92 MockHandlerImpl<?> handler = create_handler_with_listeners(throwingListener); local
93 stub_ordinary_invocation_with_given_return_value(handler);
110 MockHandlerImpl<?> handler = new MockHandlerImpl(mock(MockSettingsImpl.class)); local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
RoboVibrator.java 4 import android.os.Handler;
20 private Handler handler = new Handler(Looper.myLooper()); field in class:RoboVibrator
34 handler.removeCallbacks(stopVibratingRunnable);
35 handler.postDelayed(stopVibratingRunnable, milliseconds);
42 handler.removeCallbacks(stopVibratingRunnable);
48 handler.postDelayed(stopVibratingRunnable, endDelayMillis);
76 handler.removeCallbacks(stopVibratingRunnable);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSystemVibrator.java 12 import android.os.Handler;
24 private Handler handler = new Handler(Looper.myLooper()); field in class:ShadowSystemVibrator
94 handler.removeCallbacks(stopVibratingRunnable);
95 handler.postDelayed(stopVibratingRunnable, this.milliseconds);
102 handler.removeCallbacks(stopVibratingRunnable);
108 handler.postDelayed(stopVibratingRunnable, endDelayMillis);
116 handler.removeCallbacks(stopVibratingRunnable);
ShadowWifiP2pManager.java 8 import android.os.Handler;
25 private Handler handler; field in class:ShadowWifiP2pManager
52 handler = new Handler(looper);
66 handler.post(new Runnable() {
85 handler.post(new Runnable() {
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/demo/app/src/main/java/com/example/android/smartreply/
MainActivity.java 20 import android.os.Handler;
39 private Handler handler; field in class:MainActivity
48 handler = new Handler();
64 handler.post(
74 handler.post(
81 handler.post(
94 handler.post(
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityButtonController.java 21 import android.os.Handler;
59 private ArrayMap<AccessibilityButtonCallback, Handler> mCallbacks;
95 registerAccessibilityButtonCallback(callback, new Handler(Looper.getMainLooper()));
101 * specified {@link Handler}'s thread, or on the services's main thread if the handler is
105 * @param handler the handler on which the callback should execute, must be non-null
108 @NonNull Handler handler) {
110 Preconditions.checkNotNull(handler);
161 final Handler handler = entries.valueAt(i); local
186 final Handler handler = entries.valueAt(i); local
    [all...]
  /frameworks/support/samples/SupportCarDemos/src/main/java/com/example/androidx/car/
VerticallyCenteredListDemo.java 22 import android.os.Handler;
53 Handler handler = new Handler(); local
56 handler.postDelayed(new Runnable() {
65 handler.postDelayed(this, ADD_ITEM_DELAY_MS);
  /packages/apps/Dialer/java/com/android/dialer/strictmode/impl/
SystemDialerStrictMode.java 21 import android.os.Handler;
57 Handler handler = new Handler(Looper.myLooper()); local
58 handler.postAtFrontOfQueue(() -> setRecommendedMainThreadPolicy(THREAD_DEATH_PENALTY));
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
PhoneService.java 24 import android.os.Handler;
37 private Handler handler; field in class:PhoneService
48 handler = new Handler();
58 handler.post(new Runnable() {
ProgressService.java 24 import android.os.Handler;
34 private Handler handler; field in class:ProgressService
64 handler.postDelayed(this, 1000);
71 handler = new Handler();
81 handler.postDelayed(new UpdateRunnable(id, when, progress), 1000);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/relative/
DeletionHandlerTest.java 78 DeletionHandler handler = new DeletionHandler(deletedNodes, movedNodes, layout); local
79 handler.updateConstraints();
211 DeletionHandler handler = new DeletionHandler(deletedNodes, movedNodes, layout); local
212 handler.updateConstraints();
330 DeletionHandler handler = new DeletionHandler(deletedNodes, movedNodes, layout); local
331 handler.updateConstraints();
401 DeletionHandler handler = new DeletionHandler(deletedNodes, movedNodes, layout); local
402 handler.updateConstraints();
  /art/test/044-proxy/src/
Clash.java 28 InvocationHandler handler = new ClashInvocationHandler(); local
34 handler);
43 handler);
Clash2.java 28 InvocationHandler handler = new Clash2InvocationHandler(); local
33 handler);
  /art/tools/ahat/src/test/com/android/ahat/
ObjectHandlerTest.java 34 AhatHandler handler = new ObjectHandler(dump.getAhatSnapshot()); local
35 TestHandler.testNoCrash(handler, "http://localhost:7100/object?id=" + object.getId());
43 AhatHandler handler = new ObjectHandler(snapshot); local
48 TestHandler.testNoCrash(handler, "http://localhost:7100/object?id=" + object.getId());
56 AhatHandler handler = new ObjectHandler(snapshot); local
61 TestHandler.testNoCrash(handler, "http://localhost:7100/object?id=" + object.getId());
71 AhatHandler handler = new ObjectHandler(dump.getAhatSnapshot()); local
72 TestHandler.testNoCrash(handler, "http://localhost:7100/object?id=" + object.getId());
TestHandler.java 24 * Provide common utilities for basic handler tests.
33 * Test that the given handler doesn't crash on the given query.
35 public static void testNoCrash(AhatHandler handler, String uri) throws IOException {
39 handler.handle(doc, query);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedCatchHandler.java 57 for (EncodedTypeAddrPair handler : handlers) {
58 handler.incrementIndex(kind, insertedIdx);
  /device/google/contexthub/firmware/os/inc/
nanohubCommand.h 28 uint32_t (*handler)(void *, uint8_t, void *, uint64_t); member in struct:NanohubCommand
39 void (*handler)(void *, uint8_t); member in struct:NanohubHalLegacyCommand
46 void (*handler)(void *, uint8_t, uint32_t); member in struct:NanohubHalCommand
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
TryCatchBlockNode.java 43 * Beginning of the exception handler's scope (inclusive).
48 * End of the exception handler's scope (exclusive).
53 * Beginning of the exception handler's code.
55 public Label handler; field in class:TryCatchBlockNode
58 * Internal name of the type of exceptions handled by the handler. May be
66 * @param start beginning of the exception handler's scope (inclusive).
67 * @param end end of the exception handler's scope (exclusive).
68 * @param handler beginning of the exception handler's code.
70 * handler, or <tt>null</tt> to catch any exceptions (for "finally
    [all...]

Completed in 2524 milliseconds

<<21222324252627282930>>