Searched refs:TimezoneCache (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/base/platform/ |
D | platform.h | 94 class TimezoneCache; variable 124 static TimezoneCache* CreateTimezoneCache(); 125 static void DisposeTimezoneCache(TimezoneCache* cache); 126 static void ClearTimezoneCache(TimezoneCache* cache); 130 static const char* LocalTimezone(double time, TimezoneCache* cache); 134 static double LocalTimeOffset(TimezoneCache* cache); 137 static double DaylightSavingsOffset(double time, TimezoneCache* cache);
|
D | platform-win32.cc | 105 class TimezoneCache { class 107 TimezoneCache() : initialized_(false) { } in TimezoneCache() function in v8::base::TimezoneCache 220 int64_t LocalOffset(TimezoneCache* cache); 223 int64_t DaylightSavingsOffset(TimezoneCache* cache); 227 char* LocalTimezone(TimezoneCache* cache); 239 bool InDST(TimezoneCache* cache); 354 int64_t Win32Time::LocalOffset(TimezoneCache* cache) { in LocalOffset() 388 bool Win32Time::InDST(TimezoneCache* cache) { in InDST() 413 int64_t Win32Time::DaylightSavingsOffset(TimezoneCache* cache) { in DaylightSavingsOffset() 420 char* Win32Time::LocalTimezone(TimezoneCache* cache) { in LocalTimezone() [all …]
|
D | platform-posix.cc | 366 class TimezoneCache {}; class 369 TimezoneCache* OS::CreateTimezoneCache() { in CreateTimezoneCache() 374 void OS::DisposeTimezoneCache(TimezoneCache* cache) { in DisposeTimezoneCache() 379 void OS::ClearTimezoneCache(TimezoneCache* cache) { in ClearTimezoneCache() 384 double OS::DaylightSavingsOffset(double time, TimezoneCache*) { in DaylightSavingsOffset() argument
|
D | platform-solaris.cc | 38 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 47 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-macos.cc | 102 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 111 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-freebsd.cc | 39 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 48 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-aix.cc | 46 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 55 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-cygwin.cc | 29 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 38 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-openbsd.cc | 37 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 46 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-qnx.cc | 88 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 97 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
D | platform-linux.cc | 104 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { in LocalTimezone() 118 double OS::LocalTimeOffset(TimezoneCache* cache) { in LocalTimeOffset()
|
/external/v8/src/ |
D | date.h | 280 base::TimezoneCache* tz_cache_;
|