Lines Matching refs:pFormat

139     auto pFormat =  in ValidateValue()  local
141 switch (ValueCategory(pFormat->GetCategory(), m_dwType)) { in ValidateValue()
143 bRet = pFormat->ParseNull(wsValue); in ValidateValue()
148 bRet = pFormat->ParseZero(wsValue); in ValidateValue()
154 bRet = pFormat->ParseNum(wsValue, &fNum); in ValidateValue()
156 bRet = pFormat->FormatNum(wsValue, &wsOutput); in ValidateValue()
160 bRet = pFormat->ParseText(wsValue, &wsOutput); in ValidateValue()
163 bRet = pFormat->FormatText(wsValue, &wsOutput); in ValidateValue()
169 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_Date, &dt); in ValidateValue()
171 bRet = pFormat->FormatDateTime(wsValue, FX_DATETIMETYPE_Date, in ValidateValue()
179 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_Time, &dt); in ValidateValue()
182 pFormat->FormatDateTime(wsValue, FX_DATETIMETYPE_Time, &wsOutput); in ValidateValue()
188 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_DateTime, &dt); in ValidateValue()
190 bRet = pFormat->FormatDateTime(wsValue, FX_DATETIMETYPE_DateTime, in ValidateValue()
281 auto pFormat = in FormatSinglePattern() local
283 FX_LOCALECATEGORY eCategory = ValueCategory(pFormat->GetCategory(), m_dwType); in FormatSinglePattern()
287 bRet = pFormat->FormatNull(&wsResult); in FormatSinglePattern()
291 bRet = pFormat->FormatZero(&wsResult); 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()
556 auto pFormat = in ParsePatternValue() local
558 switch (ValueCategory(pFormat->GetCategory(), m_dwType)) { in ParsePatternValue()
560 bRet = pFormat->ParseNull(wsValue); in ParsePatternValue()
565 bRet = pFormat->ParseZero(wsValue); in ParsePatternValue()
571 bRet = pFormat->ParseNum(wsValue, &fNum); in ParsePatternValue()
577 bRet = pFormat->ParseText(wsValue, &m_wsValue); in ParsePatternValue()
583 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_Date, &dt); in ParsePatternValue()
591 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_Time, &dt); in ParsePatternValue()
598 bRet = pFormat->ParseDateTime(wsValue, FX_DATETIMETYPE_DateTime, &dt); in ParsePatternValue()