• Home
  • Raw
  • Download

Lines Matching refs:pFormat

115   auto pFormat = pdfium::MakeUnique<CFGAS_FormatString>(m_pLocaleMgr);  in ValidateValue()  local
117 pFormat->SplitFormatString(wsPattern, &wsPatterns); in ValidateValue()
124 switch (ValueCategory(pFormat->GetCategory(wsFormat), m_dwType)) { in ValidateValue()
126 bRet = pFormat->ParseNull(wsValue, wsFormat); in ValidateValue()
131 bRet = pFormat->ParseZero(wsValue, wsFormat); in ValidateValue()
137 bRet = pFormat->ParseNum(wsValue, wsFormat, &fNum); in ValidateValue()
139 bRet = pFormat->FormatNum(wsValue, wsFormat, &wsOutput); in ValidateValue()
143 bRet = pFormat->ParseText(wsValue, wsFormat, &wsOutput); in ValidateValue()
146 bRet = pFormat->FormatText(wsValue, wsFormat, &wsOutput); in ValidateValue()
152 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date, in ValidateValue()
155 bRet = pFormat->FormatDateTime(wsValue, wsFormat, in ValidateValue()
163 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Time, in ValidateValue()
166 bRet = pFormat->FormatDateTime(wsValue, wsFormat, in ValidateValue()
173 bRet = pFormat->ParseDateTime(wsValue, wsFormat, in ValidateValue()
176 bRet = pFormat->FormatDateTime(wsValue, wsFormat, in ValidateValue()
323 auto pFormat = pdfium::MakeUnique<CFGAS_FormatString>(m_pLocaleMgr); in FormatPatterns() local
325 pFormat->SplitFormatString(wsFormat, &wsPatterns); in FormatPatterns()
345 auto pFormat = pdfium::MakeUnique<CFGAS_FormatString>(m_pLocaleMgr); in FormatSinglePattern() local
347 ValueCategory(pFormat->GetCategory(wsFormat), m_dwType); in FormatSinglePattern()
351 bRet = pFormat->FormatNull(wsFormat, &wsResult); in FormatSinglePattern()
355 bRet = pFormat->FormatZero(wsFormat, &wsResult); in FormatSinglePattern()
358 bRet = pFormat->FormatNum(m_wsValue, wsFormat, &wsResult); in FormatSinglePattern()
361 bRet = pFormat->FormatText(m_wsValue, wsFormat, &wsResult); in FormatSinglePattern()
364 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, FX_DATETIMETYPE_Date, in FormatSinglePattern()
368 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, FX_DATETIMETYPE_Time, in FormatSinglePattern()
372 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, in FormatSinglePattern()
610 auto pFormat = pdfium::MakeUnique<CFGAS_FormatString>(m_pLocaleMgr); in ParsePatternValue() local
612 pFormat->SplitFormatString(wsPattern, &wsPatterns); in ParsePatternValue()
617 switch (ValueCategory(pFormat->GetCategory(wsFormat), m_dwType)) { in ParsePatternValue()
619 bRet = pFormat->ParseNull(wsValue, wsFormat); in ParsePatternValue()
624 bRet = pFormat->ParseZero(wsValue, wsFormat); in ParsePatternValue()
630 bRet = pFormat->ParseNum(wsValue, wsFormat, &fNum); in ParsePatternValue()
636 bRet = pFormat->ParseText(wsValue, wsFormat, &m_wsValue); in ParsePatternValue()
642 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date, in ParsePatternValue()
651 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Time, in ParsePatternValue()
659 bRet = pFormat->ParseDateTime(wsValue, wsFormat, in ParsePatternValue()