Searched refs:time (Results 76 - 100 of 1983) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/gui/splash/
H A DVariableSizeFont.java53 public Font getFont(long time) argument
55 float s = (float)size.getDouble(time);
H A DClipSprite.java59 public void paint(Graphics graphics, long time) argument
62 Color outsideColor = outsideClipColor.getColor(time);
70 Color insideColor = insideClipColor.getColor(time);
72 sprite.paint(g, time);
77 clipSprite.paint(g, time);
82 sprite.paint(g, time);
H A DBufferedSprite.java106 public void paint(Graphics graphics, long time) argument
108 if (time != cachedTime)
132 sprite.paint(bufferGraphics, time);
136 cachedTime = time;
141 bufferX + x.getInt(time),
142 bufferY + y.getInt(time),
/external/stlport/stlport/
H A Dtime.h26 # pragma message("eMbedded Visual C++ 3 doesn't have a time.h header; STLport won't include native time.h here")
30 # include_next <time.h>
32 # include _STLP_NATIVE_C_HEADER(time.h)
/external/webkit/Source/WebKit/chromium/public/
H A DWebAnimationController.h48 double time) = 0;
51 double time) = 0;
/external/skia/src/images/
H A DSkMovie.cpp12 // We should never see this in normal operation since our time values are
53 bool SkMovie::setTime(SkMSec time) argument
56 if (time > dur)
57 time = dur;
60 if (time != fCurrTime)
62 fCurrTime = time;
63 changed = this->onSetTime(time);
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_server_base.py34 import time namespace
50 start_time = time.time()
51 while time.time() - start_time < 20:
55 time.sleep(1)
H A Dtest_files.py37 import time namespace
77 gather_start_time = time.time()
95 gather_time = time.time() - gather_start_time
/external/blktrace/btt/
H A Dtrace_complete.c38 __out(ofp, iop->t.time, IOP_Q, iop->t.sector, t_sec(&iop->t), 0);
60 update_cregion(&all_regions, c_iop->t.time);
61 update_cregion(&c_iop->dip->regions, c_iop->t.time);
63 update_cregion(&c_iop->pip->regions, c_iop->t.time);
64 aqd_complete(c_iop->dip->aqd_handle, BIT_TIME(c_iop->t.time));
69 __u64 q2c = tdelta(q_iop->t.time, c_iop->t.time);
74 latency_q2c(q_iop->dip, q_iop->t.time, q2c);
77 __u64 d2c = tdelta(q_iop->d_time, c_iop->t.time);
80 latency_d2c(q_iop->dip, c_iop->t.time, d2
[all...]
H A Dtrace_im.c31 q_iop->g_time = g_iop->t.time;
32 update_q2g(q_iop, tdelta(q_iop->t.time, g_iop->t.time));
34 update_s2g(q_iop, tdelta(q_iop->s_time, g_iop->t.time));
43 q_iop->s_time = s_iop->t.time;
51 q_iop->i_time = i_iop->t.time;
53 update_g2i(q_iop, tdelta(q_iop->g_time, i_iop->t.time));
65 q_iop->m_time = m_iop->t.time;
66 update_q2m(q_iop, tdelta(q_iop->t.time, m_iop->t.time));
[all...]
H A Dtrace_queue.c26 update_qregion(&all_regions, q_iop->t.time);
30 update_lq(&last_q, &all_avgs.q2q_dm, q_iop->t.time);
33 update_lq(&last_q, &all_avgs.q2q, q_iop->t.time);
H A Dtrace.c25 time_t now = time(NULL);
28 iostat_check_time(iop->t.time);
70 (int)SECONDS(iop->t.time),
71 (unsigned long)NANO_SECONDS(iop->t.time), msg);
94 if (BIT_TIME(iop->t.time) < t_astart) {
97 } else if (BIT_TIME(iop->t.time) > t_aend) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERGeneralizedTime.java14 * Generalized time object.
19 private byte[] time; field in class:DERGeneralizedTime
22 * return a generalized time from the passed in object
36 return new ASN1GeneralizedTime(((DERGeneralizedTime)obj).time);
69 * for local time, or Z+-HHMM on the end, for difference between local
70 * time and UTC time. The fractional second amount f must consist of at
73 * @param time the time string.
77 String time)
76 DERGeneralizedTime( String time) argument
93 DERGeneralizedTime( Date time) argument
197 convert(int time) argument
[all...]
/external/v8/src/
H A Ddate.js63 function UTC(time) {
64 if (NUMBER_IS_NAN(time)) return time;
67 return %DateToUTC(time);
115 function MakeDate(day, time) {
116 var time = day * msPerDay + time;
117 // Some of our runtime funtions for computing UTC(time) rely on
119 // is no way that the time can be within range even after UTC
122 if ($abs(time) > MAX_TIME_BEFORE_UT
[all...]
/external/ipsec-tools/src/racoon/
H A Dthrottle.c40 # include <sys/time.h>
41 # include <time.h>
44 # include <sys/time.h>
46 # include <time.h>
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
104 now = time(NULL);
125 * give no penalty even on error: this is the first time
133 return (time(NULL)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dworker.py33 import time namespace
96 start_time = time.time()
103 elapsed_time = time.time() - start_time
114 start = time.time()
119 elapsed_time = time.time() - start
/external/jmonkeyengine/engine/src/test/jme3test/material/
H A DTestColoredTexture.java44 private float time = 0; field in class:TestColoredTexture
71 time += tpf;
72 if (time > 1f){
73 time -= 1f;
78 currentColor.interpolate(prevColor, nextColor, time);
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestThroughput.java67 long time = System.currentTimeMillis();
68 //System.out.println( "total:" + total + " counter:" + counter + " lastTime:" + lastTime + " time:" + time );
70 lastTime = time;
71 } else if (time - lastTime > 1000) {
72 long delta = time - lastTime;
77 lastTime = time;
/external/netperf/
H A Dhist.h2 # include <sys/time.h>
3 # include <time.h>
6 # include <sys/time.h>
8 # include <time.h>
14 Given a time difference in microseconds, increment one of 61
27 This will allow any time to be recorded to within an accuracy of
29 distribution of a large number of time differences (e.g.
39 #include <sys/time.h>
74 HIST_add - add a time difference to a histogram. Time should be in
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dfile_lock.py32 import time namespace
63 start_time = time.time()
69 if time.time() - start_time > self._max_wait_time_sec:
/external/webkit/Source/WebCore/inspector/front-end/
H A DNetworkManager.js123 requestWillBeSent: function(identifier, frameId, loaderId, documentURL, request, time, stackTrace, redirectResponse)
130 this.responseReceived(identifier, time, "Other", redirectResponse);
131 resource = this._appendRedirect(identifier, time, request.url);
135 resource.startTime = time;
150 responseReceived: function(identifier, time, resourceType, response)
160 resource.responseReceivedTime = time;
168 domContentEventFired: function(time)
171 WebInspector.panels.network.mainResourceDOMContentTime = time;
174 loadEventFired: function(time)
177 WebInspector.panels.network.mainResourceLoadTime = time;
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObject.java121 final TimeSystem time = sSystemRegistry.timeSystem;
122 final float gameTime = time.getGameTime();
124 Utils.close(mLastTouchedFloorTime, time.getGameTime(), COLLISION_SURFACE_DECAY_TIME);
129 final TimeSystem time = sSystemRegistry.timeSystem;
130 final float gameTime = time.getGameTime();
132 Utils.close(mLastTouchedCeilingTime, time.getGameTime(), COLLISION_SURFACE_DECAY_TIME);
137 final TimeSystem time = sSystemRegistry.timeSystem;
138 final float gameTime = time.getGameTime();
140 Utils.close(mLastTouchedLeftWallTime, time.getGameTime(), COLLISION_SURFACE_DECAY_TIME);
145 final TimeSystem time
[all...]
/external/skia/src/ports/
H A DSkTime_Unix.cpp12 #include <sys/time.h>
13 #include <time.h>
20 time(&m_time);
/external/valgrind/main/none/tests/s390x/
H A Dstcke.c9 unsigned long long time; member in struct:stcke::reader
46 unsigned long c = clockticks_in_msec(end.reader.time,
47 start.reader.time);
/external/icu4c/i18n/unicode/
H A Dsimpletz.h47 * that represents a time zone for use with a Gregorian calendar. This
50 * When specifying daylight-savings-time begin and end dates, use a negative value for
66 * midnight, to specify a rule transition time. Most rules
67 * transition at a local wall time, that is, according to the
68 * current time in effect, either standard, or DST. However, some
69 * rules transition at local standard time, and some at a specific
70 * UTC time. Although it might seem that all times could be
71 * converted to wall time, thus eliminating the need for this
106 * @return True if the given time zone is equal to this time zon
883 setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) argument
889 setStartRule(int32_t month, int32_t dayOfMonth, int32_t time, UErrorCode& status) argument
895 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
901 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) argument
907 setEndRule(int32_t month, int32_t dayOfMonth, int32_t time, UErrorCode& status) argument
912 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
[all...]

Completed in 1010 milliseconds

1234567891011>>