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

References

include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
  140       CacheOptions.Policy.Interval.reset();
  142       CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
lib/Support/CachePruning.cpp
   89       Policy.Interval = *DurationOrErr;
  182     if (!Policy.Interval)
  184     if (Policy.Interval != seconds(0)) {
  189       if (TimeStampAge <= *Policy.Interval) {
unittests/Support/CachePruningTest.cpp
   18   EXPECT_EQ(std::chrono::seconds(1200), P->Interval);
   26   EXPECT_EQ(std::chrono::seconds(1), P->Interval);
   29   EXPECT_EQ(std::chrono::minutes(2), *P->Interval);
   32   EXPECT_EQ(std::chrono::hours(3), *P->Interval);
   70   EXPECT_EQ(std::chrono::seconds(1200), P->Interval);