/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
ResearchLogDirectory.java | 85 public void cleanupLogFilesOlderThan(final long time) { 91 && (file.lastModified() < time)) { 100 public File getLogFilePath(final long time, final long nanoTime) { 101 return new File(mFilesDir, getUniqueFilename(LOG_FILENAME_PREFIX, time, nanoTime)); 104 public File getUserRecordingFilePath(final long time, final long nanoTime) { 105 return new File(mFilesDir, getUniqueFilename(USER_RECORDING_FILENAME_PREFIX, time, 109 private static String getUniqueFilename(final String prefix, final long time, 111 return prefix + "-" + time + "-" + nanoTime + FILENAME_SUFFIX;
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/ |
time.h | 26 # 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)
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/ |
time.h | 26 # 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)
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/ |
time.h | 26 # 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)
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/ |
time.h | 26 # 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)
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/ |
time.h | 26 # 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)
|
/system/extras/tests/bionic/libc/common/ |
test_tm_zone.c | 29 #include <time.h> 36 fprintf(stderr, "TM_ZONE is not defined in <time.h> !!\n" ); 40 time_t now = time(NULL);
|
/external/chromium_org/net/socket/ |
client_socket_pool_histograms.cc | 66 void ClientSocketPoolHistograms::AddRequestTime(base::TimeDelta time) const { 67 request_time_->AddTime(time); 70 void ClientSocketPoolHistograms::AddUnusedIdleTime(base::TimeDelta time) const { 71 unused_idle_time_->AddTime(time); 74 void ClientSocketPoolHistograms::AddReusedIdleTime(base::TimeDelta time) const { 75 reused_idle_time_->AddTime(time);
|
/external/chromium_org/third_party/WebKit/Source/core/timing/ |
ResourceTimingInfo.h | 42 static PassRefPtr<ResourceTimingInfo> create(const AtomicString& type, const double time) 44 return adoptRef(new ResourceTimingInfo(type, time)); 52 void setLoadFinishTime(double time) { m_loadFinishTime = time; } 72 ResourceTimingInfo(const AtomicString& type, const double time) 74 , m_initialTime(time)
|
/external/chromium_org/third_party/skia/src/images/ |
SkMovie.cpp | 12 // We should never see this in normal operation since our time values are 53 bool SkMovie::setTime(SkMSec time) 56 if (time > dur) 57 time = dur; 60 if (time != fCurrTime) 62 fCurrTime = time; 63 changed = this->onSetTime(time);
|
/external/proguard/src/proguard/gui/splash/ |
ClipSprite.java | 59 public void paint(Graphics graphics, long time) 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);
|
/external/skia/src/images/ |
SkMovie.cpp | 12 // We should never see this in normal operation since our time values are 53 bool SkMovie::setTime(SkMSec time) 56 if (time > dur) 57 time = dur; 60 if (time != fCurrTime) 62 fCurrTime = time; 63 changed = this->onSetTime(time);
|
/external/blktrace/btt/ |
trace_complete.c | 38 __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, d2c) [all...] |
trace_im.c | 31 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...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERGeneralizedTime.java | 14 * 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); 55 * return a Generalized Time object from a tagged object. 81 * for local time, or Z+-HHMM on the end, for difference between local 82 * time and UTC time. The fractional second amount f must consist of at 85 * @param time the time string [all...] |
/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 24 import android.text.format.Time; 31 Time time = new Time(); local 32 new Time(Time.getCurrentTimezone()); 33 time.set(System.currentTimeMillis()); 34 Time anotherTime = new Time(time); 41 Time time = new Time(); local 66 Time time = new Time(timeZone); local 76 Time time = new Time(); local 103 Time time = new Time(); local 172 Time time = new Time(); local 532 long time = t.toMillis(false) \/ 1000; local 569 long time = System.currentTimeMillis(); local 662 Time time = new Time(); local 705 Time time = new Time(); local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
Stopwatches.java | 71 * @param time total elapsed time 75 public static String buildShareResults(Context context, String time, long[] laps) { 76 StringBuilder b = new StringBuilder (context.getString(R.string.sw_share_main, time)); 96 * @param time total elapsed time 100 public static String buildShareResults(Context context, long time, long[] laps) { 101 return buildShareResults(context, getTimeText(context, time, NO_LAP_NUMBER), laps); 105 * Format the string of the time running on the stopwatch up to hundred of a second accuracy 107 * @param time - in hundreds of a second since the stopwatch starte [all...] |
/sdk/emulator/qtools/ |
callstack.h | 29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {}; 30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {}; 42 uint32_t time; // for debugging when a problem occurred member in class:StackFrame 58 void popAll(uint64_t time); 59 void threadStart(uint64_t time); 60 void threadStop(uint64_t time); 69 uint64_t getGlobalTime(uint64_t time) { return time + mSkippedTime; } 83 uint64_t time, int flags); 84 void doSimplePop(uint64_t time); 219 uint64_t time = event->time - mSkippedTime; local 385 uint64_t time = event->time - mSkippedTime; local 555 uint64_t time = event->time - mSkippedTime; local 693 uint64_t time = event->time - mSkippedTime; local 737 uint64_t time = event->time - mSkippedTime; local [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
ConditionVariableTest.java | 44 long time = System.currentTimeMillis(); local 46 assertTrue(System.currentTimeMillis() - time < TOLERANCE_MS); 50 time = System.currentTimeMillis(); 52 assertTrue(System.currentTimeMillis() - time >= BLOCK_TIME); 55 time = System.currentTimeMillis(); 70 long timeDelta = System.currentTimeMillis() - time; 74 time = System.currentTimeMillis();
|
/external/ipsec-tools/src/racoon/ |
throttle.c | 40 # 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/chromium_org/webkit/renderer/compositor_bindings/ |
web_float_animation_curve_unittest.cc | 61 // Tests that a float animation with multiple keys at a given time works sanely. 131 const double time = i * 0.25; local 132 EXPECT_FLOAT_EQ(timing_function->GetValue(time), curve->getValue(time)); 145 const double time = i * 0.25; local 146 EXPECT_FLOAT_EQ(time, curve->getValue(time)); 161 const double time = i * 0.25; local 162 EXPECT_FLOAT_EQ(timing_function->GetValue(time), curve->getValue(time)); 177 const double time = i * 0.25; local 193 const double time = i * 0.25; local 212 const double time = i * 0.25; local 227 const double time = i * 0.25; local [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
base_unittests.js | 373 var time = new Date(); 374 equals(base.relativizeTime(time), "Just now"); 375 time.setMinutes(time.getMinutes() - 1); 376 equals(base.relativizeTime(time), "1 minute ago"); 377 time.setMinutes(time.getMinutes() - 1); 378 equals(base.relativizeTime(time), "2 minutes ago"); 379 time.setMinutes(time.getMinutes() - 1) [all...] |
/external/chromium_org/google_apis/drive/ |
time_util.cc | 13 #include "base/time/time.h" 45 base::Time* parsed_time) { 48 base::StringPiece time; local 49 base::Time::Exploded exploded = {0}; 53 // Splits the string into "date" part and "time" part. 62 // Parses timezone suffix on the time part if available. 69 time = time_and_tz; 70 time.remove_suffix(1); 76 time = parts[0] [all...] |
/external/chromium_org/cc/input/ |
page_scale_animation.h | 18 // positions and an animation length time, then call ...AtTime() at every frame 53 // the start time. StartAnimation should only be called once after creation. 55 void StartAnimation(double time); 59 gfx::Vector2dF ScrollOffsetAtTime(double time) const; 60 float PageScaleFactorAtTime(double time) const; 61 bool IsAnimationCompleteAtTime(double time) const; 85 float InterpAtTime(double time) const;
|
/external/eigen/bench/btl/generic_bench/timers/ |
portable_timer.hh | 28 #include <time.h> 36 // A timer object measures CPU time. 69 LARGE_INTEGER time; local 70 time.QuadPart = stopVal.QuadPart - startVal.QuadPart; 71 return LIToSecs(time); 92 #include <sys/time.h>
|