Searched refs:getAsArrayType (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp74 if (const ArrayType *AT = getContext().getAsArrayType(Ty)) {
175 if (const ArrayType *AT = getContext().getAsArrayType(ObjectType)) {
H A DRegionStore.cpp752 if (const ArrayType *AT = Ctx.getAsArrayType(T)) {
1216 QualType T = Ctx.getAsArrayType(StrR->getValueType())->getElementType();
/external/clang/include/clang/AST/
H A DASTContext.h1677 const ArrayType *getAsArrayType(QualType T) const;
1679 return dyn_cast_or_null<ConstantArrayType>(getAsArrayType(T));
1682 return dyn_cast_or_null<VariableArrayType>(getAsArrayType(T));
1685 return dyn_cast_or_null<IncompleteArrayType>(getAsArrayType(T));
1689 return dyn_cast_or_null<DependentSizedArrayType>(getAsArrayType(T));
/external/clang/lib/AST/
H A DAPValue.cpp417 ElemTy = Ctx.getAsArrayType(ElemTy)->getElementType();
432 const ArrayType *AT = Ctx.getAsArrayType(Ty);
H A DMicrosoftMangle.cpp278 } else if (const ArrayType *AT = getASTContext().getAsArrayType(Ty)) {
971 ty = Context.getASTContext().getAsArrayType(T);
H A DASTContext.cpp1105 if (MinWidth && (arrayType = getAsArrayType(T))) {
3782 const ArrayType *ASTContext::getAsArrayType(QualType T) const { function in class:ASTContext
3872 // Get the element type with 'getAsArrayType' so that we don't lose any
3876 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
6637 QualType LHSElem = getAsArrayType(LHS)->getElementType();
6638 QualType RHSElem = getAsArrayType(RHS)->getElementType();
H A DType.cpp69 if (const ArrayType *AT = Ctx.getAsArrayType(T))
H A DItaniumMangle.cpp1787 ty = Context.getASTContext().getAsArrayType(T);
H A DRecordLayoutBuilder.cpp2050 const ArrayType* ATy = Context.getAsArrayType(D->getType());
H A DASTImporter.cpp2792 = Importer.getToContext().getAsArrayType(FoundVar->getType());
2794 = Importer.getToContext().getAsArrayType(D->getType());
H A DExprConstant.cpp104 cast<ConstantArrayType>(Ctx.getAsArrayType(Type));
5230 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp837 getContext().getAsArrayType(Ty))) {
931 arrayType = getContext().getAsArrayType(elementType);
970 arrayType = getContext().getAsArrayType(arrayType->getElementType());
983 arrayType = getContext().getAsArrayType(eltType);
H A DCGDecl.cpp1273 const ArrayType *arrayType = getContext().getAsArrayType(type);
1362 while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
H A DCGExprAgg.cpp1014 CGF.getContext().getAsArrayType(E->getType())->getElementType();
H A DCGExprConstant.cpp1184 const ArrayType *CAT = Context.getAsArrayType(DestType);
H A DCGDebugInfo.cpp2637 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
2671 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
H A DCGObjCMac.cpp3891 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3897 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
H A DCGExprScalar.cpp1505 CGF.getContext().getAsArrayType(CurrentType)->getElementType();
/external/clang/lib/Sema/
H A DSemaInit.cpp79 const ArrayType *arrayType = Context.getAsArrayType(declType);
397 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
761 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
1145 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1913 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
2097 = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
2285 if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
3936 if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
4062 if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) {
4080 = Context.getAsArrayType(Initialize
[all...]
H A DSemaExprCXX.cpp1466 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
2958 ElTy = S.Context.getAsArrayType(ArgTy)->getElementType();
3688 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
3713 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
H A DSemaChecking.cpp1686 if (const ArrayType *AT = Context.getAsArrayType(T)) {
4984 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
H A DSemaTemplateDeduction.cpp1234 const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
H A DSemaDeclCXX.cpp3515 if (const ArrayType *AT = Context.getAsArrayType(T))
3523 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
H A DSemaDeclAttr.cpp2828 if (S.Context.getAsArrayType(T))
/external/clang/lib/Analysis/
H A DCFG.cpp3305 while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {

Completed in 542 milliseconds

12