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

/external/proguard/src/proguard/gui/splash/
H A DConstantTiming.java30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing) argument
47 this.timing = timing;
55 return timing;
H A DLinearDouble.java32 private final Timing timing; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearDouble(double fromValue, double toValue, Timing timing) argument
45 this.timing = timing;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
H A DLinearInt.java32 private final Timing timing; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing) argument
45 this.timing = timing;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
H A DTypeWriterString.java33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing) argument
47 this.timing = timing;
55 double t = timing.getTiming(time);
H A DLinearColor.java34 private final Timing timing; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
43 * @param toValue the value that corresponds to a timing of 1.
44 * @param timing the applied timing.
46 public LinearColor(Color fromValue, Color toValue, Timing timing) argument
50 this.timing = timing;
58 double t = timing.getTiming(time);
/external/webkit/Source/WebCore/page/
H A DPerformance.cpp83 PerformanceTiming* Performance::timing() const function in class:WebCore::Performance
H A DPerformanceTiming.cpp56 // system clock every 60 seconds. So it is possible for timing marks
93 DocumentLoadTiming* timing = documentLoadTiming(); local
94 if (!timing)
97 return toIntegerMilliseconds(timing->navigationStart);
102 DocumentLoadTiming* timing = documentLoadTiming(); local
103 if (!timing)
106 if (timing->hasCrossOriginRedirect || !timing->hasSameOriginAsPreviousDocument)
109 return toIntegerMilliseconds(timing->unloadEventStart);
114 DocumentLoadTiming* timing local
126 DocumentLoadTiming* timing = documentLoadTiming(); local
138 DocumentLoadTiming* timing = documentLoadTiming(); local
150 DocumentLoadTiming* timing = documentLoadTiming(); local
159 ResourceLoadTiming* timing = resourceLoadTiming(); local
174 ResourceLoadTiming* timing = resourceLoadTiming(); local
249 ResourceLoadTiming* timing = resourceLoadTiming(); local
259 ResourceLoadTiming* timing = resourceLoadTiming(); local
275 DocumentLoadTiming* timing = documentLoadTiming(); local
284 const DocumentTiming* timing = documentTiming(); local
293 const DocumentTiming* timing = documentTiming(); local
302 const DocumentTiming* timing = documentTiming(); local
311 const DocumentTiming* timing = documentTiming(); local
320 const DocumentTiming* timing = documentTiming(); local
329 DocumentLoadTiming* timing = documentLoadTiming(); local
338 DocumentLoadTiming* timing = documentLoadTiming(); local
[all...]
H A DDOMWindow.cpp1578 if (m_frame && m_frame->loader()->documentLoader() && !m_frame->loader()->documentLoader()->timing()->loadEventStart) {
1582 DocumentLoadTiming* timing = documentLoader->timing(); local
1583 dispatchTimedEvent(loadEvent, document(), &timing->loadEventStart, &timing->loadEventEnd);
/external/chromium/chrome/browser/net/
H A Dload_timing_observer.h23 // timing information.
32 webkit_glue::ResourceLoadTimingInfo timing; member in struct:LoadTimingObserver::URLRequestRecord
/external/webkit/Source/WebCore/platform/network/
H A DResourceLoadTiming.h44 RefPtr<ResourceLoadTiming> timing = create(); local
45 timing->requestTime = requestTime;
46 timing->proxyStart = proxyStart;
47 timing->proxyEnd = proxyEnd;
48 timing->dnsStart = dnsStart;
49 timing->dnsEnd = dnsEnd;
50 timing->connectStart = connectStart;
51 timing->connectEnd = connectEnd;
52 timing->sendStart = sendStart;
53 timing
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLResponse.cpp126 void WebURLResponse::setLoadTiming(const WebURLLoadTiming& timing) argument
128 RefPtr<ResourceLoadTiming> loadTiming = PassRefPtr<ResourceLoadTiming>(timing);
/external/chromium/webkit/glue/
H A Dweburlloader_impl.cc203 WebURLLoadTiming timing; local
204 timing.initialize();
205 timing.setRequestTime(timing_info.base_time.ToDoubleT());
206 timing.setProxyStart(timing_info.proxy_start);
207 timing.setProxyEnd(timing_info.proxy_end);
208 timing.setDNSStart(timing_info.dns_start);
209 timing.setDNSEnd(timing_info.dns_end);
210 timing.setConnectStart(timing_info.connect_start);
211 timing.setConnectEnd(timing_info.connect_end);
212 timing
[all...]
/external/ping/
H A Dping_common.c41 /* timing */
42 int timing; /* flag to do timing */ variable
126 fprintf(stderr, "ping: bad timing interval.\n");
133 fprintf(stderr, "ping: bad timing interval.\n");
138 fprintf(stderr, "ping: bad timing interval.\n");
660 if (timing && cc >= 8+sizeof(struct timeval)) {
725 if (timing) {
807 if (nreceived && timing) {
845 if (nreceived && timing) {
[all...]
/external/speex/libspeex/
H A Djitter.c84 int filled; /**< Number of entries occupied in "timing" and "counts"*/
86 spx_int32_t timing[MAX_TIMINGS]; /**< Sorted list of all timings ("latest" packets first) */ member in struct:TimingBuffer
96 /* Add the timing of a new packet to the TimingBuffer */
97 static void tb_add(struct TimingBuffer *tb, spx_int16_t timing) argument
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1])
107 /* Find where the timing info goes in the sorted list */
110 while (pos<tb->filled && timing >= tb->timing[pos])
123 SPEEX_MOVE(&tb->timing[po
335 update_timings(JitterBuffer *jitter, spx_int32_t timing) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorResourceAgent.cpp201 static PassRefPtr<InspectorObject> buildObjectForTiming(const ResourceLoadTiming& timing) argument
204 timingObject->setNumber("requestTime", timing.requestTime);
205 timingObject->setNumber("proxyStart", timing.proxyStart);
206 timingObject->setNumber("proxyEnd", timing.proxyEnd);
207 timingObject->setNumber("dnsStart", timing.dnsStart);
208 timingObject->setNumber("dnsEnd", timing.dnsEnd);
209 timingObject->setNumber("connectStart", timing.connectStart);
210 timingObject->setNumber("connectEnd", timing.connectEnd);
211 timingObject->setNumber("sslStart", timing.sslStart);
212 timingObject->setNumber("sslEnd", timing
[all...]
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.h235 DocumentLoadTiming* timing() { return &m_documentLoadTiming; } function in class:WebCore::DocumentLoader
H A DFrameLoader.cpp392 if (documentLoader && !documentLoader->timing()->unloadEventStart && !documentLoader->timing()->unloadEventEnd) {
393 DocumentLoadTiming* timing = documentLoader->timing(); local
394 ASSERT(timing->navigationStart);
395 m_frame->domWindow()->dispatchTimedEvent(unloadEvent, m_frame->domWindow()->document(), &timing->unloadEventStart, &timing->unloadEventEnd);
1934 // Check if the destination page is allowed to access the previous page's timing information.
1936 m_documentLoader->timing()->hasSameOriginAsPreviousDocument = securityOrigin->canRequest(m_previousUrl);
2531 ASSERT(!m_provisionalDocumentLoader->timing()
[all...]
/external/libpng/contrib/gregbook/
H A Drpng2-win.c135 #define INBUFSIZE 4096 /* with pseudo-timing on (1 sec delay/block), this
255 int timing = FALSE; local
396 } else if (!strncmp(*argv, "-timing", 2)) {
397 timing = TRUE;
432 "Usage: %s [-gamma exp] [-bgcolor bg | -bgpat pat] [-timing]\n"
446 " -timing\tenables delay for every block read, to simulate modem\n"
575 if (timing)
H A Drpng2-x.c158 #define INBUFSIZE 4096 /* with pseudo-timing on (1 sec delay/block), this
300 int timing = FALSE; local
422 } else if (!strncmp(*argv, "-timing", 2)) {
423 timing = TRUE;
475 " %*s [-usleep dur | -timing] [-pause] [-loop [sec]] file.png\n\n"
477 " %*s [-usleep dur | -timing] [-pause] file.png\n\n"
500 " -timing\tenables delay for every block read, to simulate modem\n"
620 if (timing)
/external/libxml2/
H A Dxmllint.c183 static int timing = 0; variable
404 * Internal timing routines to remove the necessity to have *
438 * startTimer: call where you want to start timing
447 * endTimer: call where you want to stop timing and to print out a
448 * message about the timing performed; format is a printf
507 * We don't have a gettimeofday or time.h, so we just don't do timing
520 * We cannot do anything because we don't have a timing function
1878 if ((timing) && (!repeat)) {
1888 if ((timing) && (!repeat)) {
1893 if ((timing)
[all...]
/external/ping6/
H A Dping6.c247 /* timing */
248 int timing; /* flag to do timing */ variable
481 errx(1, "illegal timing interval %s", optarg);
490 errx(1, "illegal timing interval %s", optarg);
742 timing = 1;
744 timing = 0;
751 /* suppress timing for node information query */
752 timing = 0;
1329 if (timing) {
[all...]
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/SwingUtil.class SwingUtil.java package proguard ...
/external/kernel-headers/original/linux/spi/
H A Dcpcap.h587 enum cpcap_adc_timing timing; member in struct:cpcap_adc_request
601 enum cpcap_adc_timing timing; member in struct:cpcap_adc_us_request
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.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 532 milliseconds