/external/clang/lib/CodeGen/ |
CGExprConstant.cpp | 842 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); 846 Str.resize(CAT->getSize().getZExtValue(), '\0'); [all...] |
CGExprCXX.cpp | 505 while (const ConstantArrayType *CAT 507 type = CAT->getElementType(); 508 arraySizeMultiplier *= CAT->getSize(); 779 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>( 784 InitListElements *= getContext().getConstantArrayElementCount(CAT); [all...] |
CGExpr.cpp | 599 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) { 600 if (CAT->getSize().ugt(1)) 638 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) 639 return CGF.Builder.getInt(CAT->getSize()); [all...] |
CGDebugInfo.cpp | [all...] |
CodeGenModule.cpp | [all...] |
TargetInfo.cpp | [all...] |
/development/ndk/sources/android/libportable/arch-mips/ |
pthread.c | 32 #define CAT(x, y) CAT_I(x, y) 48 #define MAYBE_STRIP_PARENS_I(cond, x) CAT(MAYBE_STRIP_PARENS_, cond)(x)
|
/external/clang/lib/AST/ |
ExprConstant.cpp | 122 const ConstantArrayType *CAT = 124 Type = CAT->getElementType(); 125 ArraySize = CAT->getSize().getZExtValue(); 223 void addArrayUnchecked(const ConstantArrayType *CAT) { 229 MostDerivedType = CAT->getElementType(); 230 MostDerivedArraySize = CAT->getSize().getZExtValue(); [all...] |
ASTContext.cpp | 2497 const ConstantArrayType *cat = cast<ConstantArrayType>(ty); local [all...] |
MicrosoftMangle.cpp | [all...] |
/frameworks/compile/slang/ |
slang_rs_export_type.h | 484 // @CAT was normalized by calling RSExportType::NormalizeType() before 487 const clang::ConstantArrayType *CAT);
|
slang_rs_reflection_cpp.cpp | 95 const RSExportConstantArrayType *CAT = 97 std::string ElementTypeName = GetTypeName(CAT->getElementType()); [all...] |
slang_rs_object_ref_count.cpp | 423 const clang::ConstantArrayType *CAT = 425 return static_cast<int>(CAT->getSize().getSExtValue()); [all...] |
slang_rs_reflection.cpp | 202 const RSExportConstantArrayType *CAT = 204 std::string ElementTypeName = GetTypeName(CAT->getElementType()); [all...] |
/external/clang/lib/Sema/ |
SemaExprObjC.cpp | 70 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); 71 assert(CAT && "String literal not of constant array type!"); 73 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1), 74 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers()); [all...] |
SemaExprMember.cpp | [all...] |
SemaInit.cpp | 168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); 184 if (StrLength > CAT->getSize().getZExtValue()) 190 if (StrLength-1 > CAT->getSize().getZExtValue()) 658 if (const ConstantArrayType *CAT = 660 maxElements = static_cast<int>(CAT->getSize().getZExtValue()); [all...] |
SemaDeclObjC.cpp | 131 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) 132 CurrentClass = Cat->getClassInterface(); 833 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, 844 for (const auto *Method : CAT->methods()) { [all...] |
SemaStmt.cpp | [all...] |
SemaChecking.cpp | [all...] |
SemaExprCXX.cpp | [all...] |
SemaExpr.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RegionStore.cpp | [all...] |
/external/llvm/ |
configure | 521 cat >conf$$.file <<_ASEOF 758 CAT [all...] |
/external/clang/lib/Rewrite/Frontend/ |
RewriteModernObjC.cpp | [all...] |