HomeSort by relevance Sort by last modified time
    Searched refs:Handler (Results 426 - 450 of 923) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/quicklaunch/
BookmarkPicker.java 28 import android.os.Handler;
92 private Handler mUiHandler = new Handler();
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 21 import android.os.Handler;
46 private Handler mHandler;
70 mHandler = new Handler();
  /packages/apps/Stk/src/com/android/stk/
StkMenuActivity.java 23 import android.os.Handler;
63 Handler mTimeoutHandler = new Handler() {
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
TimelineHorizontalScrollView.java 29 import android.os.Handler;
47 private final Handler mHandler;
82 mHandler = new Handler();
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportListActivity.java 25 import android.os.Handler;
61 private Handler mHandler = null;
69 mHandler = new Handler();
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 23 import android.os.Handler;
34 private final Handler mHandler = new Handler();
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
Visualization4RS.java 27 import android.os.Handler;
37 private final Handler mHandler = new Handler();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 30 import android.os.Handler;
146 * Our Handler used to execute operations on the main thread. This is used
149 private final Handler mHandler = new Handler() {
441 * to update the UI, we need to use a Handler to hop over there.
450 private Handler mHandler = new Handler() {
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 30 import android.os.Handler;
68 private Handler mTarget;
80 private Handler mHandler;
102 public void startMonitoring(Context context, Handler target) {
117 static class MdstHandler extends Handler {
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 30 import android.os.Handler;
53 private Handler mMidnightUpdate = null;
54 private Handler mPastEventUpdate = null;
119 // Create the handler or clear the existing one.
121 mMidnightUpdate = new Handler();
126 // Calculate the time until midnight + 1 second and set the handler to
147 // Create the handler or clear the existing one.
149 mPastEventUpdate = new Handler();
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 32 import android.os.Handler;
77 private Handler mHandler;
142 private Handler getHandler() {
144 mHandler = new Handler() {
512 Handler handler = getHandler(); local
513 handler.removeMessages(MESSAGE_AUTOSELECT_FIRST_FOUND_CONTACT);
518 handler.sendEmptyMessageDelayed(MESSAGE_AUTOSELECT_FIRST_FOUND_CONTACT,
  /packages/apps/Contacts/src/com/android/contacts/voicemail/
VoicemailPlaybackPresenter.java 35 import android.os.Handler;
235 Handler handler = new Handler(); local
237 mFetchResultHandler = new FetchResultHandler(handler);
239 handler.postDelayed(mFetchResultHandler.getTimeoutRunnable(), FETCH_CONTENT_TIMEOUT_MS);
246 private final Handler mHandler;
248 public FetchResultHandler(Handler handler) {
249 super(handler);
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 512 llvm::BasicBlock *Handler = createBasicBlock("catch");
528 CatchScope->setHandler(I, TypeInfo, Handler);
531 CatchScope->setCatchAllHandler(I, Handler);
720 EHCatchScope::Handler Handler = Catch.getHandler(HI);
723 if (!Handler.Type) {
725 CatchAll = UnwindDest(Handler.Block,
727 Handler.Index);
731 // Check whether we already have a handler for this type.
732 UnwindDest &Dest = EHHandlers[Handler.Type]
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 909 class Handler implements UncaughtExceptionHandler {
914 final Handler handler = new Handler(); local
915 Thread.setDefaultUncaughtExceptionHandler(handler);
916 assertSame(handler, Thread.getDefaultUncaughtExceptionHandler());
961 class Handler implements UncaughtExceptionHandler {
966 final Handler handler = new Handler(); local
    [all...]
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 30 import android.os.Handler;
45 class HTML5VideoViewProxy extends Handler
75 // The handler for WebCore thread messages;
76 private Handler mWebCoreHandler;
312 // Handler for the messages from WebCore or Timer thread to the UI thread.
392 // The handler to handle messages on the WebCore thread.
393 private Handler mHandler;
402 mHandler = new Handler();
527 // This handler is for the main (UI) thread.
537 // create the message handler for this threa
    [all...]
  /frameworks/base/location/java/android/location/
LocationManager.java 24 import android.os.Handler;
167 private final Handler mListenerHandler;
173 mListenerHandler = new Handler() {
180 mListenerHandler = new Handler(looper) {
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 106 TestHandler handler = new TestHandler(); local
107 parse(SNIPPET, handler);
108 validate(handler);
111 handler = new TestHandler();
112 parse(new StringReader(SNIPPET), handler);
113 validate(handler);
116 handler = new TestHandler();
118 Encoding.UTF_8, handler);
119 validate(handler);
127 static void validate(TestHandler handler) {
176 NamespaceHandler handler = new NamespaceHandler(); local
362 TestDtdHandler handler = new TestDtdHandler(); local
371 TestDtdHandler handler = runDtdTest("<?xml version=\\"1.0\\"?><!DOCTYPE foo PUBLIC 'bar' 'tee'><a><\/a>"); local
379 TestDtdHandler handler = runDtdTest("<?xml version=\\"1.0\\"?><!DOCTYPE foo PUBLIC 'bar' 'tee' [ <!ENTITY ent SYSTEM 'blah' NDATA poop> ]><a><\/a>"); local
387 TestDtdHandler handler = runDtdTest("<?xml version=\\"1.0\\"?><!DOCTYPE foo PUBLIC 'bar' 'tee' [ <!ENTITY ent PUBLIC 'a' 'b' NDATA poop> ]><a><\/a>"); local
395 TestDtdHandler handler = runDtdTest("<?xml version=\\"1.0\\"?><!DOCTYPE foo PUBLIC 'bar' 'tee' [ <!NOTATION sn SYSTEM 'nf2'> ]><a><\/a>"); local
402 TestDtdHandler handler = runDtdTest("<?xml version=\\"1.0\\"?><!DOCTYPE foo PUBLIC 'bar' 'tee' [ <!NOTATION pn PUBLIC 'nf1'> ]><a><\/a>"); local
463 TestCdataHandler handler = new TestCdataHandler(); local
500 TestProcessingInstrutionHandler handler local
575 Handler handler = new Handler(); local
618 Handler handler = new Handler(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 34 import android.os.Handler;
35 import android.os.Handler.Callback;
246 * Handler for messages sent to the UI thread.
248 private final Handler mMainThreadHandler = new Handler(this);
576 private Handler mLoaderThreadHandler;
592 mLoaderThreadHandler = new Handler(getLooper(), this);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 25 import android.os.Handler;
41 // Message types sent from the BluetoothChatService Handler
48 // Key names received from the BluetoothChatService Handler
69 private final Handler mHandler;
86 * @param handler A Handler to send messages back to the UI Activity
88 public BluetoothChatService(Context context, Handler handler, UUID uuid) {
91 mHandler = handler;
103 // Give the new state to the Handler so the UI Activity can updat
    [all...]
  /development/apps/Development/src/com/android/development/
PermissionDetails.java 39 import android.os.Handler;
76 private Handler mHandler = new Handler() {
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 28 import android.os.Handler;
247 private final Handler mHandler = new Handler() {
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 25 import android.os.Handler;
51 // Message types sent from the BluetoothChatService Handler
58 // Key names received from the BluetoothChatService Handler
243 // The Handler that gets information back from the BluetoothChatService
244 private final Handler mHandler = new Handler() {
BluetoothChatService.java 30 import android.os.Handler;
57 private final Handler mHandler;
73 * @param handler A Handler to send messages back to the UI Activity
75 public BluetoothChatService(Context context, Handler handler) {
78 mHandler = handler;
89 // Give the new state to the Handler so the UI Activity can update
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java 27 import android.os.Handler;
90 * Handler used to post runnables to the UI thread.
92 private Handler mHandler;
144 mHandler = new Handler();
323 // pass a Runnable to handler.post().
593 DefaultHandler handler = new RSSHandler(adapter);
595 parser.parse(in, handler);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DemoKitActivity.java 31 import android.os.Handler;
324 Handler mHandler = new Handler() {

Completed in 2055 milliseconds

<<11121314151617181920>>