Home | History | Annotate | Download | only in parser

Lines Matching defs:bRet

119   bool bRet = false;
122 for (; i < iCount && !bRet; i++) {
126 bRet = pFormat->ParseNull(wsValue, wsFormat);
127 if (!bRet)
128 bRet = wsValue.IsEmpty();
131 bRet = pFormat->ParseZero(wsValue, wsFormat);
132 if (!bRet)
133 bRet = wsValue == L"0";
137 bRet = pFormat->ParseNum(wsValue, wsFormat, &fNum);
138 if (!bRet)
139 bRet = pFormat->FormatNum(wsValue, wsFormat, &wsOutput);
143 bRet = pFormat->ParseText(wsValue, wsFormat, &wsOutput);
145 if (!bRet)
146 bRet = pFormat->FormatText(wsValue, wsFormat, &wsOutput);
150 bRet = ValidateCanonicalDate(wsValue, &dt);
151 if (!bRet) {
152 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
154 if (!bRet) {
155 bRet = pFormat->FormatDateTime(wsValue, wsFormat,
163 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Time,
165 if (!bRet) {
166 bRet = pFormat->FormatDateTime(wsValue, wsFormat,
173 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
175 if (!bRet) {
176 bRet = pFormat->FormatDateTime(wsValue, wsFormat,
182 bRet = false;
186 if (bRet && pMatchFormat)
191 return bRet;
344 bool bRet = false;
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,
377 bRet = true;
379 if (!bRet && (eCategory != FX_LOCALECATEGORY_Num ||
386 return bRet;
613 bool bRet = false;
615 for (int32_t i = 0; i < iCount && !bRet; i++) {
619 bRet = pFormat->ParseNull(wsValue, wsFormat);
620 if (bRet)
624 bRet = pFormat->ParseZero(wsValue, wsFormat);
625 if (bRet)
630 bRet = pFormat->ParseNum(wsValue, wsFormat, &fNum);
631 if (bRet)
636 bRet = pFormat->ParseText(wsValue, wsFormat, &m_wsValue);
640 bRet = ValidateCanonicalDate(wsValue, &dt);
641 if (!bRet) {
642 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
645 if (bRet)
651 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Time,
653 if (bRet)
659 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
661 if (bRet)
667 bRet = true;
671 if (!bRet)
677 return bRet;