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

  /external/webkit/Source/JavaScriptCore/wtf/
ASCIICType.h 46 inline bool isASCII(char c) { return !(c & ~0x7F); }
47 inline bool isASCII(unsigned short c) { return !(c & ~0x7F); }
49 inline bool isASCII(wchar_t c) { return !(c & ~0x7F); }
51 inline bool isASCII(int c) { return !(c & ~0x7F); }
52 inline bool isASCII(unsigned c) { return !(c & ~0x7F); }
165 using WTF::isASCII;
  /external/icu4c/test/intltest/
uts46test.cpp 85 static UBool isASCII(const UnicodeString &str) {
619 if((aNInfo.getErrors()&severeErrors)==0 && !isASCII(aN)) {
625 if((aTInfo.getErrors()&severeErrors)==0 && !isASCII(aT)) {
    [all...]
  /external/icu4c/common/
uts46.cpp     [all...]

Completed in 192 milliseconds