HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 26 - 50 of 5571) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/
dyntick.h 15 #include <asm/mach/time.h>
  /external/chromium_org/cc/animation/
animation_delegate.h 12 virtual void NotifyAnimationStarted(double time) = 0;
13 virtual void NotifyAnimationFinished(double time) = 0;
  /external/oprofile/libutil/
op_get_time.c 3 * Get current time as a string
14 #include <time.h>
18 time_t t = time(NULL);
  /external/chromium_org/third_party/libjingle/source/talk/base/
ratelimiter.cc 32 bool RateLimiter::CanUse(size_t desired, double time) {
33 return ((time > period_end_ && desired <= max_per_period_) ||
37 void RateLimiter::Use(size_t used, double time) {
38 if (time > period_end_) {
39 period_start_ = time;
40 period_end_ = time + period_length_;
  /external/chromium/base/i18n/
time_formatting.h 5 // Basic time formatting methods. These methods use the current locale
6 // formatting for displaying the time.
16 class Time;
24 // Returns the time of day, e.g., "3:07 PM".
25 string16 TimeFormatTimeOfDay(const Time& time);
27 // Returns the time of day in the specified hour clock type. e.g.
30 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time,
34 string16 TimeFormatShortDate(const Time& time)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
InputEvent.java 42 protected long time; field in class:InputEvent
48 * The time when the event occurred. This is relative to
51 * @return time when the event occured
54 return time;
58 * Set the time when the event occurred.
60 * @param time time when the event occurred.
62 public void setTime(long time){
63 this.time = time;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
RandomNumberSeed.h 31 #include <time.h>
34 #include <sys/time.h>
52 timeval time;
53 gettimeofday(&time, 0);
54 srandom(static_cast<unsigned>(time.tv_usec * getpid()));
56 srand(static_cast<unsigned>(time(0)));
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_Time.h 20 * @brief Time macros
21 * @note This file defines time type and associated macros which must
22 * be used to manipulate time.
38 /** This macro sets the unknown time value */
42 /** This macro converts a time with a time scale to millisecond.
44 #define M4OSA_TIME_TO_MS(result, time, timescale)\
45 { result = (1000*(M4OSA_Double)time)/((M4OSA_Double)timescale); }
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayScreenplay.h 18 SkMSec time; member in class:SkDisplayScreenplay
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
SeekableStream.java 13 public void setTime(float time);
  /external/proguard/src/proguard/gui/splash/
LinearTiming.java 24 * This Timing ramps up linearly from 0 to 1 in a given time interval.
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.
48 public double getTiming(long time)
51 return time <= fromTime ? 0.0 :
52 time >= toTime ? 1.0 :
53 (double)(time - fromTime) / (double)(toTime - fromTime);
SmoothTiming.java 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
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.
48 public double getTiming(long time)
50 if (time <= fromTime)
55 if (time >= toTime)
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
Timing.java 24 * 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);

Completed in 745 milliseconds

12 3 4 5 6 7 8 91011>>