Lines Matching defs:time
10 #include "flang/Runtime/time-intrinsic.h"
26 // before we time out, then we should probably look into an implementation
80 // one before we time out, then we should probably look into an implementation
92 std::string date(bufferSize, 'Z'), time(bufferSize, 'Z'),
95 (date.data(), date.size(), time.data(), time.size(), zone.data(), zone.size(),
121 // Validate time is hhmmss.sss or blank.
123 if (isBlank(time)) {
129 number = std::stol(time.substr(0, dotPosition));
139 EXPECT_EQ(time.substr(dotPosition, 1), ".");
142 milliseconds = std::stol(time.substr(dotPosition + 1, 3));