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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/dom/
AnimationEvent.cpp 35 , elapsedTime(0.0)
48 , m_elapsedTime(initializer.elapsedTime)
53 AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
56 , m_elapsedTime(elapsedTime)
70 double AnimationEvent::elapsedTime() const
WebKitAnimationEvent.idl 31 [InitializedByEventConstructor] readonly attribute double elapsedTime;
AnimationEvent.h 37 double elapsedTime;
46 static PassRefPtr<AnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
48 return adoptRef(new AnimationEvent(type, animationName, elapsedTime));
58 double elapsedTime() const;
64 AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
TransitionEvent.cpp 35 : elapsedTime(0)
45 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
48 , m_elapsedTime(elapsedTime)
57 , m_elapsedTime(initializer.elapsedTime)
72 double TransitionEvent::elapsedTime() const
TransitionEvent.h 38 double elapsedTime;
48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
60 double elapsedTime() const;
67 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
TransitionEvent.idl 31 [InitializedByEventConstructor] readonly attribute double elapsedTime;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisEvent.h 37 static PassRefPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
40 float elapsedTime() const { return m_elapsedTime; }
47 SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
SpeechSynthesisEvent.cpp 36 PassRefPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name)
38 return adoptRef(new SpeechSynthesisEvent(type, charIndex, elapsedTime, name));
46 SpeechSynthesisEvent::SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name)
49 , m_elapsedTime(elapsedTime)
SpeechSynthesisEvent.idl 30 readonly attribute float elapsedTime;
  /external/junit/src/junit/runner/
TestRunListener.java 15 public void testRunEnded(long elapsedTime);
16 public void testRunStopped(long elapsedTime);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
UserHistoryForgettingCurveUtils.java 133 private static int calcFreq(int elapsedTime, int count, int level) {
142 final int et = Math.min(FC_FREQ_MAX, Math.max(0, elapsedTime));
147 /* pakcage */ static byte calcFc(int elapsedTime, int count, int level) {
148 final int et = Math.min(FC_FREQ_MAX, Math.max(0, elapsedTime));
155 final int elapsedTime = fcToElapsedTime(fc);
158 return calcFreq(elapsedTime, count, level);
162 int elapsedTime = fcToElapsedTime(fc);
165 if (elapsedTime >= ELAPSED_TIME_MAX) {
167 elapsedTime = 0;
171 ++elapsedTime;
    [all...]
  /cts/tests/src/android/app/cts/
MockAlarmReceiver.java 32 public long elapsedTime;
41 elapsedTime = SystemClock.elapsedRealtime();
  /external/guava/guava-tests/test/com/google/common/base/
StopwatchTest.java 42 assertEquals(0, stopwatch.elapsedTime(NANOSECONDS));
91 assertEquals(0, stopwatch.elapsedTime(NANOSECONDS));
94 assertEquals(3, stopwatch.elapsedTime(NANOSECONDS));
100 assertEquals(0, stopwatch.elapsedTime(NANOSECONDS));
102 assertEquals(2, stopwatch.elapsedTime(NANOSECONDS));
106 assertEquals(0, stopwatch.elapsedTime(NANOSECONDS));
112 assertEquals(0, stopwatch.elapsedTime(NANOSECONDS));
115 assertEquals(345, stopwatch.elapsedTime(NANOSECONDS));
124 assertEquals(4, stopwatch.elapsedTime(NANOSECONDS));
135 assertEquals(9, stopwatch.elapsedTime(NANOSECONDS))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
KeyframeAnimation.h 64 virtual void onAnimationStart(double elapsedTime);
65 virtual void onAnimationIteration(double elapsedTime);
66 virtual void onAnimationEnd(double elapsedTime);
75 bool sendAnimationEvent(const AtomicString&, double elapsedTime);
ImplicitAnimation.h 50 virtual void onAnimationEnd(double elapsedTime);
77 bool sendTransitionEvent(const AtomicString&, double elapsedTime);
  /system/core/include/utils/
StopWatch.h 39 nsecs_t elapsedTime() const;
  /system/core/libutils/
StopWatch.cpp 44 nsecs_t elapsed = elapsedTime();
61 nsecs_t elapsed = elapsedTime();
73 nsecs_t StopWatch::elapsedTime() const
  /system/core/libutils/tests/
Looper_test.cpp 118 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
131 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
145 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
156 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
172 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
191 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
213 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
232 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
258 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
284 int32_t elapsedMillis = ns2ms(stopWatch.elapsedTime());
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrail.java 141 final int elapsedTime = (int)(downTime - mCurrentTimeBase);
144 eventTimes[i] -= elapsedTime;
160 * @param elapsedTime the elapsed time since a trail has been made.
164 private static int getAlpha(final int elapsedTime, final Params params) {
165 if (elapsedTime < params.mFadeoutStartDelay) {
169 * (elapsedTime - params.mFadeoutStartDelay)
179 * @param elapsedTime the elapsed time since a trail has been made.
183 private static float getWidth(final int elapsedTime, final Params params) {
185 return params.mTrailStartWidth - (deltaWidth * elapsedTime) / params.mTrailLingerDuration;
222 final int elapsedTime = sinceDown - eventTimes[startIndex]
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 128 long elapsedTime = endTime - startTime;
129 if (maxTime < elapsedTime) {
130 maxTime = elapsedTime;
132 sumTime += elapsedTime;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.h 81 double elapsedTime = currentTime() - session.startTime;
82 if (elapsedTime > parserTimeLimit)
  /external/lzma/CPP/7zip/UI/Common/
Bench.h 28 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size);
29 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt32 numIterations);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCollector.java 60 public synchronized void testRunEnded(long elapsedTime, Map<String, String> runMetrics) {
84 public synchronized void testRunStopped(long elapsedTime) {
  /external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
ubrkperf.cpp 62 unsigned long elapsedTime = 0;
84 elapsedTime = timeGetTime()-startTime;
120 elapsedTime = timeGetTime()-startTime;
129 int32_t loopTime = (int)(float(1000) * ((float)elapsedTime/(float)opt_loopCount));
136 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize);
  /external/icu4c/test/perf/ubrkperf/
ubrkperf.cpp 62 unsigned long elapsedTime = 0;
84 elapsedTime = timeGetTime()-startTime;
120 elapsedTime = timeGetTime()-startTime;
129 int32_t loopTime = (int)(float(1000) * ((float)elapsedTime/(float)opt_loopCount));
136 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize);

Completed in 1303 milliseconds

1 2 3 4