Home | History | Annotate | Download | only in parser

Lines Matching refs:wsOutput

1671           CFX_WideString wsOutput;
1672 NormalizeNumStr(wsValue, wsOutput);
1673 FormatNumStr(wsOutput, pLocale, wsOutput);
1674 wsValue = wsOutput;
1824 CFX_WideString& wsOutput) {
1828 wsOutput = wsValue;
1829 wsOutput.TrimLeft('0');
1830 int32_t dot_index = wsOutput.Find('.');
1832 if (!wsOutput.IsEmpty() && dot_index >= 0 &&
1834 wsOutput.TrimRight(L"0");
1835 wsOutput.TrimRight(L".");
1837 if (wsOutput.IsEmpty() || wsOutput[0] == '.')
1838 wsOutput.Insert(0, '0');
1843 CFX_WideString& wsOutput) {
1863 wsOutput.clear();
1866 wsOutput += wsGroupSymbol;
1868 wsOutput += wsSrcNum[i];
1873 wsOutput += wsSymbol;
1874 wsOutput += wsSrcNum.Right(len - dot_index - 1);
1879 wsOutput = wsMinusymbol + wsOutput;