Lines Matching refs:m_wsValue

103       m_wsValue(wsValue),  in CXFA_LocaleValue()
211 return wcstod(m_wsValue.c_str(), nullptr); in GetDoubleNum()
219 FX_DateFromCanonical(m_wsValue.span(), &dt); in GetDate()
228 FX_TimeFromCanonical(m_pLocaleMgr->GetDefLocale(), m_wsValue.span(), &dt); in GetTime()
234 m_wsValue = WideString::Format(L"%04d-%02d-%02d", d.GetYear(), d.GetMonth(), in SetDate()
241 m_wsValue = WideString::Format(L"%02d:%02d:%02d", t.GetHour(), t.GetMinute(), in SetTime()
244 m_wsValue += WideString::Format(L"%:03d", t.GetMillisecond()); in SetTime()
250 m_wsValue = WideString::Format(L"%04d-%02d-%02dT%02d:%02d:%02d", dt.GetYear(), in SetDateTime()
254 m_wsValue += WideString::Format(L"%:03d", dt.GetMillisecond()); in SetDateTime()
286 if (m_wsValue.IsEmpty()) in FormatSinglePattern()
290 if (m_wsValue.EqualsASCII("0")) in FormatSinglePattern()
294 bRet = pFormat->FormatNum(m_wsValue, &wsResult); in FormatSinglePattern()
297 bRet = pFormat->FormatText(m_wsValue, &wsResult); in FormatSinglePattern()
301 pFormat->FormatDateTime(m_wsValue, FX_DATETIMETYPE_Date, &wsResult); in FormatSinglePattern()
305 pFormat->FormatDateTime(m_wsValue, FX_DATETIMETYPE_Time, &wsResult); in FormatSinglePattern()
308 bRet = pFormat->FormatDateTime(m_wsValue, FX_DATETIMETYPE_DateTime, in FormatSinglePattern()
312 wsResult = m_wsValue; in FormatSinglePattern()
317 wsResult = m_wsValue; in FormatSinglePattern()
562 m_wsValue.clear(); in ParsePatternValue()
567 m_wsValue = L"0"; in ParsePatternValue()
573 m_wsValue = std::move(fNum); in ParsePatternValue()
577 bRet = pFormat->ParseText(wsValue, &m_wsValue); in ParsePatternValue()
604 m_wsValue = wsValue; in ParsePatternValue()
610 m_wsValue = wsValue; in ParsePatternValue()