Home
last modified time | relevance | path

Searched refs:isAscii (Results 1 – 15 of 15) sorted by relevance

/external/arduino/hardware/arduino/cores/arduino/
DWCharacter.h28 inline boolean isAscii(int c) __attribute__((always_inline));
62 inline boolean isAscii(int c) in isAscii() function
/external/clang/include/clang/Lex/
DLiteralSupport.h152 bool isAscii() const { return Kind == tok::char_constant; } in isAscii() function
215 bool isAscii() const { return Kind == tok::string_literal; } in isAscii() function
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
DFontCacheWin.cpp209 bool isAscii = false; in LookupAltName() local
215 isAscii = true; in LookupAltName()
227 if ((isAscii && systemCp == fontCp) || (!isAscii && systemCp != fontCp)) { in LookupAltName()
/external/clang/lib/Sema/
DSemaStmtAsm.cpp92 if (!AsmString->isAscii()) in ActOnGCCAsmStmt()
98 if (!Literal->isAscii()) in ActOnGCCAsmStmt()
130 if (!Literal->isAscii()) in ActOnGCCAsmStmt()
193 if (!Literal->isAscii()) in ActOnGCCAsmStmt()
DSemaDeclAttr.cpp1449 if (!Str || !Str->isAscii()) { in handleWeakRefAttr()
1474 if (!Str || !Str->isAscii()) { in handleAliasAttr()
2306 if (!Str || !Str->isAscii()) { in handleVisibilityAttr()
4013 if (!Str || !Str->isAscii()) { in CheckCallingConvAttr()
4572 if (!Str || !Str->isAscii()) { in handleUuidAttr()
DSemaExprObjC.cpp55 if (!S->isAscii()) { in ParseObjCStringLiteral()
391 if (String->isAscii()) { in CheckObjCCollectionLiteralElement()
DSemaChecking.cpp88 if (!Literal || !Literal->isAscii()) { in SemaBuiltinAnnotation()
1549 if (!Literal || !Literal->isAscii()) { in CheckObjCString()
3440 if (!FExpr->isAscii() && !FExpr->isUTF8()) { in CheckFormatString()
DSemaExpr.cpp10405 if (!SL || !SL->isAscii()) in MakeObjCStringLiteralFixItHint()
/external/clang/lib/Lex/
DLiteralSupport.cpp1007 bool NoErrorOnBadEncoding = isAscii(); in CharLiteralParser()
1061 else if (isAscii() && NumCharsSoFar == 4) in CharLiteralParser()
1063 else if (isAscii()) in CharLiteralParser()
1076 if (isAscii() && isMultiChar()) { in CharLiteralParser()
1100 if (isAscii() && NumCharsSoFar == 1 && (Value & 128) && in CharLiteralParser()
1205 if (isAscii()) { in init()
1451 bool NoErrorOnBadEncoding = isAscii(); in CopyStringFragment()
DPreprocessor.cpp773 assert(Literal.isAscii() && "Didn't allow wide strings in"); in FinishLexStringLiteral()
DPPDirectives.cpp924 assert(Literal.isAscii() && "Didn't allow wide strings in"); in HandleLineDirective()
1060 assert(Literal.isAscii() && "Didn't allow wide strings in"); in HandleDigitDirective()
/external/chromium/chrome/browser/resources/
Dkeyboard_overlay.js196 function isAscii(c) { function
224 if (isAscii(keyLabel) &&
/external/chromium_org/chrome/browser/resources/chromeos/
Dkeyboard_overlay.js288 function isAscii(c) { function
325 if (isAscii(keyLabel) &&
/external/clang/lib/CodeGen/
DCodeGenModule.cpp2541 if (S->isAscii() || S->isUTF8()) { in GetAddrOfConstantStringFromLiteral()
/external/clang/include/clang/AST/
DExpr.h1528 bool isAscii() const { return Kind == Ascii; } in isAscii() function