Searched refs:time (Results 26 - 50 of 3443) sorted by relevance

1234567891011>>

/external/lldb/test/pexpect-2.4/examples/
H A Dssh_tunnel.py18 import time namespace
36 time.sleep (0.1)
38 time.sleep (60) # Cygwin is slow to update process status.
48 time.sleep (1)
53 time.sleep (13)
55 print time.asctime(),
58 time.sleep (11)
62 time.sleep (7)
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java24 * This Timing ramps up linearly from 0 to 1 in a given repeated time interval.
36 * @param period the time period for a full cycle.
37 * @param phase the phase of the cycle, which is added to the actual time.
48 public double getTiming(long time) argument
51 return (double)((time + phase) % period) / (double)period;
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 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 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 DColorSprite.java51 public void paint(Graphics graphics, long time) argument
57 graphics.setColor(color.getColor(time));
60 sprite.paint(graphics, time);
H A DFontSprite.java51 public void paint(Graphics graphics, long time) argument
57 graphics.setFont(font.getFont(time));
60 sprite.paint(graphics, time);
/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
H A Dbackground.js6 Displays a notification with the current time. Requires "notifications"
11 var time = /(..)(:..)/.exec(new Date()); // The prettyprinted time.
12 var hour = time[1] % 12 || 12; // The prettyprinted hour.
13 var period = time[1] < 12 ? 'a.m.' : 'p.m.'; // The period of the day.
14 new Notification(hour + time[2] + ' ' + period, {
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayScreenplay.cpp15 SK_MEMBER(time, MSec)
H A DSkDisplayScreenplay.h18 SkMSec time; member in class:SkDisplayScreenplay
/external/skia/src/animator/
H A DSkDisplayScreenplay.cpp15 SK_MEMBER(time, MSec)
H A DSkDisplayScreenplay.h18 SkMSec time; member in class:SkDisplayScreenplay
/external/stlport/test/unit/
H A Depilog_test.cpp1 #include <time.h>
/external/chromium_org/cc/animation/
H A Dscrollbar_animation_controller_linear_fade_unittest.cc88 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
158 base::TimeTicks time; local
207 base::TimeTicks time; local
239 base::TimeTicks time; local
[all...]
H A Dscrollbar_animation_controller_thinning_unittest.cc84 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...]
/external/chromium_org/google_apis/drive/
H A Dtime_util.h19 // 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);
28 // Formats a base::Time as an RFC 3339 date/time (in localtime).
29 // If |time| is null, returns "null".
30 std::string FormatTimeAsStringLocaltime(const base::Time& time);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebTransformKeyframe.cpp32 WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<WebTransformOperations> value) argument
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/
H A Dmedia_optimization_unittest.cc71 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
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DTime.java35 ASN1Primitive time; field in class:Time
48 ASN1Primitive time)
50 if (!(time instanceof DERUTCTime)
51 && !(time instanceof DERGeneralizedTime))
56 this.time = time;
60 * Create a time object from a given date - if the year is in between 1950
77 time = new DERGeneralizedTime(d);
81 time = new DERUTCTime(d.substring(2));
123 if (time instanceo
47 Time( ASN1Primitive time) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java19 ASN1Primitive time; field in class:Time
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
37 this.time = time;
41 * creates a time object from a given date - if the date is between 1950
58 time = new DERGeneralizedTime(d);
62 time = new DERUTCTime(d.substring(2));
87 if (time instanceo
28 Time( ASN1Primitive time) argument
[all...]
/external/chromium_org/chrome/installer/tools/
H A Dsetup_timer.py5 """This script reports time spent by setup.exe in each install/update phase.
9 starts, but can also time remaining stages if launched half-way through.
24 import time namespace
51 start_time = time.clock()
65 time.sleep(0.01)
69 # Round elapsed time to 2 digits precision; anything beyond that would be
71 elapsed_time = round(time.clock() - start_time, 2)
74 time.strftime("%x %X", time.localtime()), current_stage,
76 timings.append({'stage': current_stage, 'time'
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationClock.cpp39 // FIXME: This is an approximation of time between frames, used when
50 void AnimationClock::updateTime(double time) argument
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) argument
77 m_time = time;
/external/chromium_org/third_party/webrtc/base/
H A Dtiming.cc17 #include <sys/time.h>
52 struct timeval time; local
53 gettimeofday(&time, NULL);
55 return (static_cast<double>(time.tv_sec) +
56 static_cast<double>(time.tv_usec) * 1.0e-6);
59 struct _timeb time;
60 _ftime(&time);
62 return (static_cast<double>(time.time) +
63 static_cast<double>(time
[all...]
/external/chromium_org/ui/events/gestures/
H A Dgesture_provider_aura_unittest.cc36 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...]
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_error_details.h8 #include "base/time/time.h"
15 // The time when this was created
16 base::Time time; member in struct:translate::TranslateErrorDetails

Completed in 8553 milliseconds

1234567891011>>