charactersToUIntStrict   59 Source/core/html/HTMLDimension.cpp         unsigned integerValue = charactersToUIntStrict(characters + lastParsedIndex, position - lastParsedIndex, &ok);
charactersToUIntStrict   73 Source/core/html/HTMLDimension.cpp                 double fractionValue = charactersToUIntStrict(fractionNumbers.data(), fractionNumbers.size(), &ok);
charactersToUIntStrict  245 Source/core/html/parser/HTMLParserIdioms.cpp         value = charactersToUIntStrict(digits.characters8(), digits.length(), &ok);
charactersToUIntStrict  247 Source/core/html/parser/HTMLParserIdioms.cpp         value = charactersToUIntStrict(digits.characters16(), digits.length(), &ok);
charactersToUIntStrict 1012 Source/wtf/text/StringImpl.cpp         return charactersToUIntStrict(characters8(), m_length, ok, base);
charactersToUIntStrict 1013 Source/wtf/text/StringImpl.cpp     return charactersToUIntStrict(characters16(), m_length, ok, base);
charactersToUIntStrict   47 Source/wtf/text/WTFString.h WTF_EXPORT unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
charactersToUIntStrict   48 Source/wtf/text/WTFString.h WTF_EXPORT unsigned charactersToUIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
charactersToUIntStrict  686 Source/wtf/text/WTFString.h using WTF::charactersToUIntStrict;