/frameworks/base/core/java/android/content/ |
EventLogTags.logtags | 5 52002 content_query_sample (uri|3),(projection|3),(selection|3),(sortorder|3),(time|1|3),(blocking_package|3),(sample_percent|1|6) 6 52003 content_update_sample (uri|3),(operation|3),(selection|3),(time|1|3),(blocking_package|3),(sample_percent|1|6) 7 52004 binder_sample (descriptor|3),(method_num|1|5),(time|1|3),(blocking_package|3),(sample_percent|1|6)
|
/external/chromium_org/base/time/ |
default_clock.h | 10 #include "base/time/clock.h" 14 // DefaultClock is a Clock implementation that uses Time::Now(). 19 // Simply returns Time::Now(). 20 virtual Time Now() OVERRIDE;
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
feature_extractor_clock.h | 5 // A simple abstraction for getting the current time during feature extraction. 11 #include "base/time/time.h" 20 // Returns the current time. May be mocked for testing.
|
/external/chromium_org/chrome_frame/turndown_prompt/ |
reshow_state.h | 8 #include "base/time/time.h" 17 bool HasReshowDeltaExpired(const base::Time& current_time) const; 18 void MarkShown(const base::Time& last_shown_time);
|
/external/chromium_org/content/public/browser/ |
indexed_db_info.h | 9 #include "base/time/time.h" 19 const base::Time& last_modified, 25 base::Time last_modified_;
|
/external/chromium_org/ppapi/shared_impl/ |
time_conversion_unittest.cc | 13 // Slop we'll allow in two Time "internal values" to consider them equal. 21 base::Time::kMicrosecondsPerSecond; 23 TEST(TimeConversion, Time) { 25 base::Time now = base::Time::Now(); 26 base::Time converted = ppapi::PPTimeToTime(TimeToPPTime(now)); 31 base::Time one_second_from_now = now + base::TimeDelta::FromSeconds(1); 39 base::Time now = base::Time::Now(); 46 base::Time one_second_from_now = now + base::TimeDelta::FromSeconds(1) [all...] |
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_to_cc_animation_delegate_adapter.cc | 15 void WebToCCAnimationDelegateAdapter::NotifyAnimationStarted(double time) { 16 delegate_->notifyAnimationStarted(time); 19 void WebToCCAnimationDelegateAdapter::NotifyAnimationFinished(double time) { 20 delegate_->notifyAnimationFinished(time);
|
/external/skia/bench/ |
BenchSysTimer_c.cpp | 10 //Time 11 #include <time.h> 14 this->fStartWall = time(); 25 time_t end_wall = time();
|
/external/stlport/test/unit/ |
epilog_test.cpp | 1 #include <time.h>
|
/frameworks/base/core/java/android/util/ |
package.html | 3 Provides common utility methods such as date/time manipulation, base64 encoders
|
/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>
|
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
StringUtils.java | 105 * Get a readable string displaying the time
107 * @param context The context (needed only for relative time)
108 * @param time The time
110 * @return The time string
112 public static String getTimestampAsString(Context context, long time) {
113 final long hours = time / 3600000;
114 time %= 3600000;
115 final long mins = time / 60000;
116 time %= 60000; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/ |
ppp_defs.h | 5 #include <time.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/net/ |
ppp_defs.h | 5 #include <time.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/net/ |
ppp_defs.h | 5 #include <time.h>
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
tzrule.h | 12 * \brief C++ API: Time zone rule classes 26 * <code>TimeZoneRule</code> is a class representing a rule for time zone. 27 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name, 28 * raw offset (UTC offset for standard time) and daylight saving time offset. 67 * Fills in "name" with the name of this time zone. 68 * @param name Receives the name of this time zone. 75 * Gets the standard time offset. 76 * @return The standard time offset from UTC in milliseconds. 82 * Gets the amount of daylight saving delta time from the standard time [all...] |
/external/icu4c/i18n/unicode/ |
tzrule.h | 12 * \brief C++ API: Time zone rule classes 26 * <code>TimeZoneRule</code> is a class representing a rule for time zone. 27 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name, 28 * raw offset (UTC offset for standard time) and daylight saving time offset. 67 * Fills in "name" with the name of this time zone. 68 * @param name Receives the name of this time zone. 75 * Gets the standard time offset. 76 * @return The standard time offset from UTC in milliseconds. 82 * Gets the amount of daylight saving delta time from the standard time [all...] |
/external/chromium_org/chrome/browser/performance_monitor/ |
performance_monitor_util.cc | 11 #include "base/time/time.h" 30 const base::Time& time, 39 event.time = static_cast<double>(time.ToInternalValue()); 48 type, time, value.Pass())); 51 scoped_ptr<Event> CreateRendererFailureEvent(const base::Time& time, 56 event.time = static_cast<double>(time.ToInternalValue()) [all...] |
/external/chromium/base/ |
time.cc | 5 #include "base/time.h" 16 return static_cast<int>(delta_ / Time::kMicrosecondsPerDay); 20 return static_cast<int>(delta_ / Time::kMicrosecondsPerHour); 24 return static_cast<int>(delta_ / Time::kMicrosecondsPerMinute); 28 return static_cast<double>(delta_) / Time::kMicrosecondsPerSecond; 32 return delta_ / Time::kMicrosecondsPerSecond; 36 return static_cast<double>(delta_) / Time::kMicrosecondsPerMillisecond; 40 return delta_ / Time::kMicrosecondsPerMillisecond; 44 return (delta_ + Time::kMicrosecondsPerMillisecond - 1) / 45 Time::kMicrosecondsPerMillisecond 85 Time time; local [all...] |
pr_time_unittest.cc | 5 #include <time.h> 8 #include "base/time.h" 11 using base::Time; 16 PRTime comparison_time_pdt = 1192477500 * Time::kMicrosecondsPerSecond; 18 // Specialized test fixture allowing time strings without timezones to be 19 // tested by comparing them to a known time in the local zone. 25 // must be a time guaranteed to be outside of a DST fallback hour in 39 Time::kMicrosecondsPerSecond; 47 // a variety of time strings. 50 time(¤t_time) [all...] |
/external/chromium/chrome/browser/history/ |
history_publisher.h | 22 class Time; 38 const GURL& url, const base::Time& time) const; 39 void PublishPageContent(const base::Time& time, const GURL& url, 42 void DeleteUserHistoryBetween(const base::Time& begin_time, 43 const base::Time& end_time) const; 47 const base::Time& time; member in struct:history::HistoryPublisher::PageData 62 // Converts time represented by the Time class object to variant time in UTC [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/performance/ |
sync_timing_helper.cc | 8 #include "base/time/time.h" 19 base::Time start = base::Time::Now(); 21 return base::Time::Now() - start; 27 base::Time start = base::Time::Now(); 29 return base::Time::Now() - start; 35 base::Time start = base::Time::Now() [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TimeTest.java | 20 import java.sql.Time; 26 * JUnit Testcase for the java.sql.Time class 77 Time theTime = new Time(10, 45, 20); 84 Time theTime = new Time(TIME_TEST1); 104 // Create the Time object 105 Time theTime = new Time(theTimes[i]); 106 // Convert to a time string ... and compar [all...] |
/external/chromium_org/chrome/browser/net/ |
network_time_tracker.h | 11 #include "base/time/time.h" 17 // A class that receives network time updates and can provide the network time 18 // for a corresponding local time. This class is not thread safe, but may live 22 // enables arbitrary threads to maintain their own network time source without 26 // Callback for updating network time based on http responses. This callback 29 // const base::Time& network_time - the actual time. 32 typedef base::Callback<void(const base::Time& [all...] |