Lines Matching refs:formatStr
1104 CFX_ByteString formatStr; in DateFmt() local
1105 GetStandardDateFormat(pThis, iStyle, szLocal.AsStringC(), formatStr); in DateFmt()
1106 args.GetReturnValue()->SetString(formatStr.AsStringC()); in DateFmt()
1221 CFX_ByteString formatStr; in LocalDateFmt() local
1222 GetLocalDateFormat(pThis, iStyle, szLocal.AsStringC(), formatStr, false); in LocalDateFmt()
1223 args.GetReturnValue()->SetString(formatStr.AsStringC()); in LocalDateFmt()
1259 CFX_ByteString formatStr; in LocalTimeFmt() local
1260 GetLocalTimeFormat(pThis, iStyle, szLocal.AsStringC(), formatStr, false); in LocalTimeFmt()
1261 args.GetReturnValue()->SetString(formatStr.AsStringC()); in LocalTimeFmt()
1639 CFX_ByteString formatStr; in TimeFmt() local
1640 GetStandardTimeFormat(pThis, iStyle, szLocal.AsStringC(), formatStr); in TimeFmt()
1641 args.GetReturnValue()->SetString(formatStr.AsStringC()); in TimeFmt()
4394 CFX_ByteString formatStr = "%"; in Str() local
4396 formatStr += "."; in Str()
4397 formatStr += CFX_ByteString::FormatInteger(iPrecision); in Str()
4399 formatStr += "f"; in Str()
4400 numberString.Format(formatStr.c_str(), fNumber); in Str()