コード例 #1
0
ファイル: posix_time_config.hpp プロジェクト: beaubol/PDAL
 bool is_neg_infinity()const
 {
   return(day.is_neg_infinity() || time_of_day.is_neg_infinity());
 }
コード例 #2
0
ファイル: adjust_functors.hpp プロジェクト: argv0/riak-cxx
 duration_type get_neg_offset(const date_type& d) const 
 {
   // fix compiler warnings
   d.year();
   return duration_type(-f_);
 }
コード例 #3
0
ファイル: dst_rules.hpp プロジェクト: VTREEM/IFCPlusPlus_old
 static bool is_dst_boundary_day(date_type d)
 {
   year_type y = d.year();
   return ((d == local_dst_start_day(y)) ||
           (d == local_dst_end_day(y)));
 }
コード例 #4
0
ファイル: adjust_functors.hpp プロジェクト: argv0/riak-cxx
 duration_type get_neg_offset(const date_type& d) const 
 {
   // fix compiler warnings
   d.year();
   return duration_type(-f_*calendar_type::days_in_week());
 }
コード例 #5
0
 bool is_not_a_date_time()const
 {
   return(day.is_not_a_date() || time_of_day.is_not_a_date_time());
 }