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 673 static inline int codePointCompare(unsigned l1, unsigned l2, const CharacterType1* c1, const CharacterType2* c2)
694 return codePointCompare(string1->length(), string2->length(), string1->characters8(), string2->characters8());
699 return codePointCompare(string1->length(), string2->length(), string1->characters16(), string2->characters16());
704 return codePointCompare(string1->length(), string2->length(), string1->characters8(), string2->characters16());
707 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 78 milliseconds