Searched refs:StopWatch (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Email/src/com/android/email/
H A DStopWatch.java28 * StopWatch s = StopWatch.start();
37 public class StopWatch { class
42 private StopWatch(String name) { method in class:StopWatch
46 Log.w(Logging.LOG_TAG, "StopWatch(" + mName + ") start");
49 public static StopWatch start(String name) {
50 return new StopWatch(name);
56 Log.w(Logging.LOG_TAG, "StopWatch(" + mName + ") split(" + label + ") " + elapse);
63 Log.w(Logging.LOG_TAG, "StopWatch(" + mName + ") stop: "
/packages/apps/Contacts/src/com/android/contacts/util/
H A DStopWatch.java26 * A {@link StopWatch} records start, laps and stop, and print them to logcat.
28 public class StopWatch { class
35 private StopWatch(String label) { method in class:StopWatch
43 public static StopWatch start(String label) {
44 return new StopWatch(label);
89 public static StopWatch getNullStopWatch() {
93 private static class NullStopWatch extends StopWatch {
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DQuickContactActivity.java72 import com.android.contacts.util.StopWatch;
153 private StopWatch mStopWatch = ENABLE_STOPWATCH
154 ? StopWatch.start("QuickContact") : StopWatch.getNullStopWatch();
541 mStopWatch = StopWatch.getNullStopWatch(); // We're done with it.
/packages/apps/Contacts/src/com/android/contacts/dialpad/
H A DDialpadFragment.java76 import com.android.contacts.util.StopWatch;
490 final StopWatch stopWatch = StopWatch.start("Dialpad.onResume");

Completed in 592 milliseconds