HomeSort by relevance Sort by last modified time
    Searched defs:codePointCompare (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 666 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)
WTFString.cpp 156 int codePointCompare(const String& a, const String& b)
158 return codePointCompare(a.impl(), b.impl());
    [all...]

Completed in 65 milliseconds