Home | History | Annotate | Download | only in javascript

Lines Matching full:strvalue

922   CFX_ByteString strValue = StrTrim(CFX_ByteString::FromUnicode(Value));
923 if (strValue.IsEmpty())
944 strValue.Replace(",", ".");
945 double dValue = atof(strValue);
952 strValue = fcvt(dValue, iDec, &iDec2, &iNegative);
953 if (strValue.IsEmpty()) {
955 strValue = fcvt(dValue, iDec, &iDec2, &iNegative);
956 if (strValue.IsEmpty()) {
957 strValue = "0";
964 strValue = "0" + strValue;
968 int iMax = strValue.GetLength();
971 strValue += "0";
979 strValue.Insert(iDec2, '.');
982 strValue.Insert(iDec2, ',');
987 strValue.Insert(iDec2, '0');
997 strValue.Insert(iDecPositive, cSeperator);
1005 Value = CFX_WideString::FromLocal(strValue);
1219 CFX_ByteString strValue = StrTrim(CFX_ByteString::FromUnicode(Value));
1220 if (strValue.IsEmpty())
1233 double dValue = atof(strValue);
1240 strValue
1241 if (strValue.IsEmpty()) {
1243 strValue = fcvt(dValue, iDec, &iDec2, &iNegative);
1248 strValue = "0" + strValue;
1252 int iMax = strValue.GetLength();
1255 strValue += "0";
1263 strValue.Insert(iDec2, '.');
1266 strValue.Insert(iDec2, ',');
1271 strValue.Insert(iDec2, '0');
1281 strValue.Insert(iDecPositive, cSeperator);
1288 strValue = "-" + strValue;
1289 strValue += "%";
1290 Value = CFX_WideString::FromLocal(strValue);
1319 CFX_WideString strValue = val;
1320 if (strValue.IsEmpty())
1326 if (strValue.Find(L"GMT") != -1) {
1329 dDate = MakeInterDate(strValue);
1331 dDate = MakeRegularDate(strValue, sFormat, nullptr);
1346 double CJS_PublicMethods::MakeInterDate(CFX_WideString strValue) {
1357 int nSize = strValue.GetLength();
1360 FX_WCHAR c = strValue.GetAt(i);
1410 dRet = JS_DateParse(strValue.c_str());
1433 CFX_WideString strValue = pEvent->Value();
1434 if (strValue.IsEmpty())
1439 double dRet = MakeRegularDate(strValue, sFormat, &bWrongFormat);