HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 151 - 175 of 6477) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollOffsetAnimationCurve.h 18 virtual WebFloatPoint getValue(double time) const = 0;
WebFilterKeyframe.h 47 BLINK_PLATFORM_EXPORT WebFilterKeyframe(double time, PassOwnPtr<WebFilterOperations>);
52 double time() const { return m_time; } function in class:blink::WebFilterKeyframe
WebTransformKeyframe.h 40 BLINK_PLATFORM_EXPORT WebTransformKeyframe(double time, WTF::PassOwnPtr<WebTransformOperations> value);
45 BLINK_PLATFORM_EXPORT double time() const;
  /external/chromium_org/third_party/skia/tools/timer/
SysTimer_posix.h 10 #include <time.h>
  /external/fio/lib/
getrusage.h 4 #include <sys/time.h>
  /external/proguard/src/proguard/gui/splash/
ConstantDouble.java 24 * This VariableDouble is constant over time.
45 public double getDouble(long time)
ConstantInt.java 24 * This VariableInt is constant over time.
45 public int getInt(long time)
ConstantTiming.java 24 * This Timing is constant over time.
53 public double getTiming(long time)
TimeSwitchSprite.java 26 * This Sprite displays another Sprite in a given time interval.
27 * The time of the encapsulated Sprite is shifted by the start time.
40 * a given time.
41 * @param onTime the start time.
52 * time interval.
53 * @param onTime the start time.
54 * @param offTime the stop time.
67 public void paint(Graphics graphics, long time)
69 if (time >= onTime && (offTime <= 0 || time <= offTime)
    [all...]
  /external/skia/tools/timer/
SysTimer_posix.h 10 #include <time.h>
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
DateUtilTests.java 22 import android.text.format.Time;
34 Time time = new Time(); local
37 assertEquals(0, DateUtils.getDayDifference(time, date1, date2));
38 assertEquals(0, DateUtils.getDayDifference(time, date2, date1));
45 Time time = new Time(); local
48 assertEquals(1, DateUtils.getDayDifference(time, date1, date2))
56 Time time = new Time(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 4 import android.text.format.Time;
16 @Implements(Time.class)
19 private Time time; field in class:ShadowTime
34 time.timezone = timezone;
35 time.year = 1970;
36 time.monthDay = 1;
37 time.isDst = -1;
40 public void __constructor__(Time other) {
45 public void set(Time other)
    [all...]
  /external/chromium_org/third_party/skia/tools/
DumpRecord.cpp 47 void print(const T& command, double time) {
48 this->printNameAndTime(command, time);
51 void print(const SkRecords::Restore& command, double time) {
53 this->printNameAndTime(command, time);
56 void print(const SkRecords::Save& command, double time) {
57 this->printNameAndTime(command, time);
61 void print(const SkRecords::SaveLayer& command, double time) {
62 this->printNameAndTime(command, time);
68 void printNameAndTime(const T& command, double time) {
70 printf("%6.1f ", time * 1000)
    [all...]
  /external/skia/tools/
DumpRecord.cpp 49 void print(const T& command, double time) {
50 this->printNameAndTime(command, time);
53 void print(const SkRecords::Restore& command, double time) {
55 this->printNameAndTime(command, time);
58 void print(const SkRecords::Save& command, double time) {
59 this->printNameAndTime(command, time);
63 void print(const SkRecords::SaveLayer& command, double time) {
64 this->printNameAndTime(command, time);
70 void printNameAndTime(const T& command, double time) {
72 printf("%6.1f ", time * 1000)
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 42 * NSPR date and time functions
65 * Unit tests are in base/time/pr_time_unittest.cc.
83 #include <time.h>
87 static void localtime_r(const time_t* secs, struct tm* time) {
88 (void) localtime_s(time, secs);
109 // Create the system struct representing our exploded time.
124 NOTREACHED() << "Unable to convert time";
134 // Adjust for time zone and dst. Convert from seconds to microseconds.
141 // Create the system struct representing our exploded time.
173 // If timegm returned -1. Since we don't pass it a time zone, the onl
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
time.c 1 /* $OpenBSD: time.c,v 1.5 2005/08/08 08:05:34 espie Exp $ */
32 #include <sys/time.h>
35 time(time_t *t) function
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
44 * @param time new time to display - in milliseconds
46 private static void setTime(long time) {
50 if (time < 0) {
51 time = -time;
54 long seconds = time / 1000;
55 long hundreds = (time - seconds * 1000) / 10
    [all...]
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
44 * @param time new time to display - in milliseconds
46 private static void setTime(long time) {
50 if (time < 0) {
51 time = -time;
54 long seconds = time / 1000;
55 long hundreds = (time - seconds * 1000) / 10
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyUtils.java 34 * Return calendar time in pretty string.
36 public static synchronized String toCalendarTime(long time) {
37 DATE.setTime(time);
  /development/samples/browseable/Timer/Wearable/src/com.example.android.wearable.timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
44 * @param time new time to display - in milliseconds
46 private static void setTime(long time) {
50 if (time < 0) {
51 time = -time;
54 long seconds = time / 1000;
55 long hundreds = (time - seconds * 1000) / 10
    [all...]
  /external/chromium_org/base/
value_conversions.h 24 BASE_EXPORT StringValue* CreateTimeDeltaValue(const TimeDelta& time);
25 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time);
  /external/chromium_org/chrome/browser/history/android/
android_time.h 8 #include "base/time/time.h"
12 // Android's system time is the milliseconds since January 1, 1970 00:00:00 UTC,
13 // the below 2 methods are used convert between base::Time and the milliseconds
15 inline base::Time FromDatabaseTime(int64 milliseconds) {
17 base::Time::UnixEpoch();
20 inline int64 ToDatabaseTime(const base::Time& time) {
21 return (time - base::Time::UnixEpoch()).InMilliseconds()
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
select.h 5 #include <sys/time.h>
7 #include <time.h>
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParamTimeline.h 46 void setValueAtTime(float value, double time, ExceptionState&);
47 void linearRampToValueAtTime(float value, double time, ExceptionState&);
48 void exponentialRampToValueAtTime(float value, double time, ExceptionState&);
49 void setTargetAtTime(float target, double time, double timeConstant, ExceptionState&);
50 void setValueCurveAtTime(Float32Array* curve, double time, double duration, ExceptionState&);
57 // Given the time range, calculates parameter values into the values buffer
78 ParamEvent(Type type, float value, double time, double timeConstant, double duration, PassRefPtr<Float32Array> curve)
81 , m_time(time)
90 double time() const { return m_time; } function in class:blink::AudioParamTimeline::ParamEvent
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
random_utils.cpp 8 #include <time.h>
16 srand(time(NULL));

Completed in 667 milliseconds

1 2 3 4 5 67 8 91011>>