reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/Chrono.h
  134       return {getAs<std::ratio<1>>(D), "s"};
  136       return {getAs<std::ratio<60>>(D), "m"};
  138       return {getAs<std::ratio<3600>>(D), "h"};
lib/Support/Timer.cpp
  118   using Seconds = std::chrono::duration<double, std::ratio<1>>;
tools/lldb/source/API/SBPlatform.cpp
   64   Timeout<std::ratio<1>> m_timeout = llvm::None;
unittests/Support/Chrono.cpp
  105   typedef duration<float, std::ratio<60 * 60 * 24 * 14, 1000000>>
usr/include/c++/7.4.0/chrono
   83       typedef ratio<__gcd_num::value,
  198 	typedef ratio_divide<_Period, __to_period> 		__cf;
  297       struct __is_ratio<ratio<_Num, _Den>>
  609     typedef duration<int64_t, ratio< 60>>   minutes;
  612     typedef duration<int64_t, ratio<3600>>  hours;
  915     constexpr chrono::duration<long double, ratio<3600,1>>
  924     constexpr chrono::duration<long double, ratio<60,1>>
usr/include/c++/7.4.0/ratio
  276       typedef ratio<num, den> type;
  295       typedef ratio<
  322         ratio<_R2::den, _R2::num>>::type type;
  376     : __ratio_less_impl_1<ratio<-_R2::num, _R2::den>,
  377            ratio<-_R1::num, _R1::den> >::type
  430         ratio<-_R1::num, _R1::den>,
  431         ratio<-_R2::num, _R2::den> >::type __t;
  433       typedef ratio<-__t::num, __t::den> type;
  458       typedef ratio<__n_final::__quot_lo, __d_final::__lo> type;
  487       typedef ratio<__n_final::__quot_lo, __d_final::__lo> type;
  513         ratio<-_R2::num, _R2::den>>::type type;
  530   typedef ratio<1,       1000000000000000000> atto;
  531   typedef ratio<1,          1000000000000000> femto;
  532   typedef ratio<1,             1000000000000> pico;
  533   typedef ratio<1,                1000000000> nano;
  534   typedef ratio<1,                   1000000> micro;
  535   typedef ratio<1,                      1000> milli;
  536   typedef ratio<1,                       100> centi;
  537   typedef ratio<1,                        10> deci;
  538   typedef ratio<                       10, 1> deca;
  539   typedef ratio<                      100, 1> hecto;
  540   typedef ratio<                     1000, 1> kilo;
  541   typedef ratio<                  1000000, 1> mega;
  542   typedef ratio<               1000000000, 1> giga;
  543   typedef ratio<            1000000000000, 1> tera;
  544   typedef ratio<         1000000000000000, 1> peta;
  545   typedef ratio<      1000000000000000000, 1> exa;