Searched refs:charactersToUIntStrict (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimension.cpp59 unsigned integerValue = charactersToUIntStrict(characters + lastParsedIndex, position - lastParsedIndex, &ok);
73 double fractionValue = charactersToUIntStrict(fractionNumbers.data(), fractionNumbers.size(), &ok);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserIdioms.cpp245 value = charactersToUIntStrict(digits.characters8(), digits.length(), &ok);
247 value = charactersToUIntStrict(digits.characters16(), digits.length(), &ok);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h47 WTF_EXPORT unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
48 WTF_EXPORT unsigned charactersToUIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
676 using WTF::charactersToUIntStrict;
H A DWTFString.cpp1073 unsigned charactersToUIntStrict(const LChar* data, size_t length, bool* ok, int base) function in namespace:WTF
1078 unsigned charactersToUIntStrict(const UChar* data, size_t length, bool* ok, int base) function in namespace:WTF
H A DStringImpl.cpp1012 return charactersToUIntStrict(characters8(), m_length, ok, base);
1013 return charactersToUIntStrict(characters16(), m_length, ok, base);

Completed in 647 milliseconds