toDoubleType     1188 Source/wtf/text/WTFString.cpp     return toDoubleType<LChar, DisallowTrailingJunk>(data, length, ok, parsedLength);
toDoubleType     1194 Source/wtf/text/WTFString.cpp     return toDoubleType<UChar, DisallowTrailingJunk>(data, length, ok, parsedLength);
toDoubleType     1201 Source/wtf/text/WTFString.cpp     return static_cast<float>(toDoubleType<LChar, DisallowTrailingJunk>(data, length, ok, parsedLength));
toDoubleType     1208 Source/wtf/text/WTFString.cpp     return static_cast<float>(toDoubleType<UChar, DisallowTrailingJunk>(data, length, ok, parsedLength));
toDoubleType     1214 Source/wtf/text/WTFString.cpp     return static_cast<float>(toDoubleType<LChar, AllowTrailingJunk>(data, length, 0, parsedLength));
toDoubleType     1220 Source/wtf/text/WTFString.cpp     return static_cast<float>(toDoubleType<UChar, AllowTrailingJunk>(data, length, 0, parsedLength));