/external/fonttools/Lib/fontTools/ |
merge.py | 15 import time namespace 49 return int(time.time() - _h_e_a_d.mac_epoch_diff) 855 self.last_time = self.start_time = time.time() 873 new_time = time.time() 918 log.lapse("make one with everything(TOTAL TIME)")
|
/external/icu/icu4c/source/i18n/ |
basictz.cpp | 45 // Check the offsets at the start time 67 UDate time = start; local 70 UBool avail1 = getNextTransition(time, FALSE, tr1); 71 UBool avail2 = tz.getNextTransition(time, FALSE, tr2); 124 time = tr1.getTime(); 164 // Get local wall time for the next transition time 173 // So we always use raw offset of the given time for the rule, 191 // Get local wall time for the next transition time 305 UDate time, t; local [all...] |
windtfmt.cpp | 80 // Get proper date time format 171 UnicodeString *time = new UnicodeString(); local 176 formatTime(&st_local, *time); 178 timeDateArray[0].adoptString(time);
|
/external/icu/icu4c/source/test/intltest/ |
tzbdtest.cpp | 193 logln("-- Verifying time " + dateToString(d) + " in zone " + time_zone->getID(str)); 227 * calendar and time zone in conjunction with one another, 228 * including the calendar time->fields and fields->time and 229 * the time zone getOffset method. 308 // i is minutes past midnight standard time 454 UDate time = d; local 455 UDate limit = time + ONE_YEAR + ONE_DAY; 461 while (time < limit) { 462 d = time; [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
TestCase.java | 21 * particular instant in time. The applyFields and applyTime 34 protected long time; field in class:TestCase 50 time = d.getTime(); 54 return new Date(time); 58 * Return a String representation of this test case's time. 164 * Apply this test case's time in milliseconds to another calendar 171 c.setTime(new Date(time)); 216 * Determine whether time in milliseconds of this calendar 232 return time == ((Calendar)obj).getTime().getTime();
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
AnimChannel.java | 60 private float time; field in class:AnimChannel 168 * @return The time of the currently playing animation. The time 174 return time; 178 * @param time Set the time of the currently playing animation, the time 181 public void setTime(float time) { 182 this.time = FastMath.clamp(time, 0, getAnimMaxTime()) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/ |
AbstractCinematicEvent.java | 59 protected float time = 0; field in class:AbstractCinematicEvent 120 * @param tpf time per frame 124 time = time + (tpf * speed); 125 //time = elapsedTimePause + (timer.getTimeInSeconds() - start) * speed; 128 if (time >= initialDuration && loopMode == loopMode.DontLoop) { 137 * @param tpf time per frame 142 * stops the animation, next time play() is called the animation will start from the begining. 146 time = 0; 310 * When this method is invoked, the event should fast forward to the given time according tim 0 is the start of the event [all...] |
/external/jsoncpp/ |
makerelease.py | 24 import time namespace 227 start_time = time.time() 230 file_per_sec = (time.time() - start_time) / (index+1)
|
/external/kernel-headers/original/uapi/linux/ |
joystick.h | 48 __u32 time; /* event timestamp in milliseconds */ member in struct:js_event
|
rtc.h | 3 * This version contains the part of the user interface to the Real Time Clock 16 * struct tm in <time.h>, but it needs to be here so that the kernel 39 struct rtc_time time; /* time the alarm is set to */ member in struct:rtc_wkalrm 79 #define RTC_ALM_SET _IOW('p', 0x07, struct rtc_time) /* Set alarm time */ 80 #define RTC_ALM_READ _IOR('p', 0x08, struct rtc_time) /* Read alarm time */ 81 #define RTC_RD_TIME _IOR('p', 0x09, struct rtc_time) /* Read RTC time */ 82 #define RTC_SET_TIME _IOW('p', 0x0a, struct rtc_time) /* Set RTC time */
|
/external/libdrm/freedreno/ |
freedreno_priv.h | 90 time_t time; member in struct:fd_device 95 void fd_cleanup_bo_cache(struct fd_device *dev, time_t time); 148 time_t free_time; /* time when added to bucket-list */
|
/external/lldb/examples/python/ |
symbolication.py | 20 # state it was in right at crash time. 37 import time namespace
|
/external/lldb/test/functionalities/data-formatter/data-formatter-objc/ |
TestDataFormatterObjC.py | 6 import os, time namespace
|
/external/lldb/test/functionalities/thread/concurrent_events/ |
TestConcurrentEvents.py | 13 import os, signal, time namespace
|
/external/lldb/test/pexpect-2.4/examples/ |
rippy.py | 36 you are really motivated and have a lot of time on your hands then you can run 38 the first time Rippy will recalculate the bitrate to give you the nearly exact 72 import sys, os, re, math, stat, getopt, traceback, types, time namespace 240 # you cannot get exact time based on compressed size. 462 At this time there is no way to set the output audio name. 481 """This attempts to get the length of the media file (length is time in seconds). 484 time for many compressed video and audio formats -- notably MPEG4 and MP3. [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_schedule_instructions.cpp | 46 * update the earliest-unblocked clock time of its children, and 433 int time = 0; local 464 time = MAX2(time + 1, chosen_time); 468 * be scheduled. Update the children's unblocked time for this 475 time + chosen->child_latency[i]); 494 time + chosen->latency);
|
/external/mesa3d/src/mesa/main/ |
es_generator.py | 130 import getopt, time namespace 187 """ % (program, functionList, version, time.strftime("%Y-%m-%d %H:%M:%S")) [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/ |
TrackFragmentRandomAccessBox.java | 41 * unsigned int(64) time; 44 * unsigned int(32) time; 99 entry.time = IsoTypeReader.readUInt64(content); 102 entry.time = IsoTypeReader.readUInt32(content); 129 IsoTypeWriter.writeUInt64(byteBuffer, entry.time); 132 IsoTypeWriter.writeUInt32(byteBuffer, entry.time); 192 private long time; field in class:TrackFragmentRandomAccessBox.Entry 201 public Entry(long time, long moofOffset, long trafNumber, long trunNumber, long sampleNumber) { 204 this.time = time; [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_cache.cpp | 13 FX_DWORD time; member in struct:CACHEINFO 19 return ((CACHEINFO*)data1)->time - ((CACHEINFO*)data2)->time; 52 pCACHEINFO[i].time = ((CPDF_ImageCache*)value)->GetTimeCount();
|
/external/replicaisland/src/com/replica/replicaisland/ |
AnimationPlayerActivity.java | 158 long time = System.currentTimeMillis(); local 159 if (time > mAnimationEndTime) {
|
DoorAnimationComponent.java | 141 TimeSystem time = sSystemRegistry.timeSystem; local 142 final float gameTime = time.getGameTime(); 191 public void setStayOpenTime(float time) { 192 mStayOpenTime = time;
|
EventReporter.java | 19 public float time; field in class:EventReporter.Event 55 public void addEvent(int eventType, float x, float y, float time, String level, int version, long session) { 59 event.time = time; 90 + "&time=" + event.time
|
FadeDrawableComponent.java | 64 final TimeSystem time = sSystemRegistry.timeSystem; local 65 final float currentTime = time.getGameTime();
|
GameOverActivity.java | 82 final long time = SystemClock.uptimeMillis(); local 83 final long delta = time - mLastTime;
|
GameThread.java | 56 final long time = SystemClock.uptimeMillis(); local 57 final long timeDelta = time - mLastTime; 60 float secondsDelta = (time - mLastTime) * 0.001f; 64 mLastTime = time; 79 finalDelta = endTime - time;
|