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

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/animation/cts/
TranslateAnimationTest.java 98 final long startTime = translateAnimation.getStartTime();
102 translateAnimation.getTransformation(startTime, transformation);
108 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
114 translateAnimation.getTransformation(startTime + DURATION, transformation);
166 final long startTime = translateAnimation.getStartTime();
169 translateAnimation.getTransformation(startTime, transformation);
175 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
183 translateAnimation.getTransformation(startTime + DURATION, transformation);
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);
  /external/chromium_org/cc/blink/
web_animation_unittest.cc 25 EXPECT_EQ(0, animation->startTime());
40 EXPECT_EQ(2, animation->startTime());
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 47 bool SkInterpolatorBase::getDuration(SkMSec* startTime, SkMSec* endTime) const {
52 if (startTime) {
53 *startTime = fTimes[0].fTime;
76 SkMSec startTime = 0, endTime = 0; // initialize to avoid warning
77 this->getDuration(&startTime, &endTime);
78 SkMSec totalTime = endTime - startTime;
79 SkMSec offsetTime = time - startTime;
93 time = offsetTime + startTime;
  /external/compiler-rt/test/builtins/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);
  /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 80 ASSERT(cue->startTime() >= 0);
104 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
  /cts/tests/tests/app.usage/src/android/app/usage/cts/
UsageStatsTest.java 135 final long startTime = System.currentTimeMillis() - MINUTE;
141 UsageEvents events = mUsageStatsManager.queryEvents(startTime, endTime);
200 long startTime = endTime - MINUTE;
201 Map<String, UsageStats> statsMap = mUsageStatsManager.queryAndAggregateUsageStats(startTime, endTime);
209 startTime = endTime - MINUTE;
210 statsMap = mUsageStatsManager.queryAndAggregateUsageStats(startTime, endTime);
230 final long startTime = System.currentTimeMillis() - MINUTE;
242 UsageEvents events = mUsageStatsManager.queryEvents(startTime, endTime);
286 final long startTime = endTime - (2 * intervalDuration);
287 final List<UsageStats> statsList = mUsageStatsManager.queryUsageStats(intervalType, startTime, endTime)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayer.cpp 152 double AnimationPlayer::startTime(bool& isNull) const
154 double result = startTime();
159 double AnimationPlayer::startTime() const
196 bool hardChange = m_compositorState && (m_compositorState->sourceChanged || (m_compositorState->startTime != m_startTime && !std::isnan(m_compositorState->startTime) && !std::isnan(m_startTime)));
229 if (!std::isnan(m_compositorState->startTime)) {
230 ASSERT(m_startTime == m_compositorState->startTime);
238 setCurrentTimeInternal((timelineTime - m_compositorState->startTime) * m_playbackRate, TimingUpdateForAnimationFrame);
250 ASSERT(std::isnan(m_compositorState->startTime));
254 m_compositorState->startTime = timelineTime + currentTimeInternal() / -m_playbackRate
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
Zygote.java 90 long startTime = SystemClock.elapsedRealtime();
92 checkTime(startTime, "Zygote.preFork");
96 checkTime(startTime, "Zygote.nativeForkAndSpecialize");
98 checkTime(startTime, "Zygote.postForkCommon");
110 private static void checkTime(long startTime, String where) {
112 if ((now-startTime) > 1000) {
114 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where);
154 long startTime = SystemClock.elapsedRealtime();
156 checkTime(startTime, "Zygote.callPostForkChildHooks");
  /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/core/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/timeline/
TimelineFlameChart.js 129 * @param {number} startTime
133 dividerOffsets: function(startTime, endTime)
226 this._timelineData.markerTimestamps.push(e.startTime);
232 while (openEvents.length && openEvents.peekLast().endTime <= e.startTime)
266 for (level = 0; level < lastUsedTimeByLevel.length && lastUsedTimeByLevel[level] > e.startTime; ++level) {}
269 lastUsedTimeByLevel[level] = lastStep.phase === WebInspector.TracingModel.Phase.AsyncEnd ? lastStep.startTime : Infinity;
298 return e.endTime || e.startTime;
337 while (jsFramesStack.length && eventEndTime(jsFramesStack.peekLast()) + coalesceThresholdMs <= e.startTime)
354 WebInspector.TracingModel.Phase.Complete, e.startTime, e.thread);
366 if (top && top.endTime <= e.startTime)
    [all...]
  /external/chromium_org/tools/telemetry/unittest_data/
interaction_enabled_page.html 57 var startTime = window.performance.now();
58 var currTime = startTime;
59 while (currTime - startTime < ms) {
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParamTimeline.cpp 179 void AudioParamTimeline::cancelScheduledValues(double startTime, ExceptionState& exceptionState)
183 if (!std::isfinite(startTime)) {
186 "Time must be a finite number: " + String::number(startTime));
191 // Remove all events starting at startTime.
193 if (m_events[i].time() >= startTime) {
215 double startTime = context->currentTime();
216 double endTime = startTime + 1.1 / sampleRate; // time just beyond one sample-frame
218 value = valuesForTimeRange(startTime, endTime, defaultValue, &value, 1, sampleRate, controlRate);
225 double startTime,
243 float value = valuesForTimeRangeImpl(startTime, endTime, defaultValue, values, numberOfValues, sampleRate, controlRate)
    [all...]

Completed in 502 milliseconds

1 23 4 5 6 7 8 91011>>