Searched defs:CAT (Results 1 - 8 of 8) sorted by relevance

/external/kernel-headers/original/asm-mips/
H A Dasm.h22 #ifndef CAT
28 #define CAT(str1, str2) __CAT(str1, str2) macro
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp886 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType()); local
890 Str.resize(CAT->getSize().getZExtValue(), '\0');
1184 const ArrayType *CAT = Context.getAsArrayType(DestType); local
1195 CAT->getElementType(), CGF);
1203 CAT->getElementType(), CGF);
1275 if (const ConstantArrayType *CAT =
1277 QualType ElementTy = CAT->getElementType();
1280 for (uint64_t I = 0, E = CAT->getSize().getZExtValue(); I != E; ++I) {
1468 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) {
1472 QualType ElementTy = CAT
[all...]
H A DCodeGenModule.cpp2292 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local
2293 Str.resize(CAT->getSize().getZExtValue());
2332 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); local
2333 Str.resize(CAT->getSize().getZExtValue());
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp741 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument
755 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
756 e = CAT->meth_end(); i != e; ++i) {
H A DSemaInit.cpp103 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); local
119 if (StrLength > CAT->getSize().getZExtValue())
125 if (StrLength-1 > CAT->getSize().getZExtValue())
497 if (const ConstantArrayType *CAT =
499 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
1183 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1184 maxElements = CAT->getSize();
H A DSemaExpr.cpp3764 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); local
3765 if (!CAT)
3773 if (ArgCAT->getSize().ult(CAT->getSize())) {
3777 << (unsigned) CAT->getSize().getZExtValue();
/external/clang/lib/AST/
H A DExprConstant.cpp103 const ConstantArrayType *CAT = local
105 Type = CAT->getElementType();
106 ArraySize = CAT->getSize().getZExtValue();
204 void addArrayUnchecked(const ConstantArrayType *CAT) { argument
210 MostDerivedType = CAT->getElementType();
211 MostDerivedArraySize = CAT->getSize().getZExtValue();
751 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { argument
753 Designator.addArrayUnchecked(CAT);
1545 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType); local
1546 assert(CAT
3760 const ConstantArrayType *CAT = local
3788 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType()); local
[all...]
H A DASTContext.cpp1222 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local
1224 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
1225 uint64_t Size = CAT->getSize().getZExtValue();
3514 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
3515 return getConstantArrayType(unqualElementType, CAT->getSize(),
3516 CAT->getSizeModifier(), 0);
3814 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
3815 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
3816 CAT->getSizeModifier(),
3817 CAT
[all...]

Completed in 1217 milliseconds