/third_party/boost/boost/date_time/ |
D | time.hpp | 65 time_(time_system::get_time_rep(day, td, dst)) in base_time() 69 time_(time_system::get_time_rep(sv)) in base_time() 73 time_(rhs) in base_time() 78 return time_system::get_date(time_); in date() 83 return time_system::get_time_of_day(time_); in time_of_day() 90 return time_system::zone_name(time_); in zone_name() 97 return time_system::zone_name(time_); in zone_abbrev() 109 return time_.is_not_a_date_time(); in is_not_a_date_time() 121 return time_.is_pos_infinity(); in is_pos_infinity() 127 return time_.is_neg_infinity(); in is_neg_infinity() [all …]
|
/third_party/glib/glib/ |
D | gtimer.c | 295 g_time_val_add (GTimeVal *time_, glong microseconds) in g_time_val_add() argument 297 g_return_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC); in g_time_val_add() 301 time_->tv_usec += microseconds % G_USEC_PER_SEC; in g_time_val_add() 302 time_->tv_sec += microseconds / G_USEC_PER_SEC; in g_time_val_add() 303 if (time_->tv_usec >= G_USEC_PER_SEC) in g_time_val_add() 305 time_->tv_usec -= G_USEC_PER_SEC; in g_time_val_add() 306 time_->tv_sec++; in g_time_val_add() 312 time_->tv_usec -= microseconds % G_USEC_PER_SEC; in g_time_val_add() 313 time_->tv_sec -= microseconds / G_USEC_PER_SEC; in g_time_val_add() 314 if (time_->tv_usec < 0) in g_time_val_add() [all …]
|
D | gtimezone.c | 305 parse_time (const gchar *time_, in parse_time() argument 309 if (*time_ < '0' || '9' < *time_) in parse_time() 312 *offset = 60 * 60 * (*time_++ - '0'); in parse_time() 314 if (*time_ == '\0') in parse_time() 317 if (*time_ != ':') in parse_time() 319 if (*time_ < '0' || '9' < *time_) in parse_time() 323 *offset += 60 * 60 * (*time_++ - '0'); in parse_time() 330 if ('0' <= *time_ && *time_ <= '9') in parse_time() 333 *offset += 60 * 60 * (*time_++ - '0'); in parse_time() 341 if (*time_ == '\0') in parse_time() [all …]
|
D | gtimer.h | 67 void g_time_val_add (GTimeVal *time_, 71 GTimeVal *time_); 73 gchar* g_time_val_to_iso8601 (GTimeVal *time_) G_GNUC_MALLOC;
|
D | gtimezone.h | 75 gint64 time_); 80 gint64 *time_);
|
D | gdate.h | 204 GTime time_);
|
/third_party/boost/boost/date_time/local_time/ |
D | local_date_time.hpp | 158 …this->time_ = posix_time::posix_time_system::get_time_rep(date_type(date_time::not_a_date_time), t… in local_date_time_base() 168 …this->time_ = posix_time::posix_time_system::get_time_rep(date_type(date_time::not_a_date_time), t… in local_date_time_base() 174 this->time_ = posix_time::posix_time_system::get_time_rep(t.date(), in local_date_time_base() 180 this->time_ = posix_time::posix_time_system::get_time_rep(t.date(), in local_date_time_base() 237 utc_time_type lt(this->time_); in is_dst() 264 return utc_time_type(this->time_); in utc_time() 276 return utc_time_type(this->time_); in local_time() 313 return local_date_time_base(utc_time_type(this->time_) + td, new_tz); in local_time_in() 403 return time_system_type::is_equal(this->time_, rhs.time_); in operator ==() 413 return time_system_type::is_less(this->time_, rhs.time_); in operator <() [all …]
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | time.h | 54 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint() 55 gpr_timespec raw_time() { return time_; } in raw_time() 58 gpr_timespec time_; 79 Timepoint2Timespec(time, &time_); in TimePoint() 81 gpr_timespec raw_time() const { return time_; } in raw_time() 84 gpr_timespec time_;
|
/third_party/boost/libs/locale/src/util/ |
D | gregorian.cpp | 150 time_ = std::time(0); in gregorian_calendar() 153 from_time(time_); in gregorian_calendar() 265 time_ = point - tzoff_; in normalize() 569 posix_time pt = { time_, 0}; in get_time() 678 if(self->time_ > other->time_) in get_diff() 684 if(self->time_ < other->time_) in get_diff() 740 return static_cast<int>( (other->time_ - time_) / (3600*12) ); in difference() 743 return static_cast<int>( (other->time_ - time_) / 3600 ); in difference() 745 return static_cast<int>( (other->time_ - time_) / 60 ); in difference() 747 return static_cast<int>( other->time_ - time_ ); in difference() [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | timer_queue.hpp | 129 Time_Traits::subtract(heap_[0].time_, Time_Traits::now())), in wait_duration_msec() 141 Time_Traits::subtract(heap_[0].time_, Time_Traits::now())), in wait_duration_usec() 151 while (!heap_.empty() && !Time_Traits::less_than(now, heap_[0].time_)) in get_ready_timers() 226 if (!Time_Traits::less_than(heap_[index].time_, heap_[parent].time_)) in up_heap() 241 heap_[child].time_, heap_[child + 1].time_)) in down_heap() 243 if (Time_Traits::less_than(heap_[index].time_, heap_[min_child].time_)) in down_heap() 279 heap_[index].time_, heap_[(index - 1) / 2].time_)) in remove_timer() 346 time_type time_; member
|
/third_party/boost/boost/asio/detail/ |
D | timer_queue.hpp | 129 Time_Traits::subtract(heap_[0].time_, Time_Traits::now())), in wait_duration_msec() 141 Time_Traits::subtract(heap_[0].time_, Time_Traits::now())), in wait_duration_usec() 151 while (!heap_.empty() && !Time_Traits::less_than(now, heap_[0].time_)) in get_ready_timers() 226 if (!Time_Traits::less_than(heap_[index].time_, heap_[parent].time_)) in up_heap() 241 heap_[child].time_, heap_[child + 1].time_)) in down_heap() 243 if (Time_Traits::less_than(heap_[index].time_, heap_[min_child].time_)) in down_heap() 279 heap_[index].time_, heap_[(index - 1) / 2].time_)) in remove_timer() 346 time_type time_; member
|
/third_party/mindspore/mindspore/core/utils/ |
D | profile.h | 36 explicit TimeInfo(double time = -1.0) : time_(time), dict_(nullptr), actionNum_(0) {} in time_() function 40 double time_; member 164 time_ = 0.0; in TimeStat() 170 time_ += t; 180 double time_; member
|
D | profile.cc | 57 << "[" << name << "]: " << iter.second->time_; in PrintTimeInfoMap() 69 (*sums)[newPrefix] += iter.second->time_; in PrintTimeInfoMap() 88 oss << "TotalTime = " << time_info.time_; in PrintProfile() 240 time_info_->time_ = time; in SetTime() 338 …oss << std::setw(5) << std::fixed << std::setprecision(2) << iter->second.time_ / group.total_time… in PrintTimeStat() 339 …<< "% : " << std::setw(12) << std::fixed << std::setprecision(6) << iter->second.time_ << "s : " <… in PrintTimeStat() 359 groups[matched_idx].total_time += iter->second.time_; in Print()
|
/third_party/boost/libs/statechart/example/StopWatch/ |
D | StopWatch2.cpp | 73 EvGetElapsedTime( double & time ) : time_( time ) {} in EvGetElapsedTime() 77 time_ = time; in Assign() 81 double & time_; member
|
/third_party/boost/boost/date_time/posix_time/ |
D | ptime.hpp | 76 return ptime::time_system_type::is_equal(lhs.time_,rhs.time_); in operator ==()
|
/third_party/boost/libs/hana/example/misc/ |
D | dimensional_analysis.cpp | 23 using time_ = decltype(hana::tuple_c<int, 0, 0, 1, 0, 0, 0, 0>); typedef 67 quantity<time_> t{2.4}; in main()
|
/third_party/cef/tests/cefclient/browser/ |
D | osr_d3d11_win.cc | 845 time_ = 0.0; in Composition() 855 return time_; in time() 893 time_ = t; in tick()
|
D | osr_d3d11_win.h | 301 double time_; variable
|
/third_party/python/Lib/ |
D | mailbox.py | 1653 def set_from(self, from_, time_=None): argument 1655 if time_ is not None: 1656 if time_ is True: 1657 time_ = time.gmtime() 1658 from_ += ' ' + time.asctime(time_)
|
/third_party/grpc/templates/src/objective-c/ |
D | !ProtoCompiler-gRPCCppPlugin.podspec.template | 41 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
D | !ProtoCompiler-gRPCPlugin.podspec.template | 41 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
D | !ProtoCompiler.podspec.template | 35 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
/third_party/grpc/src/objective-c/ |
D | !ProtoCompiler-gRPCCppPlugin.podspec | 39 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
D | !ProtoCompiler-gRPCPlugin.podspec | 39 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
D | !ProtoCompiler.podspec | 33 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|