Searched defs:time (Results 26 - 50 of 1391) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/base/
H A Dratelimiter.cc15 bool RateLimiter::CanUse(size_t desired, double time) { argument
16 return ((time > period_end_ && desired <= max_per_period_) ||
20 void RateLimiter::Use(size_t used, double time) { argument
21 if (time > period_end_) {
22 period_start_ = time;
23 period_end_ = time + period_length_;
/external/chromium_org/tools/gyp/test/actions/src/subdir1/
H A Dcounter.py8 import time namespace
40 # Sleep so the next run changes the file time sufficiently to make the build
42 time.sleep(1)
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-restat-importlib.py16 import time namespace
30 # Delay briefly so that there's time for this touch not to have the
/external/chromium_org/tools/telemetry/examples/
H A Dtelemetry_perf_test.py8 import time namespace
26 # Measure round-trip-time for evaluate
29 start = time.time()
31 times.append(time.time() - start)
40 "Round trip time (seconds)",
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dplatform_backend_unittest.py6 import time namespace
31 time.sleep(0.001)
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Drepaint_continuously.py5 import time namespace
31 # fired. Use a hard time-out after 60 seconds (or self.seconds).
32 time.sleep(self._seconds)
/external/clang/utils/
H A DCaptureCmd22 import time namespace
54 entry = (time.time(), envKey, cwdKey, argvKey)
/external/deqp/android/scripts/
H A Dlaunch.py5 import time namespace
/external/lldb/test/functionalities/command_script/
H A Dmysto.py4 import time namespace
H A Dwelcome.py21 import time namespace
22 time.sleep(1)
24 time.sleep(1)
/external/lldb/test/pexpect-2.4/examples/
H A Dbd_client.py7 import sys, time, select namespace
24 time.sleep(1)
/external/proguard/src/proguard/gui/splash/
H A DConstantColor.java26 * This VariableColor is constant over time.
47 public Color getColor(long time) argument
H A DConstantDouble.java24 * This VariableDouble is constant over time.
45 public double getDouble(long time) argument
H A DConstantFont.java26 * This VariableFont is constant over time.
42 public Font getFont(long time) argument
H A DConstantInt.java24 * This VariableInt is constant over time.
45 public int getInt(long time) argument
H A DConstantString.java24 * This VariableString is constant over time.
45 public String getString(long time) argument
H A DConstantTiming.java24 * This Timing is constant over time.
53 public double getTiming(long time) argument
H A DSprite.java27 * as a function of time.
37 * @param time the time since the start of the animation, expressed in
40 public void paint(Graphics graphics, long time); argument
H A DTiming.java24 * This interface maps a time to a normalized timing between 0 and 1.
31 * Returns the timing for the given time.
33 public double getTiming(long time); argument
H A DVariableColor.java26 * This interface represents a Color that varies with time.
33 * Returns the Color for the given time.
35 public Color getColor(long time); argument
H A DVariableDouble.java24 * This interface represents a double that varies with time.
31 * Returns the double for the given time.
33 public double getDouble(long time); argument
H A DVariableFont.java26 * This interface represents a Font that varies with time.
33 * Returns the Font for the given time.
35 public Font getFont(long time); argument
H A DVariableInt.java24 * This interface represents an integer that varies with time.
31 * Returns the integer for the given time.
33 public int getInt(long time); argument
H A DVariableString.java24 * This interface represents a String that varies with time.
31 * Returns the String for the given time.
33 public String getString(long time); argument
/external/vixl/tools/
H A Dprinter.py31 import time namespace
58 # [time| progress|+ passed|- failed] Name
63 minutes, seconds = divmod(time.time() - start_time, 60)

Completed in 372 milliseconds

1234567891011>>