HomeSort by relevance Sort by last modified time
    Searched refs:startTime (Results 1 - 25 of 382) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidTimer.java 47 private long startTime;
53 //startTime = System.currentTimeMillis();
54 startTime = System.nanoTime();
69 //return System.currentTimeMillis() - startTime;
70 return System.nanoTime() - startTime;
92 //startTime = System.currentTimeMillis();
93 startTime = System.nanoTime();
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NanoTimer.java 46 private long startTime;
52 startTime = System.nanoTime();
67 return System.nanoTime() - startTime;
89 startTime = System.nanoTime();
  /external/webkit/Source/WebCore/inspector/
ScriptGCEventListener.h 41 virtual void didGC(double startTime, double endTime, size_t collectedBytes) = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AnimationTime.java 41 public static long startTime() {
  /frameworks/base/core/java/android/content/
SyncInfo.java 46 public final long startTime;
50 long startTime) {
54 this.startTime = startTime;
67 parcel.writeLong(startTime);
75 startTime = parcel.readLong();
  /external/webkit/Source/WebCore/html/parser/
HTMLParserScheduler.h 46 // At that time we'll initialize startTime.
48 , startTime(0)
54 double startTime;
73 if (!session.startTime)
74 session.startTime = currentTime();
77 double elapsedTime = currentTime() - session.startTime;
  /cts/tests/tests/view/src/android/view/animation/cts/
DecelerateInterpolatorTest.java 89 long startTime = anim.getStartTime();
90 anim.getTransformation(startTime, transformation);
94 anim.getTransformation(startTime + 500, transformation);
97 anim.getTransformation(startTime + 1000, transformation);
100 anim.getTransformation(startTime + 1500, transformation);
103 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation);
123 startTime = anim.getStartTime();
124 anim.getTransformation(startTime, transformation);
128 anim.getTransformation(startTime + 500, transformation);
131 anim.getTransformation(startTime + 1000, transformation)
    [all...]
GridLayoutAnimationControllerTest.java 121 long startTime = child1.getStartTime();
134 child1.getTransformation(startTime + 500, transformation1);
135 child2.getTransformation(startTime + 500, transformation2);
136 child3.getTransformation(startTime + 500, transformation3);
142 child1.getTransformation(startTime + 1200, transformation1);
143 child2.getTransformation(startTime + 1200, transformation2);
144 child3.getTransformation(startTime + 1200, transformation3);
150 child1.getTransformation(startTime + 2000, transformation1);
151 child2.getTransformation(startTime + 2000, transformation2);
152 child3.getTransformation(startTime + 2000, transformation3)
    [all...]
LinearInterpolatorTest.java 84 final long startTime = anim.getStartTime();
85 anim.getTransformation(startTime, transformation);
89 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP, transformation);
92 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 2, transformation);
95 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 3, transformation);
98 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 4, transformation);
101 anim.getTransformation(startTime + LINEAR_ALPHA_DURATION, transformation);
LayoutAnimationControllerTest.java 87 long startTime = childAnimation1.getStartTime();
97 childAnimation1.getTransformation(startTime + 500, transformation1);
98 childAnimation2.getTransformation(startTime + 500, transformation2);
99 childAnimation3.getTransformation(startTime + 500, transformation3);
105 childAnimation1.getTransformation(startTime + 1000, transformation1);
106 childAnimation2.getTransformation(startTime + 1000, transformation2);
107 childAnimation3.getTransformation(startTime + 1000, transformation3);
113 childAnimation1.getTransformation(startTime + 1500, transformation1);
114 childAnimation2.getTransformation(startTime + 1500, transformation2);
115 childAnimation3.getTransformation(startTime + 1500, transformation3)
    [all...]
AccelerateDecelerateInterpolatorTest.java 80 long startTime = anim.getStartTime();
81 anim.getTransformation(startTime, transformation);
85 anim.getTransformation(startTime + 500, transformation);
88 anim.getTransformation(startTime + 1000, transformation);
91 anim.getTransformation(startTime + 1500, transformation);
94 anim.getTransformation(startTime + ALPHA_DURATION, transformation);
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriActivity.java 98 final long startTime = SystemClock.uptimeMillis();
104 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
125 final long startTime = SystemClock.uptimeMillis();
131 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
140 final long startTime = SystemClock.uptimeMillis();
146 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
ReceiveUriService.java 96 final long startTime = SystemClock.uptimeMillis();
102 if (SystemClock.uptimeMillis() >= (startTime+5000)) {
117 final long startTime = SystemClock.uptimeMillis();
123 if (SystemClock.uptimeMillis() >= (startTime+5000)) {
  /external/compiler-rt/test/timing/
timing.h 5 double intervalInCycles( uint64_t startTime, uint64_t endTime )
7 uint64_t rawTime = endTime - startTime;
ashldi3.c 34 uint64_t startTime = mach_absolute_time();
39 double thisTime = intervalInCycles(startTime, endTime);
ashrdi3.c 34 uint64_t startTime = mach_absolute_time();
39 double thisTime = intervalInCycles(startTime, endTime);
floatdidf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatdisf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatdixf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatundidf.c 29 uint64_t startTime = mach_absolute_time();
34 double thisTime = intervalInCycles(startTime, endTime);
floatundisf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatundixf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
lshrdi3.c 34 uint64_t startTime = mach_absolute_time();
39 double thisTime = intervalInCycles(startTime, endTime);
negdi2.c 35 uint64_t startTime = mach_absolute_time();
40 double thisTime = intervalInCycles(startTime, endTime);
  /external/webkit/Source/WebCore/inspector/front-end/
HAREntry.js 47 startedDateTime: new Date(this._resource.startTime * 1000),
168 expires: cookie.expires(new Date(this._resource.startTime * 1000)),
179 var startTime = timing[start];
180 return typeof startTime !== "number" || startTime === -1 ? -1 : Math.round(timing[end] - startTime);
213 startedDateTime: new Date(WebInspector.mainResource.startTime * 1000),
236 var startTime = WebInspector.mainResource.startTime;
237 if (time === -1 || startTime === -1
    [all...]

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>