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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/public/platform/
WebGestureCurve.h 33 // WebGestureCurve defines the animation parameters as a function of time
41 virtual bool apply(double time, WebGestureCurveTarget*) = 0;
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayScreenplay.cpp 15 SK_MEMBER(time, MSec)
  /external/proguard/src/proguard/gui/splash/
Sprite.java 27 * 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);
VariableColor.java 26 * This interface represents a Color that varies with time.
33 * Returns the Color for the given time.
35 public Color getColor(long time);
VariableFont.java 26 * This interface represents a Font that varies with time.
33 * Returns the Font for the given time.
35 public Font getFont(long time);
ColorSprite.java 51 public void paint(Graphics graphics, long time)
57 graphics.setColor(color.getColor(time));
60 sprite.paint(graphics, time);
FontSprite.java 51 public void paint(Graphics graphics, long time)
57 graphics.setFont(font.getFont(time));
60 sprite.paint(graphics, time);
  /external/skia/src/animator/
SkDisplayScreenplay.cpp 15 SK_MEMBER(time, MSec)
  /external/stlport/test/unit/
epilog_test.cpp 1 #include <time.h>
  /ndk/tests/device/test-gnustl-full/unit/
epilog_test.cpp 1 #include <time.h>
  /ndk/tests/device/test-stlport/unit/
epilog_test.cpp 1 #include <time.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/net/
ppp_defs.h 5 #include <time.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/net/
ppp_defs.h 5 #include <time.h>
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_linear_fade_unittest.cc 88 base::TimeTicks time; local
89 time += base::TimeDelta::FromSeconds(100);
90 scrollbar_controller_->Animate(time);
96 time += base::TimeDelta::FromSeconds(100);
97 scrollbar_controller_->Animate(time);
104 base::TimeTicks time; local
105 time += base::TimeDelta::FromSeconds(1);
113 time += base::TimeDelta::FromSeconds(100);
114 scrollbar_controller_->Animate(time);
119 time += base::TimeDelta::FromSeconds(2)
158 base::TimeTicks time; local
207 base::TimeTicks time; local
239 base::TimeTicks time; local
    [all...]
scrollbar_animation_controller_thinning_unittest.cc 84 base::TimeTicks time; local
85 time += base::TimeDelta::FromSeconds(1);
93 time += base::TimeDelta::FromSeconds(1);
94 scrollbar_controller_->Animate(time);
103 time += base::TimeDelta::FromSeconds(2);
104 scrollbar_controller_->Animate(time);
108 time += base::TimeDelta::FromSeconds(1);
109 scrollbar_controller_->Animate(time);
113 time += base::TimeDelta::FromSeconds(1);
114 scrollbar_controller_->Animate(time);
127 base::TimeTicks time; local
153 base::TimeTicks time; local
209 base::TimeTicks time; local
266 base::TimeTicks time; local
    [all...]
  /dalvik/dx/tests/089-dex-define-object/
Object.java 45 public final void wait(long time) {
46 wait(time, 0);
49 public final native void wait(long time, int frac);
  /external/chromium_org/google_apis/drive/
time_util.h 13 class Time;
19 // Parses an RFC 3339 date/time into a base::Time, returning true on success.
20 // The time string must be in the format "yyyy-mm-ddThh:mm:ss.dddTZ" (TZ is
22 bool GetTimeFromString(const base::StringPiece& raw_value, base::Time* time);
24 // Formats a base::Time as an RFC 3339 date/time (in UTC).
25 // If |time| is null, returns "null".
26 std::string FormatTimeAsString(const base::Time& time)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebTransformKeyframe.cpp 32 WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<WebTransformOperations> value)
33 : m_time(time)
43 double WebTransformKeyframe::time() const function in class:blink::WebTransformKeyframe
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
media_optimization_unittest.cc 71 for (int time = 0; time < 2000; time += frame_time_ms_) {
83 for (int time = 0; time < 2000; time += frame_time_ms_) {
97 for (int time = 0; time < 2000; time += frame_time_ms_) {
110 for (int time = 0; time < 2000; time += frame_time_ms_)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Time.java 20 * Time ::= CHOICE {
31 public class Time
35 ASN1Primitive time; field in class:Time
37 public static Time getInstance(
47 public Time(
48 ASN1Primitive time)
50 if (!(time instanceof DERUTCTime)
51 && !(time instanceof DERGeneralizedTime))
53 throw new IllegalArgumentException("unknown object passed to Time");
56 this.time = time;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Time.java 15 public class Time
19 ASN1Primitive time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationClock.cpp 39 // FIXME: This is an approximation of time between frames, used when
50 void AnimationClock::updateTime(double time)
52 if (time > m_time)
53 m_time = time;
62 // Advance to the first estimated frame after the current time.
75 void AnimationClock::resetTimeForTesting(double time)
77 m_time = time;
  /external/chromium_org/ui/events/gestures/
gesture_provider_aura_unittest.cc 36 base::TimeDelta time = ui::EventTimeForNow(); local
37 TouchEvent press1(ET_TOUCH_PRESSED, gfx::PointF(10, 10), 0, time);
40 time += base::TimeDelta::FromMilliseconds(10);
41 TouchEvent press2(ET_TOUCH_PRESSED, gfx::PointF(30, 40), 0, time);
47 base::TimeDelta time = ui::EventTimeForNow(); local
48 TouchEvent press1(ET_TOUCH_PRESSED, gfx::PointF(10, 10), 0, time);
51 time += base::TimeDelta::FromMilliseconds(10);
52 TouchEvent release1(ET_TOUCH_RELEASED, gfx::PointF(30, 40), 0, time);
55 time += base::TimeDelta::FromMilliseconds(10);
56 TouchEvent release2(ET_TOUCH_RELEASED, gfx::PointF(30, 45), 0, time);
72 base::TimeDelta time = ui::EventTimeForNow(); local
    [all...]
  /bionic/libc/private/
bionic_time.h 31 #include <time.h>
  /external/chromium_org/components/translate/core/browser/
translate_error_details.h 8 #include "base/time/time.h"
15 // The time when this was created
16 base::Time time; member in struct:translate::TranslateErrorDetails

Completed in 558 milliseconds

1 2 3 4 56 7 8 91011>>