Home | History | Annotate | Download | only in jni

Lines Matching refs:is_steady

6 // and "is_steady" is called "is_monotonic".  One may be tempted to use
35 #define is_steady is_monotonic
39 void printClockData (bool &is_high_res, bool &is_steady)
58 cout << "- is_steady: " << boolalpha << C::is_steady << endl;
59 is_steady = C::is_steady;
64 bool is_high_res1, is_high_res2, is_high_res3, is_steady;
66 printClockData<std::chrono::system_clock>(is_high_res1, is_steady);
68 printClockData<std::chrono::high_resolution_clock>(is_high_res2, is_steady);
70 printClockData<std::chrono::steady_clock>(is_high_res3, is_steady);
72 return (is_high_res1 && is_high_res2 && is_high_res3 && is_steady)? 0 : 1;