Searched refs:__h_ (Results 1 – 2 of 2) sorted by relevance
193 _LIBCPP_HIDE_FROM_ABI constexpr any() _NOEXCEPT : __h_(nullptr) {}195 _LIBCPP_HIDE_FROM_ABI any(any const& __other) : __h_(nullptr) {196 if (__other.__h_)200 _LIBCPP_HIDE_FROM_ABI any(any&& __other) _NOEXCEPT : __h_(nullptr) {201 if (__other.__h_)259 if (__h_)266 _LIBCPP_HIDE_FROM_ABI bool has_value() const _NOEXCEPT { return __h_ != nullptr; }270 if (__h_) {291 return __h_(__a, this, __other, __info, __fallback_info);296 return __h_(__a, this, __other, __info, __fallback_info);[all …]
57 __h_(chrono::duration_cast<chrono::hours>(chrono::abs(__d))), in hh_mm_ss()63 _LIBCPP_HIDE_FROM_ABI constexpr chrono::hours hours() const noexcept { return __h_; } in hours()69 auto __dur = __h_ + __m_ + __s_ + __f_; in to_duration()77 chrono::hours __h_; variable