コード例 #1
0
ファイル: timezone.cpp プロジェクト: 1mr3yn/hhvm
TimeZone::TimeZone(const String& name) {
  m_tzi = GetTimeZoneInfo((char*)name.data(), GetDatabase());
}
コード例 #2
0
ファイル: timezone.cpp プロジェクト: Bathrisyah/hiphop-php
TimeZone::TimeZone(CStrRef name) {
  m_tzi = GetTimeZoneInfo(name);
}
コード例 #3
0
ファイル: timezone.cpp プロジェクト: 1mr3yn/hhvm
timelib_tzinfo* TimeZone::GetTimeZoneInfoRaw(char* name,
                                             const timelib_tzdb* db) {
  return GetTimeZoneInfo(name, db).get();
}
コード例 #4
0
ファイル: timezone.cpp プロジェクト: XueDx/hiphop-php
TimeZone::TimeZone(CStrRef name) {
  m_tzi = GetTimeZoneInfo((char*)name.data(), GetDatabase());
}