OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Stopwatch
(Results
1 - 25
of
65
) sorted by null
1
2
3
/development/tools/idegen/src/
Stopwatch.java
20
class
Stopwatch
{
/system/netd/server/
NetdConstants.h
63
class
Stopwatch
{
65
Stopwatch
() : mStart(std::chrono::steady_clock::now()) {}
66
virtual ~
Stopwatch
() {};
/external/guice/core/src/com/google/inject/internal/util/
Stopwatch.java
26
public final class
Stopwatch
{
27
private static final Logger logger = Logger.getLogger(
Stopwatch
.class.getName());
/frameworks/base/services/net/java/android/net/util/
Stopwatch.java
25
public class
Stopwatch
{
43
//
Stopwatch
s = new
Stopwatch
().start();
44
public
Stopwatch
start() {
61
// If the
Stopwatch
is not running, returns the same value as stop(),
/external/guava/guava/src/com/google/common/base/
Stopwatch.java
45
* returned by {@code nanoTime} at a different time. {@code
Stopwatch
} is a
52
*
Stopwatch
stopwatch
=
Stopwatch
.{@link #createStarted createStarted}();
54
*
stopwatch
.{@link #stop stop}(); // optional
56
* long millis =
stopwatch
.elapsed(MILLISECONDS);
58
* log.info("time: " +
stopwatch
); // formatted string like "12.3 ms"</pre>
60
* <p>
Stopwatch
methods are not idempotent; it is an error to start or stop a
61
*
stopwatch
that is already in the desired state.
67
* simulate any valid behavior of the
stopwatch
[
all
...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Stopwatch.java
44
* returned by {@code nanoTime} at a different time. {@code
Stopwatch
} is a
51
*
Stopwatch
stopwatch
=
Stopwatch
.{@link #createStarted createStarted}();
53
*
stopwatch
.{@link #stop stop}(); // optional
55
* long millis =
stopwatch
.elapsed(MILLISECONDS);
57
* log.info("time: " +
stopwatch
); // formatted string like "12.3 ms"</pre>
59
* <p>
Stopwatch
methods are not idempotent; it is an error to start or stop a
60
*
stopwatch
that is already in the desired state.
66
* simulate any valid behavior of the
stopwatch
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/data/
Stopwatch.java
21
import static com.android.deskclock.data.
Stopwatch
.State.PAUSED;
22
import static com.android.deskclock.data.
Stopwatch
.State.RESET;
23
import static com.android.deskclock.data.
Stopwatch
.State.RUNNING;
26
* A read-only domain object representing a
stopwatch
.
28
public final class
Stopwatch
{
32
/** The single, immutable instance of a reset
stopwatch
. */
33
private static final
Stopwatch
RESET_STOPWATCH = new
Stopwatch
(RESET, Long.MIN_VALUE, 0);
35
/** Current state of this
stopwatch
. */
38
/** Elapsed time in ms the
stopwatch
was last started; {@link Long#MIN_VALUE} if not running. *
[
all
...]
/prebuilts/devtools/tools/lib/
junit-4.12.jar
/prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar
/prebuilts/misc/common/android-support-test/rules/
rules-0.5-release.jar
/prebuilts/misc/common/android-support-test/runner/
runner-0.5-release.jar
/prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar
/prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0-no_aop.jar
sisu-guice-3.1.0.jar
/prebuilts/misc/common/android-support-test/espresso/
espresso-contrib-2.2.2-release.jar
/external/testng/lib-supplied/
guice-2.0.jar
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar
/prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar
/external/owasp/sanitizer/distrib/lib/
guava.jar
/external/owasp/sanitizer/lib/guava-libraries/
guava.jar
/packages/services/Telecomm/libs/
guava.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/10.0.1/
guava-10.0.1.jar
/external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar
/external/guice/lib/
guava-16.0.1.jar
Completed in 1198 milliseconds
1
2
3