Searched defs:isASCII (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DASCIICType.h46 inline bool isASCII(char c) { return !(c & ~0x7F); } function in namespace:WTF
47 inline bool isASCII(unsigned short c) { return !(c & ~0x7F); } function in namespace:WTF
49 inline bool isASCII(wchar_t c) { return !(c & ~0x7F); } function in namespace:WTF
51 inline bool isASCII(int c) { return !(c & ~0x7F); } function in namespace:WTF
52 inline bool isASCII(unsigned c) { return !(c & ~0x7F); } function in namespace:WTF
165 using WTF::isASCII;
/external/icu4c/test/intltest/
H A Duts46test.cpp85 static UBool isASCII(const UnicodeString &str) { function
619 if((aNInfo.getErrors()&severeErrors)==0 && !isASCII(aN)) {
625 if((aTInfo.getErrors()&severeErrors)==0 && !isASCII(aT)) {
/external/icu4c/common/
H A Duts46.cpp894 UBool isASCII=TRUE; local
906 isASCII=onlyLDH=FALSE;
911 isASCII=FALSE;
915 isASCII=onlyLDH=FALSE;
922 if(toASCII && isASCII && labelLength>63) {

Completed in 123 milliseconds