Searched refs:timeValue (Results 1 – 4 of 4) sorted by relevance
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | Timestamps.java | 248 String timeValue = value.substring(0, timezoneOffsetPosition); in parse() local 249 String secondValue = timeValue; in parse() 251 int pointPosition = timeValue.indexOf('.'); in parse() 253 secondValue = timeValue.substring(0, pointPosition); in parse() 254 nanoValue = timeValue.substring(pointPosition + 1); in parse()
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | ProgressDialog2.cpp | 586 void GetTimeString(UInt64 timeValue, wchar_t *s) in GetTimeString() argument 588 UInt64 hours = timeValue / 3600; in GetTimeString() 589 UInt32 seconds = (UInt32)(timeValue - hours * 3600); in GetTimeString()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/ |
D | TtmlDecoder.java | 782 String timeValue = Assertions.checkNotNull(matcher.group(1)); in parseTimeExpression() local 783 double offsetSeconds = Double.parseDouble(timeValue); in parseTimeExpression()
|
/external/pdfium/fxjs/xfa/ |
D | cfxjse_formcalc_context.cpp | 1968 CXFA_LocaleValue timeValue(XFA_VT_TIME, in IsoTime2Num() local 1970 if (!timeValue.IsValid()) { in IsoTime2Num() 1975 CFX_DateTime uniTime = timeValue.GetTime(); in IsoTime2Num() 2220 std::unique_ptr<CFXJSE_Value> timeValue = GetSimpleValue(pThis, args, 0); in Num2GMTime() local 2221 if (timeValue->IsNull()) { in Num2GMTime() 2225 int32_t iTime = (int32_t)ValueToFloat(pThis, timeValue.get()); in Num2GMTime() 2266 std::unique_ptr<CFXJSE_Value> timeValue = GetSimpleValue(pThis, args, 0); in Num2Time() local 2267 if (timeValue->IsNull()) { in Num2Time() 2271 float fTime = ValueToFloat(pThis, timeValue.get()); in Num2Time() 2331 std::unique_ptr<CFXJSE_Value> timeValue = GetSimpleValue(pThis, args, 0); in Time2Num() local [all …]
|