HomeSort by relevance Sort by last modified time
    Searched full:starttime (Results 51 - 75 of 576) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_animation_unittest.cc 24 EXPECT_EQ(0, animation->startTime());
39 EXPECT_EQ(2, animation->startTime());
  /external/compiler-rt/test/timing/
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);
divdi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
lshrdi3.c 34 uint64_t startTime = mach_absolute_time();
39 double thisTime = intervalInCycles(startTime, endTime);
moddi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
modsi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
muldi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
negdi2.c 35 uint64_t startTime = mach_absolute_time();
40 double thisTime = intervalInCycles(startTime, endTime);
udivdi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
umoddi3.c 37 uint64_t startTime = mach_absolute_time();
42 double thisTime = intervalInCycles(startTime, endTime);
  /sdk/emulator/qtools/
dmtrace.h 20 void open(const char *dmtrace_file, uint64_t startTime);
47 void writeHeader(FILE *fstream, uint64_t startTime);
  /external/chromium-trace/trace-viewer/src/tracing/
timeline_view_test.js 21 var startTime = 0;
29 'foo', 'a', 0, startTime, {}, 1));
31 'bar', 'b', 0, startTime + 23, {}, 10));
35 'foo', 'a', 0, startTime + 4, {}, 11));
37 'bar', 'b', 0, startTime + 22, {}, 14));
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCueList.cpp 79 ASSERT(cue->startTime() >= 0);
103 if (cue->startTime() < m_list[index]->startTime() || (cue->startTime() == m_list[index]->startTime() && cue->endTime() > m_list[index]->endTime()))
  /system/extras/tests/mmc_tracepoints/
mmc_trace_reduce 8 typeset -i STARTTIME ENDTIME DURATION START_SEC START_USEC DUR_SEC DUR_USEC
45 STARTTIME=START_SEC*1000000
47 STARTTIME=STARTTIME+START_USEC
140 DURATION=ENDTIME-STARTTIME
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
VideoEditorHelper.java 204 long startTime, long duration, int effectType, int colorType) {
206 effectonMVI = new EffectColor(mediaItem, effectId, startTime,
315 int export_height, int startTime, long endTime, int vCodec, int aCodec) {
333 if (startTime == 0) {
335 Log.i(TAG, "TimeLine Expected = " + (startTime + endTime) +
338 "<expected> " + (startTime + endTime) + "\t<actual> " +
339 mvi.getTimelineDuration(), checkRange((startTime +
343 Log.i(TAG, "TimeLine Expected = " + (endTime - startTime) +
346 "<expected> " + (endTime - startTime) + "\t<actual> " +
348 startTime), (int)mvi.getTimelineDuration(), 10))
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 117 long startTime = scaleAnimation.getStartTime();
118 // interpolatedTime == startTime
119 scaleAnimation.getTransformation(startTime, transformation);
126 // interpolatedTime == startTime + (DURATION / 2)
127 scaleAnimation.getTransformation(startTime + (DURATION / 2), transformation);
132 // interpolatedTime == startTime + DURATION
133 scaleAnimation.getTransformation(startTime + DURATION, transformation);
AnimationTest.java 227 long startTime = anim.getStartTime();
228 anim.getTransformation(startTime, transformation);
232 anim.getTransformation(startTime + 1000, transformation);
235 anim.getTransformation(startTime + 2000, transformation);
249 startTime = anim.getStartTime();
250 anim.getTransformation(startTime + 3000, transformation);
253 anim.getTransformation(startTime + 4000, transformation);
286 startTime = anim.getStartTime();
287 anim.getTransformation(startTime, transformation);
291 anim.getTransformation(startTime + 1000, transformation)
    [all...]
AnimationSetTest.java 274 final long startTime = 200;
275 animationSet.setStartTime(startTime);
276 assertEquals(startTime, animationSet.getStartTime());
280 assertEquals(startTime, children.get(i).getStartTime());
293 final long startTime = animationSet.getStartTime();
295 assertGetTransformation(animationSet, startTime, true);
296 assertGetTransformation(animationSet, startTime + 100, true);
297 assertGetTransformation(animationSet, startTime + animationSet.getDuration(), false);
370 final long startTime = 0;
371 animationSet.setStartTime(startTime);
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Interactive/
spellcheck-paste-huge-text.html 18 var startTime = 0;
44 startTime = PerfTestRunner.now();
108 PerfTestRunner.measureValueAsync(PerfTestRunner.now() - startTime);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptGCEvent.h 71 double startTime() { return m_startTime; }
72 void setStartTime(double startTime) { m_startTime = startTime; }
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineOverviewPane.js 94 if (this._windowTimes && this._windowTimes.startTime >= 0)
95 this.setWindowTimes(this._windowTimes.startTime, this._windowTimes.endTime);
135 this.setWindowTimes(frame.startTime, frame.endTime);
190 this._windowStartTime = times.startTime;
196 * @param {!Number} startTime
199 setWindowTimes: function(startTime, endTime)
201 this._windowStartTime = startTime;
335 startTime: absoluteMin + timeSpan * windowLeft,
341 * @param {number} startTime
344 windowBoundaries: function(startTime, endTime
    [all...]
  /external/chromium_org/tools/page_cycler/database/pseudo-random-transactions/
index.html 20 var startTime = 0;
27 testComplete(Date.now() - startTime);
41 startTime = Date.now();
  /external/chromium_org/tools/page_cycler/indexed_db/basic_insert/
index.html 71 startTime = new Date();
80 var diff = now - startTime;
85 testComplete(now - startTime);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/serialization/
KerberosTicketTest.java 56 private static final Date startTime = new Date(1);
86 assertEquals("StartTime", init.getStartTime(), desr.getStartTime());
99 pServer, sessionKey, KEY_TYPE, flags, authTime, startTime,
109 startTime, endTime, renewTill, addesses), COMPARATOR);

Completed in 262 milliseconds

1 23 4 5 6 7 8 91011>>