/dalvik/tests/023-many-interfaces/src/ |
Main.java | 3 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 4 ManyInterfaces.run(timing);
|
/external/webkit/Source/WebCore/page/ |
PerformanceTiming.cpp | 56 // 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 = documentLoadTiming() 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...] |
/external/proguard/src/proguard/gui/splash/ |
ConstantTiming.java | 24 * This Timing is constant over time. 28 public class ConstantTiming implements Timing 30 private final double timing; field in class:ConstantTiming 43 * @param timing the constant value of the timing. 45 public ConstantTiming(double timing) 47 this.timing = timing; 51 // Implementation for Timing. 55 return timing; [all...] |
LinearDouble.java | 24 * This VariableDouble varies linearly with respect to its Timing. 32 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) 45 this.timing = timing [all...] |
LinearInt.java | 24 * This VariableColor varies linearly with respect to its Timing. 32 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) 45 this.timing = timing [all...] |
TypeWriterString.java | 25 * Timing, as if it is being written on a typewriter. A cursor at the end 33 private final Timing timing; field in class:TypeWriterString 42 * @param timing the applied timing. 44 public TypeWriterString(String string, Timing timing) 47 this.timing = timing; 55 double t = timing.getTiming(time) [all...] |
SmoothTiming.java | 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval. 28 public class SmoothTiming implements Timing 36 * @param fromTime the time at which the timing starts ramping up from 0. 37 * @param toTime the time at which the timing stops ramping up at 1. 46 // Implementation for Timing. 61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); local 64 return timing * timing * (3.0 - 2.0 * timing);
|
LinearColor.java | 26 * This VariableColor varies linearly with respect to its Timing. 34 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) 50 this.timing = timing [all...] |
LinearTiming.java | 24 * This Timing ramps up linearly from 0 to 1 in a given time interval. 28 public class LinearTiming implements Timing 36 * @param fromTime the time at which the timing starts ramping up from 0. 37 * @param toTime the time at which the timing stops ramping up at 1. 46 // Implementation for Timing.
|
/dalvik/tests/055-enum-performance/ |
info.txt | 2 this test with the "--timing" option.
|
expected.txt | 12 Timing is acceptable.
|
/external/srtp/ |
timing | 0 # timing.plt
#
# gnuplot script file for plotting the output generated by srtp_driver -t
#
# David A. McGrew
# Cisco Systems, Inc.
#
set xrange [0:2500]
set term pict "Times-Roman" 9
#
# plot authentication-only data
#
set title "Authentication Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:2000]
set output "plot-auth.pict"
plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines
#
# plot encryption-only data
#
set title "Encryption Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set output "plot-enc.pict"
set yrange [0:1200]
plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines
#
# plot encryption and authentication data
#
set title "Encryption and Authentication"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:1000]
set output "plot-enc-auth.pict"
plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AES" with line
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ResourceTimingView.js | 34 this.element.addStyleClass("resource-timing-view"); 38 resource.addEventListener("timing changed", this._refresh, this); 44 if (!this._resource.timing) { 48 this._emptyMsgElement.textContent = WebInspector.UIString("This request has no detailed timing info."); 87 if (resource.timing.proxyStart !== -1) 88 addRow(WebInspector.UIString("Proxy"), "proxy", resource.timing.proxyStart, resource.timing.proxyEnd); 90 if (resource.timing.dnsStart !== -1) 91 addRow(WebInspector.UIString("DNS Lookup"), "dns", resource.timing.dnsStart, resource.timing.dnsEnd) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebPerformance.cpp | 73 return millisecondsToSeconds(m_private->timing()->navigationStart()); 78 return millisecondsToSeconds(m_private->timing()->unloadEventEnd()); 83 return millisecondsToSeconds(m_private->timing()->redirectStart()); 88 return millisecondsToSeconds(m_private->timing()->redirectEnd()); 98 return millisecondsToSeconds(m_private->timing()->fetchStart()); 103 return millisecondsToSeconds(m_private->timing()->domainLookupStart()); 108 return millisecondsToSeconds(m_private->timing()->domainLookupEnd()); 113 return millisecondsToSeconds(m_private->timing()->connectStart()); 118 return millisecondsToSeconds(m_private->timing()->connectEnd()); 123 return millisecondsToSeconds(m_private->timing()->requestStart()) [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
transition-timing-functions.html | 6 <title>Timing Functions for Transitions</title> 36 -webkit-transition-timing-function: ease; 40 -webkit-transition-timing-function: linear; 44 -webkit-transition-timing-function: ease-in; 48 -webkit-transition-timing-function: ease-out; 52 -webkit-transition-timing-function: ease-in-out; 56 -webkit-transition-timing-function: cubic-bezier(.42, .0, .58, 1.0) 60 -webkit-transition-timing-function: bananas; 79 <h1>Timing functions for transitions</h1> 81 described timing functions</p [all...] |
/dalvik/tests/053-wait-some/src/ |
Main.java | 13 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 14 doit(timing); 17 public static void doit(boolean timing) { 43 boolean showTime = timing; 45 if (! timing) {
|
/external/webkit/Source/WebCore/platform/network/ |
ResourceLoadTiming.h | 44 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->sendEnd = sendEnd [all...] |
/dalvik/tests/028-array-write/src/ |
Main.java | 8 static boolean timing = false; field in class:Main 14 if (! timing) { 60 if ((args.length >= 1) && args[0].equals("--timing")) { 61 timing = true;
|
/external/bison/lib/ |
timevar.c | 0 /* Timing variables for measuring compiler performance. 134 /* See timevar.h for an explanation of timing variables. */ 136 /* This macro evaluates to nonzero if timing variables are enabled. */ 139 /* A timing variable. */ 146 /* If this variable is timed independently of the timing stack, 150 /* The name of this timing variable. */ 153 /* Non-zero if this timing variable is running as a standalone 157 /* Non-zero if this timing variable was ever started or pushed onto 158 the timing stack. */ 162 /* An element on the timing stack. Elapsed time is attributed to th [all...] |
timevar.h | 0 /* Timing variables for measuring compiler performance. 24 /* Timing variables are used to measure elapsed time in various 29 Timing variables are defined using the DEFTIMEVAR macro in 31 to the timing variable in code, and a character string name. 33 Timing variables can be used in two ways: 35 - On the timing stack, using timevar_push and timevar_pop. 36 Timing variables may be pushed onto the stack; elapsed time is 37 attributed to the topmost timing variable on the stack. When 65 /* An enumeration of timing variable identifiers. Constructed from
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
timevar.h | 0 /* Timing variables for measuring compiler performance. 25 /* Timing variables are used to measure elapsed time in various 30 Timing variables are defined using the DEFTIMEVAR macro in 32 to the timing variable in code, and a character string name. 34 Timing variables can be used in two ways: 36 - On the timing stack, using timevar_push and timevar_pop. 37 Timing variables may be pushed onto the stack; elapsed time is 38 attributed to the topmost timing variable on the stack. When 69 /* An enumeration of timing variable identifiers. Constructed from
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
timevar.h | 0 /* Timing variables for measuring compiler performance. 25 /* Timing variables are used to measure elapsed time in various 30 Timing variables are defined using the DEFTIMEVAR macro in 32 to the timing variable in code, and a character string name. 34 Timing variables can be used in two ways: 36 - On the timing stack, using timevar_push and timevar_pop. 37 Timing variables may be pushed onto the stack; elapsed time is 38 attributed to the topmost timing variable on the stack. When 69 /* An enumeration of timing variable identifiers. Constructed from
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
timevar.h | 0 /* Timing variables for measuring compiler performance. 25 /* Timing variables are used to measure elapsed time in various 30 Timing variables are defined using the DEFTIMEVAR macro in 32 to the timing variable in code, and a character string name. 34 Timing variables can be used in two ways: 36 - On the timing stack, using timevar_push and timevar_pop. 37 Timing variables may be pushed onto the stack; elapsed time is 38 attributed to the topmost timing variable on the stack. When 69 /* An enumeration of timing variable identifiers. Constructed from
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
timevar.h | 0 /* Timing variables for measuring compiler performance. 25 /* Timing variables are used to measure elapsed time in various 30 Timing variables are defined using the DEFTIMEVAR macro in 32 to the timing variable in code, and a character string name. 34 Timing variables can be used in two ways: 36 - On the timing stack, using timevar_push and timevar_pop. 37 Timing variables may be pushed onto the stack; elapsed time is 38 attributed to the topmost timing variable on the stack. When 69 /* An enumeration of timing variable identifiers. Constructed from
|
/external/dropbear/libtomcrypt/demos/ |
timing.c | 40 /* $Source: /cvs/libtom/libtomcrypt/demos/timing.c,v $ */
|