/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...] |
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);
|
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...] |
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...] |
/art/test/023-many-interfaces/src/ |
Main.java | 3 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 4 ManyInterfaces.run(timing);
|
/external/webrtc/webrtc/modules/video_coding/ |
timing_unittest.cc | 19 #include "webrtc/modules/video_coding/timing.h" 29 VCMTiming timing(&clock); 35 timing.Reset(); 37 timing.UpdateCurrentDelay(timeStamp); 39 timing.Reset(); 41 timing.IncomingTimestamp(timeStamp, clock.TimeInMilliseconds()); 43 timing.SetJitterDelay(jitterDelayMs); 44 timing.UpdateCurrentDelay(timeStamp); 45 timing.set_render_delay(0); 46 waitTime = timing.MaxWaitingTime [all...] |
receiver.h | 18 #include "webrtc/modules/video_coding/timing.h" 30 VCMReceiver(VCMTiming* timing, Clock* clock, EventFactory* event_factory); 36 VCMReceiver(VCMTiming* timing,
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
timing-utilities.js | 21 var timing = { 33 timing.duration = timingInput; 37 if (typeof timing[property] == 'number' || property == 'duration') { 51 timing[property] = timingInput[property]; 55 return timing; 59 var timing = makeTiming(timingInput, forGroup); 60 timing.easing = toTimingFunction(timing.easing); 61 return timing; 132 function calculateActiveDuration(timing) { [all...] |
animation-node.js | 17 scope.AnimationNode = function(timing) { 19 var activeDuration = shared.calculateActiveDuration(timing); 21 return shared.calculateTimeFraction(activeDuration, localTime, timing); 23 animationNode._totalDuration = timing.delay + activeDuration + timing.endDelay; 25 var phase = shared.calculatePhase(activeDuration, localTime, timing);
|
effect-callback.js | 22 var timing = player.source.timing; 24 timing = shared.normalizeTimingInput(timing); 28 t = shared.calculateTimeFraction(shared.calculateActiveDuration(timing), t, timing);
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
HdmiLogger.java | 112 Pair<Long, Integer> timing = cache.get(logMessage); local 113 if (shouldLogNow(timing, curTime)) { 114 String log = buildMessage(logMessage, timing); 123 private static String buildMessage(String message, @Nullable Pair<Long, Integer> timing) { 125 .append("[").append(timing == null ? 1 : timing.second).append("]:") 131 Pair<Long, Integer> timing = cache.get(message); local 132 if (timing != null) { 133 cache.put(message, new Pair<>(timing.first, timing.second + 1)) [all...] |
/art/test/053-wait-some/src/ |
Main.java | 27 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 28 doit(timing); 31 public static void doit(boolean timing) { 57 boolean showTime = timing; 59 if (! timing) {
|
/art/test/133-static-invoke-super/src/ |
Main.java | 25 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 26 run(timing); 39 static public void run(boolean timing) { 53 System.out.println("Timing is acceptable."); 56 timing = true; 58 if (timing) {
|
/external/webrtc/talk/media/base/ |
rtpdataengine.h | 37 #include "webrtc/base/timing.h" 54 void SetTiming(rtc::Timing* timing) { 55 timing_.reset(timing); 60 rtc::scoped_ptr<rtc::Timing> timing_; 87 // Timing* Used for the RtpClock 88 explicit RtpDataMediaChannel(rtc::Timing* timing); 89 // Sets Timing == NULL, so you'll need to call set_timer() before 94 void set_timing(rtc::Timing* timing) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
Timer.java | 19 private boolean timing = false; field in class:Timer 28 timing = true; 34 if (timing) { 36 timing = false; 94 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Timer.java | 18 private boolean timing = false; field in class:Timer 27 timing = true; 33 if (timing) { 35 timing = false; 93 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
|
/art/test/028-array-write/src/ |
Main.java | 22 static boolean timing = false; field in class:Main 28 if (! timing) { 80 if ((args.length >= 1) && args[0].equals("--timing")) { 81 timing = true;
|
/external/autotest/scheduler/shard/ |
simple_heartbeat_client.py | 102 timing, packet = self.get_heartbeat_packet( 104 print 'Time to perform heartbeat %s' % timing 105 timing, response = self.deserialize_heartbeat(packet) 106 print 'Time to deserialize hearbeat %s' % timing
|
/hardware/bsp/intel/peripheral/libupm/src/hcsr04/ |
hcsr04.cxx | 84 HCSR04::timing() { function in class:HCSR04 115 double _timing = timing();
|
hcsr04.h | 107 double timing();
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/ |
network_quiescence.js | 23 // Set the Resource Timing interface functions that will be used below 59 * This method uses the Resource Timing interface, which is described at 60 * http://www.w3.org/TR/resource-timing/. It determines whether the time 86 // objects are all in milliseconds since performance.timing.navigationStart, 88 var timing = real_performance.timing; 89 var loadTime = timing.loadEventEnd - timing.navigationStart; 92 // If there have been no resource timing entries, or the last entry was
|
/hardware/intel/img/hwcomposer/merrifield/common/observers/ |
MultiDisplayObserver.cpp | 60 status_t MultiDisplayCallback::setHdmiTiming(const MDSHdmiTiming& timing) 62 mDispObserver->setHdmiTiming(timing); 311 status_t MultiDisplayObserver::setHdmiTiming(const MDSHdmiTiming& timing) 314 mode.hdisplay = timing.width; 315 mode.vdisplay = timing.height; 316 mode.vrefresh = timing.refresh; 317 mode.flags = timing.flags; 318 ITRACE("timing to set: %dx%d@%dHz", timing.width, timing.height, timing.refresh) [all...] |
/art/test/055-enum-performance/src/ |
Main.java | 28 boolean timing = (args.length >= 1) && args[0].equals("--timing"); 29 run(timing); 32 static public void run(boolean timing) { 57 System.out.println("Timing is acceptable."); 60 timing = true; 63 if (timing) {
|