Home
last modified time | relevance | path

Searched refs:wsDateTime (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/xfa/src/fxfa/src/parser/
Dxfa_localevalue.cpp449 FX_BOOL CXFA_LocaleValue::SetDateTime(const CFX_WideString& wsDateTime, in SetDateTime() argument
453 return m_bValid = ParsePatternValue(wsDateTime, wsFormat, pLocale); in SetDateTime()
531 static FX_BOOL XFA_ValueSplitDateTime(const CFX_WideString& wsDateTime, in XFA_ValueSplitDateTime() argument
536 if (wsDateTime.IsEmpty()) { in XFA_ValueSplitDateTime()
540 nSplitIndex = wsDateTime.Find('T'); in XFA_ValueSplitDateTime()
542 nSplitIndex = wsDateTime.Find(' '); in XFA_ValueSplitDateTime()
547 wsDate = wsDateTime.Left(nSplitIndex); in XFA_ValueSplitDateTime()
548 wsTime = wsDateTime.Right(wsDateTime.GetLength() - nSplitIndex - 1); in XFA_ValueSplitDateTime()
789 const CFX_WideString& wsDateTime) { in ValidateCanonicalDateTime() argument
791 if (wsDateTime.IsEmpty()) { in ValidateCanonicalDateTime()
[all …]
Dxfa_objectacc_imp.cpp3012 static FX_BOOL XFA_SplitDateTime(const CFX_WideString& wsDateTime, in XFA_SplitDateTime() argument
3017 if (wsDateTime.IsEmpty()) { in XFA_SplitDateTime()
3021 nSplitIndex = wsDateTime.Find('T'); in XFA_SplitDateTime()
3023 nSplitIndex = wsDateTime.Find(' '); in XFA_SplitDateTime()
3028 wsDate = wsDateTime.Left(nSplitIndex); in XFA_SplitDateTime()
3041 wsTime = wsDateTime.Right(wsDateTime.GetLength() - nSplitIndex - 1); in XFA_SplitDateTime()
/external/pdfium/xfa/src/fxfa/src/common/
Dfxfa_localevalue.h54 FX_BOOL ValidateCanonicalDateTime(const CFX_WideString& wsDateTime);
90 FX_BOOL SetDateTime(const CFX_WideString& wsDateTime,
/external/pdfium/xfa/src/fxfa/src/app/
Dxfa_ffnotify.cpp355 CFX_WideString wsDateTime; in GetCurrentDateTime() local
356 wsDateTime.Format(L"%d%02d%02dT%02d%02d%02d", dataTime.GetYear(), in GetCurrentDateTime()
359 return wsDateTime; in GetCurrentDateTime()