Home | History | Annotate | Download | only in parser

Lines Matching refs:bRet

114   bool bRet = false;
117 for (; i < iCount && !bRet; i++) {
123 bRet = pFormat->ParseNull(wsValue, wsFormat);
124 if (!bRet) {
125 bRet = wsValue.IsEmpty();
129 bRet = pFormat->ParseZero(wsValue, wsFormat);
130 if (!bRet) {
131 bRet = wsValue == L"0";
136 bRet = pFormat->ParseNum(wsValue, wsFormat, fNum);
137 if (!bRet) {
138 bRet = pFormat->FormatNum(wsValue, wsFormat, wsOutput);
143 bRet = pFormat->ParseText(wsValue, wsFormat, wsOutput);
145 if (!bRet) {
146 bRet = pFormat->FormatText(wsValue, wsFormat, wsOutput);
151 bRet = ValidateCanonicalDate(wsValue, dt);
152 if (!bRet) {
153 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
155 if (!bRet) {
156 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
164 bRet =
166 if (!bRet) {
167 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
174 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
176 if (!bRet) {
177 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
183 bRet = false;
187 if (bRet && pMatchFormat)
193 return bRet;
490 bool bRet = false;
497 bRet = pFormat->FormatNull(wsFormat, wsResult);
502 bRet = pFormat->FormatZero(wsFormat, wsResult);
506 bRet = pFormat->FormatNum(m_wsValue, wsFormat, wsResult);
509 bRet = pFormat->FormatText(m_wsValue, wsFormat, wsResult);
512 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
516 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
520 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
525 bRet = true;
527 if (!bRet && (eCategory != FX_LOCALECATEGORY_Num ||
534 return bRet;
801 bool bRet = false;
803 for (int32_t i = 0; i < iCount && !bRet; i++) {
809 bRet = pFormat->ParseNull(wsValue, wsFormat);
810 if (bRet) {
815 bRet = pFormat->ParseZero(wsValue, wsFormat);
816 if (bRet)
821 bRet = pFormat->ParseNum(wsValue, wsFormat, fNum);
822 if (bRet) {
828 bRet = pFormat->ParseText(wsValue, wsFormat, m_wsValue);
832 bRet = ValidateCanonicalDate(wsValue, dt);
833 if (!bRet) {
834 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
837 if (bRet) {
844 bRet =
846 if (bRet) {
853 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
855 if (bRet) {
862 bRet = true;
866 if (!bRet)
872 return bRet;