Home | History | Annotate | Download | only in parser

Lines Matching defs:pFormat

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