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

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A Dregress-85721.js62 function elapsedTime(startTime) function
90 actual = elapsedTime(start);
264 actual = elapsedTime(start);
/external/webkit/Source/WebCore/dom/
H A DWebKitAnimationEvent.cpp38 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime) argument
41 , m_elapsedTime(elapsedTime)
53 double elapsedTime)
61 m_elapsedTime = elapsedTime;
69 double WebKitAnimationEvent::elapsedTime() const function in class:WebCore::WebKitAnimationEvent
49 initWebKitAnimationEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, const String& animationName, double elapsedTime) argument
H A DWebKitAnimationEvent.h39 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) argument
41 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime));
50 double elapsedTime);
53 double elapsedTime() const;
59 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
H A DWebKitTransitionEvent.cpp39 WebKitTransitionEvent::WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime) argument
42 , m_elapsedTime(elapsedTime)
54 double elapsedTime)
62 m_elapsedTime = elapsedTime;
70 double WebKitTransitionEvent::elapsedTime() const function in class:WebCore::WebKitTransitionEvent
50 initWebKitTransitionEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, const String& propertyName, double elapsedTime) argument
H A DWebKitTransitionEvent.h39 static PassRefPtr<WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) argument
41 return adoptRef(new WebKitTransitionEvent(type, animationName, elapsedTime));
50 double elapsedTime);
53 double elapsedTime() const;
59 WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime);
H A DDocument.cpp2128 printf("onload fired at %d\n", elapsedTime());
2141 if (frame()->navigationScheduler()->locationChangePending() && elapsedTime() < cLayoutScheduleThreshold) {
2191 printf("Parsing finished at %d\n", elapsedTime());
2220 int elapsed = elapsedTime();
2227 int Document::elapsedTime() const function in class:WebCore::Document
2244 printf("Beginning a document.write at %d\n", elapsedTime());
2259 printf("Ending a document.write at %d\n", elapsedTime());
2278 printf("Received all data at %d\n", elapsedTime());
2925 printf("Stylesheet loaded at time %d. %d stylesheets still remain.\n", elapsedTime(), m_pendingStylesheets);
2949 printf("Beginning update of style selector at time %d.\n", elapsedTime());
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A DPluginDebugAndroid.cpp63 void anp_logPluginEvent(void* npp, const ANPEvent* evt, int16_t returnVal, int elapsedTime) { argument
74 npp, returnVal, elapsedTime, inputActions[evt->data.key.action],
86 returnVal, elapsedTime, inputActions[evt->data.mouse.action],
97 npp, returnVal, elapsedTime,
108 npp, elapsedTime, evt->data.draw.data.bitmap.format,
113 npp, elapsedTime, evt->data.draw.data.surface.width,
122 anp_logPlugin("%p EVENT::LIFECYCLE time=%d action=%s", npp, elapsedTime,
130 anp_logPlugin("%p EVENT::CUSTOM time=%d", npp, elapsedTime);
/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
H A Dregress-101964.js51 actual = elapsedTime(start);
63 function elapsedTime(startTime) function
/external/webkit/Source/WebCore/page/
H A DWebKitAnimation.cpp52 double WebKitAnimation::elapsedTime() const function in class:WebCore::WebKitAnimation
/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/webkit/Source/WebCore/html/parser/
H A DHTMLParserScheduler.h77 double elapsedTime = currentTime() - session.startTime; local
78 if (elapsedTime > m_parserTimeLimit)
/external/webkit/Source/WebCore/page/animation/
H A DAnimationControllerPrivate.h67 void addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime);
121 double elapsedTime; member in class:WebCore::AnimationControllerPrivate::EventToDispatch
H A DImplicitAnimation.cpp153 void ImplicitAnimation::onAnimationEnd(double elapsedTime) argument
164 sendTransitionEvent(eventNames().webkitTransitionEndEvent, elapsedTime);
168 bool ImplicitAnimation::sendTransitionEvent(const AtomicString& eventType, double elapsedTime) argument
188 m_compAnim->animationController()->addEventToDispatch(element, eventType, propertyName, elapsedTime);
H A DKeyframeAnimation.cpp71 double elapsedTime = getElapsedTime(); local
73 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount());
75 double fractionalTime = m_animation->duration() ? (elapsedTime / m_animation->duration()) : 1;
303 void KeyframeAnimation::onAnimationStart(double elapsedTime) argument
305 sendAnimationEvent(eventNames().webkitAnimationStartEvent, elapsedTime);
308 void KeyframeAnimation::onAnimationIteration(double elapsedTime) argument
310 sendAnimationEvent(eventNames().webkitAnimationIterationEvent, elapsedTime);
313 void KeyframeAnimation::onAnimationEnd(double elapsedTime) argument
315 sendAnimationEvent(eventNames().webkitAnimationEndEvent, elapsedTime);
322 sendAnimationEvent(const AtomicString& eventType, double elapsedTime) argument
[all...]
H A DAnimationController.cpp153 it->element->dispatchEvent(WebKitTransitionEvent::create(it->eventType, it->name, it->elapsedTime));
155 it->element->dispatchEvent(WebKitAnimationEvent::create(it->eventType, it->name, it->elapsedTime));
175 void AnimationControllerPrivate::addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime) argument
182 event.elapsedTime = elapsedTime;
H A DAnimationBase.cpp1064 onAnimationStart(0); // The elapsedTime is 0.
1298 double elapsedTime = getElapsedTime(); local
1306 if (m_animation->iterationCount() > 0 && elapsedTime >= dur)
1312 double fractionalTime = elapsedTime / m_animation->duration();
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DAndroidAnimation.cpp76 double AndroidAnimation::elapsedTime(double time) function in class:WebCore::AndroidAnimation
78 double elapsedTime = (m_beginTime < 0.000001) ? 0 : time - m_beginTime; local
83 if (elapsedTime < 0) // animation not yet started.
86 return elapsedTime;
91 double progress = elapsedTime(time);
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.cpp183 // elapsedTime will evaluate to false as the currentTime will be a lot
192 double elapsedTime = currentTime - current->m_lastDecodedAccessTime; local
193 if (elapsedTime < cMinDelayBeforeLiveDecodedPrune)
/external/icu4c/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);
/external/icu4c/test/perf/collationperf/
H A Dcollperf.cpp422 unsigned long elapsedTime = timeGetTime() - startTime; local
423 int ns = (int)(float(1000000) * (float)elapsedTime / (float)(adj_loopCount*gNumFileLines));
470 unsigned long elapsedTime = 0; local
518 elapsedTime = timeGetTime() - startTime;
570 elapsedTime = timeGetTime() - startTime;
626 elapsedTime = timeGetTime() - startTime;
672 elapsedTime = timeGetTime() - startTime;
678 int ns = (int)(float(1000000) * (float)elapsedTime / (float)gCount);
761 unsigned long elapsedTime = timeGetTime() - startTime; local
762 int ns = (int)(float(1000000) * (float)elapsedTime / (floa
855 unsigned long elapsedTime = timeGetTime() - startTime; local
1018 unsigned long elapsedTime = timeGetTime() - startTime; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 6567 milliseconds