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

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 123 inline char toASCIILower(char c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
124 inline unsigned short toASCIILower(unsigned short c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
126 inline wchar_t toASCIILower(wchar_t c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
128 inline int toASCIILower(int c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
163 using WTF::toASCIILower;
  /external/chromium/third_party/icu/source/common/
uidna.cpp 49 toASCIILower(UChar ch){
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
357 // toASCIILower(b2,b2Len);
  /external/chromium/third_party/icu/source/test/intltest/
idnaref.cpp 63 toASCIILower(UChar ch){
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
  /external/icu4c/common/
uidna.cpp 49 toASCIILower(UChar ch){
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
357 // toASCIILower(b2,b2Len);
  /external/icu4c/test/intltest/
idnaref.cpp 63 toASCIILower(UChar ch){
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);

Completed in 267 milliseconds