Searched defs:elapsedTime (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisEvent.cpp36 PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) argument
38 return adoptRefWillBeNoop(new SpeechSynthesisEvent(type, charIndex, elapsedTime, name));
45 SpeechSynthesisEvent::SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) argument
48 , m_elapsedTime(elapsedTime)
H A DSpeechSynthesisEvent.h37 static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
40 float elapsedTime() const { return m_elapsedTime; } function in class:blink::FINAL
52 SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTransitionEvent.cpp33 : elapsedTime(0)
42 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
45 , m_elapsedTime(elapsedTime)
53 , m_elapsedTime(initializer.elapsedTime)
67 double TransitionEvent::elapsedTime() const function in class:blink::TransitionEvent
H A DTransitionEvent.h38 double elapsedTime; member in struct:blink::TransitionEventInit
49 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
61 double elapsedTime() const;
70 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
H A DWebKitAnimationEvent.cpp33 , elapsedTime(0.0)
45 , m_elapsedTime(initializer.elapsedTime)
49 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime) argument
52 , m_elapsedTime(elapsedTime)
65 double WebKitAnimationEvent::elapsedTime() const function in class:blink::WebKitAnimationEvent
H A DWebKitAnimationEvent.h40 double elapsedTime; member in struct:blink::WebKitAnimationEventInit
50 static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) argument
52 return adoptRefWillBeNoop(new WebKitAnimationEvent(type, animationName, elapsedTime));
62 double elapsedTime() const;
70 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DProgrammaticScrollAnimator.cpp60 double elapsedTime = monotonicTime - m_startTime; local
61 bool isFinished = (elapsedTime > m_animationCurve->duration());
62 FloatPoint offset = m_animationCurve->getValue(elapsedTime);
/external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
H A Dhelloskia.cpp17 * @param elapsedTime The number of milliseconds since the app was started
21 jobject thiz, jobject dstBitmap, jlong elapsedTime)
62 float offset = elapsedTime / 1000.0f;
20 Java_com_example_HelloSkiaActivity_drawIntoBitmap(JNIEnv* env, jobject thiz, jobject dstBitmap, jlong elapsedTime) argument
/external/skia/platform_tools/android/examples/hello_skia_app/jni/
H A Dhelloskia.cpp17 * @param elapsedTime The number of milliseconds since the app was started
21 jobject thiz, jobject dstBitmap, jlong elapsedTime)
62 float offset = elapsedTime / 1000.0f;
20 Java_com_example_HelloSkiaActivity_drawIntoBitmap(JNIEnv* env, jobject thiz, jobject dstBitmap, jlong elapsedTime) argument
/external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/src/com/example/
H A DHelloSkiaActivity.java73 private native void drawIntoBitmap(Bitmap image, long elapsedTime); argument
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DStopwatch.java155 public long elapsedTime(TimeUnit desiredUnit) { method in class:Stopwatch
162 * {@code elapsedTime(TimeUnit.MILLISECONDS}.
165 return elapsedTime(MILLISECONDS);
/external/junit/src/junit/runner/
H A DTestRunListener.java15 public void testRunEnded(long elapsedTime); argument
16 public void testRunStopped(long elapsedTime); argument
/external/skia/platform_tools/android/examples/hello_skia_app/src/com/example/
H A DHelloSkiaActivity.java73 private native void drawIntoBitmap(Bitmap image, long elapsedTime); argument
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserScheduler.h83 double elapsedTime = currentTime() - session.startTime; local
84 if (elapsedTime > parserTimeLimit)
/external/chromium_org/third_party/angle/tests/perf_tests/
H A DSimpleBenchmark.cpp89 double elapsedTime = mTimer->getElapsedTime(); local
90 double deltaTime = elapsedTime - prevTime;
92 step(static_cast<float>(deltaTime), elapsedTime); local
115 prevTime = elapsedTime;
/external/guava/guava/src/com/google/common/base/
H A DStopwatch.java156 public long elapsedTime(TimeUnit desiredUnit) { method in class:Stopwatch
163 * {@code elapsedTime(TimeUnit.MILLISECONDS}.
166 return elapsedTime(MILLISECONDS);
181 * For example, at the instant when {@code elapsedTime(NANOSECONDS)} would
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A DSampleApplication.cpp107 double elapsedTime = mTimer->getElapsedTime(); local
108 double deltaTime = elapsedTime - prevTime;
110 step(static_cast<float>(deltaTime), elapsedTime); local
133 prevTime = elapsedTime;
/external/lzma/CPP/7zip/UI/Console/
H A DBenchCon.cpp63 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime, UInt64 freq) argument
65 UInt64 elTime = elapsedTime;
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DDocumentThreadableLoader.cpp174 double elapsedTime = monotonicallyIncreasingTime() - m_requestStartedSeconds; local
176 double resolvedTime = std::max(nextFire - elapsedTime, 0.0);
/external/chromium_org/third_party/icu/source/tools/gendict/
H A Dgendict.cpp42 static int elapsedTime() { function
58 printf("%s: still writing\t%s (%ds)\t...\n", wToolname, wOutname, elapsedTime());
485 printf("%s: done writing\t%s (%ds).\n", progName, outFileName, elapsedTime());
/external/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp42 static int elapsedTime() { function
58 printf("%s: still writing\t%s (%ds)\t...\n", wToolname, wOutname, elapsedTime());
485 printf("%s: done writing\t%s (%ds).\n", progName, outFileName, elapsedTime());
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs172 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime) argument
175 UInt64 elTime = elapsedTime;
186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size) argument
191 return MyMultDiv64(numCommands, elapsedTime);
194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize) argument
197 return MyMultDiv64(numCommands, elapsedTime);
226 UInt64 elapsedTime,
230 UInt64 speed = MyMultDiv64(size, elapsedTime);
235 rating = GetDecompressRating(elapsedTime, size, secondSize);
237 rating = GetCompressRating(dictionarySize, elapsedTime, siz
224 PrintResults( UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size, bool decompressMode, UInt64 secondSize) argument
[all...]
/external/lzma/Java/SevenZip/
H A DLzmaBench.java222 static long MyMultDiv64(long value, long elapsedTime) argument
225 long elTime = elapsedTime;
236 static long GetCompressRating(int dictionarySize, long elapsedTime, long size) argument
241 return MyMultDiv64(numCommands, elapsedTime);
244 static long GetDecompressRating(long elapsedTime, long outSize, long inSize) argument
247 return MyMultDiv64(numCommands, elapsedTime);
277 long elapsedTime,
281 long speed = MyMultDiv64(size, elapsedTime);
286 rating = GetDecompressRating(elapsedTime, size, secondSize);
288 rating = GetCompressRating(dictionarySize, elapsedTime, siz
275 PrintResults( int dictionarySize, long elapsedTime, long size, boolean decompressMode, long secondSize) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp236 // elapsedTime will evaluate to false as the current time will be a lot
248 double elapsedTime = m_pruneFrameTimeStamp - current->m_lastDecodedAccessTime; local
249 if (elapsedTime < m_delayBeforeLiveDecodedPrune)
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp286 unsigned long elapsedTime = 0; local
310 elapsedTime = timeGetTime()-startTime;
346 elapsedTime = timeGetTime()-startTime;
355 int32_t loopTime = (int)(float(1000) * ((float)elapsedTime/(float)opt_loopCount));
362 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize);
372 unsigned long elapsedTime = 0; local
397 elapsedTime = timeGetTime()-startTime;
398 int32_t loopTime = (int)(float(1000) * ((float)elapsedTime/(float)opt_loopCount));
406 printf("time=%d\nevents=%d\nsize=%d\n", elapsedTime, noBreaks, textSize);

Completed in 3439 milliseconds

12