Lines Matching refs:wsResult
565 WideString wsResult; in DateFormat() local
575 wsResult += GetLiteralText(strf, &ccf, lenf); in DateFormat()
580 wsResult += strf[ccf++]; in DateFormat()
591 wsResult += NumToString(symbol.GetLength(), day); in DateFormat()
597 wsResult += NumToString(symbol.GetLength(), nDays); in DateFormat()
599 wsResult += NumToString(symbol.GetLength(), month); in DateFormat()
601 wsResult += pLocale->GetMonthName(month - 1, symbol == L"MMM"); in DateFormat()
604 wsResult += NumToString( in DateFormat()
607 wsResult += in DateFormat()
610 wsResult += pLocale->GetEraName(year > 0); in DateFormat()
612 wsResult += NumToString(2, year % 100); in DateFormat()
614 wsResult += NumToString(1, year); in DateFormat()
616 wsResult += NumToString(1, GetWeekOfMonth(year, month, day)); in DateFormat()
618 wsResult += NumToString(2, GetWeekOfYear(year, month, day)); in DateFormat()
621 return wsResult; in DateFormat()
627 WideString wsResult; in TimeFormat() local
645 wsResult += GetLiteralText(strf, &ccf, lenf); in TimeFormat()
650 wsResult += strf[ccf++]; in TimeFormat()
663 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 12 : wHour); in TimeFormat()
665 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 24 : wHour); in TimeFormat()
669 wsResult += NumToString(symbol.GetLength(), wHour); in TimeFormat()
671 wsResult += NumToString(symbol.GetLength(), wHour); in TimeFormat()
673 wsResult += NumToString(symbol.GetLength(), minute); in TimeFormat()
675 wsResult += NumToString(symbol.GetLength(), second); in TimeFormat()
677 wsResult += NumToString(3, millisecond); in TimeFormat()
679 wsResult += pLocale->GetMeridiemName(!bPM); in TimeFormat()
682 wsResult += L"GMT"; in TimeFormat()
686 wsResult += tz.tzHour < 0 ? L"-" : L"+"; in TimeFormat()
687 wsResult += in TimeFormat()
692 return wsResult; in TimeFormat()