Searched defs:StopWatch (Results 1 - 2 of 2) 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 {

Completed in 65 milliseconds