Home | History | Annotate | Download | only in parser

Lines Matching full:bret

109   FX_BOOL bRet = FALSE;

112 for (; i < iCount && !bRet; i++) {
118 bRet = pFormat->ParseNull(wsValue, wsFormat);
119 if (!bRet) {
120 bRet = wsValue.IsEmpty();
124 bRet = pFormat->ParseZero(wsValue, wsFormat);
125 if (!bRet) {
126 bRet = wsValue == FX_WSTRC(L"0");
131 bRet = pFormat->ParseNum(wsValue, wsFormat, fNum);
132 if (!bRet) {
133 bRet = pFormat->FormatNum(wsValue, wsFormat, wsOutput);
138 bRet = pFormat->ParseText(wsValue, wsFormat, wsOutput);
140 if (!bRet) {
141 bRet = pFormat->FormatText(wsValue, wsFormat, wsOutput);
146 bRet = ValidateCanonicalDate(wsValue, dt);
147 if (!bRet) {
148 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
150 if (!bRet) {
151 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
159 bRet =
161 if (!bRet) {
162 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
169 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
171 if (!bRet) {
172 bRet = pFormat->FormatDateTime(wsValue, wsFormat, wsOutput,
178 bRet = FALSE;
182 if (bRet && pMatchFormat) {
189 return bRet;
460 FX_BOOL bRet = FALSE;
466 bRet = FormatSinglePattern(wsResult, wsPatterns[i], pLocale, eValueType);
467 if (bRet) {
472 return bRet;
484 FX_BOOL bRet = FALSE;
491 bRet = pFormat->FormatNull(wsFormat, wsResult);
496 bRet = pFormat->FormatZero(wsFormat, wsResult);
500 bRet = pFormat->FormatNum(m_wsValue, wsFormat, wsResult);
503 bRet = pFormat->FormatText(m_wsValue, wsFormat, wsResult);
506 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
510 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
514 bRet = pFormat->FormatDateTime(m_wsValue, wsFormat, wsResult,
519 bRet = TRUE;
522 if (!bRet && (eCategory != FX_LOCALECATEGORY_Num ||
529 return bRet;
817 FX_BOOL bRet = FALSE;
819 for (int32_t i = 0; i < iCount && !bRet; i++) {
825 bRet = pFormat->ParseNull(wsValue, wsFormat);
826 if (bRet) {
831 bRet = pFormat->ParseZero(wsValue, wsFormat);
832 if (bRet) {
838 bRet = pFormat->ParseNum(wsValue, wsFormat, fNum);
839 if (bRet) {
845 bRet = pFormat->ParseText(wsValue, wsFormat, m_wsValue);
849 bRet = ValidateCanonicalDate(wsValue, dt);
850 if (!bRet) {
851 bRet = pFormat->ParseDateTime(wsValue, wsFormat, FX_DATETIMETYPE_Date,
854 if (bRet) {
861 bRet =
863 if (bRet) {
870 bRet = pFormat->ParseDateTime(wsValue, wsFormat,
872 if (bRet) {
879 bRet = TRUE;
883 if (!bRet) {
890 return bRet;