Searched defs:codePointCompare (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.h666 static inline int codePointCompare(unsigned l1, unsigned l2, const CharacterType1* c1, const CharacterType2* c2)
687 return codePointCompare(string1->length(), string2->length(), string1->characters8(), string2->characters8());
692 return codePointCompare(string1->length(), string2->length(), string1->characters16(), string2->characters16());
697 return codePointCompare(string1->length(), string2->length(), string1->characters8(), string2->characters16());
700 static inline int codePointCompare(const StringImpl* string1, const StringImpl* string2) function in class:WTF::StringImpl
H A DWTFString.cpp156 int codePointCompare(const String& a, const String& b) function in namespace:WTF
158 return codePointCompare(a.impl(), b.impl());

Completed in 151 milliseconds