Home | History | Annotate | Download | only in Support

Lines Matching full:timevalue

1 //===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===//
10 // This file implements the operating system TimeValue concept.
14 #include "llvm/Support/TimeValue.h"
21 const TimeValue::SecondsType
22 TimeValue::PosixZeroTimeSeconds = -946684800;
23 const TimeValue::SecondsType
24 TimeValue::Win32ZeroTimeSeconds = -12591158400ULL;
26 void TimeValue::normalize() {
50 /// Include the platform-specific portion of TimeValue class
52 #include "Unix/TimeValue.inc"
55 #include "Windows/TimeValue.inc"