Searched defs:CharTy (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Sema/
H A Dwarn-char-subscripts.c45 typedef char CharTy; typedef
48 CharTy subscript = 0;
/external/clang/include/clang/AST/
H A DASTContext.h773 CanQualType CharTy; member in class:clang::ASTContext
1632 return getTypeSize(CharTy);
/external/clang/lib/Sema/
H A DSemaInit.cpp2224 QualType CharTy = AT->getElementType(); local
2227 QualType PromotedCharTy = CharTy;
2228 if (CharTy->isPromotableIntegerType())
2229 PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2245 if (CharTy != PromotedCharTy)
2246 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2267 if (CharTy != PromotedCharTy)
2268 Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
H A DSemaExpr.cpp1513 QualType CharTy = Context.CharTy; local
1516 CharTy = Context.getWideCharType();
1521 CharTy = Context.Char16Ty;
1524 CharTy = Context.Char32Ty;
1527 CharTy = Context.UnsignedCharTy;
1530 QualType CharTyConst = CharTy;
1595 unsigned CharBits = Context.getIntWidth(CharTy);
1596 bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1599 TemplateArgument TypeArg(CharTy);
[all...]

Completed in 110 milliseconds