Searched refs:charactersToUInt64Strict (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryInputStream.cpp45 result = charactersToUInt64Strict(m_string.characters8() + m_offset + start, end - start, &isResultOK);
47 result = charactersToUInt64Strict(m_string.characters16() + m_offset + start, end - start, &isResultOK);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h51 WTF_EXPORT uint64_t charactersToUInt64Strict(const LChar*, size_t, bool* ok = 0, int base = 10);
52 WTF_EXPORT uint64_t charactersToUInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 10);
678 using WTF::charactersToUInt64Strict;
H A DWTFString.cpp1093 uint64_t charactersToUInt64Strict(const LChar* data, size_t length, bool* ok, int base) function in namespace:WTF
1098 uint64_t charactersToUInt64Strict(const UChar* data, size_t length, bool* ok, int base) function in namespace:WTF
H A DStringImpl.cpp1026 return charactersToUInt64Strict(characters8(), m_length, ok, base);
1027 return charactersToUInt64Strict(characters16(), m_length, ok, base);

Completed in 576 milliseconds