HomeSort by: relevance | last modified time | path
    Searched refs:getAsArrayType (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
AbstractBasicReader.h 206 elemTy = getASTContext().getAsArrayType(elemTy)->getElementType();
AbstractBasicWriter.h 196 elemTy = ctx.getAsArrayType(elemTy)->getElementType();
ASTContext.h 2539 const ArrayType *getAsArrayType(QualType T) const;
2541 return dyn_cast_or_null<ConstantArrayType>(getAsArrayType(T));
2544 return dyn_cast_or_null<VariableArrayType>(getAsArrayType(T));
2547 return dyn_cast_or_null<IncompleteArrayType>(getAsArrayType(T));
2551 return dyn_cast_or_null<DependentSizedArrayType>(getAsArrayType(T));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp 96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
279 if (const auto *AT = getContext().getAsArrayType(FT)) {
296 if (const auto *AT = getContext().getAsArrayType(FT)) {
592 if (const auto *AT = getContext().getAsArrayType(FT)) {
632 if (const auto *AT = getContext().getAsArrayType(FT)) {
CodeGenTypes.cpp 180 if (const auto *AT = CGT.getContext().getAsArrayType(T))
900 if (const auto *AT = Context.getAsArrayType(T)) {
CodeGenFunction.cpp 1900 getContext().getAsArrayType(Ty))) {
1992 arrayType = getContext().getAsArrayType(elementType);
2030 arrayType = getContext().getAsArrayType(arrayType->getElementType());
2043 arrayType = getContext().getAsArrayType(eltType);
CGExprAgg.cpp 481 CGF.getContext().getAsArrayType(ArrayQTy)->getElementType();
1792 CGF.getContext().getAsArrayType(E->getType())->getElementType();
2106 getContext().getAsArrayType(Ty))) {
CGDecl.cpp 2180 const ArrayType *arrayType = getContext().getAsArrayType(type);
2276 while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
CGExprCXX.cpp 624 = getContext().getAsArrayType(E->getType())) {
CGExprConstant.cpp 2121 const ArrayType *ArrayTy = CGM.getContext().getAsArrayType(DestType);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 139 const ArrayType *arrayType = Context.getAsArrayType(declType);
841 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
1420 SemaRef.Context.getAsArrayType(ElemType)) {
1863 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
2830 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
3099 = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
3275 if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
4405 if (const ArrayType *DestAT = S.Context.getAsArrayType(DestType)) {
5536 if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
5795 if (const ArrayType *DestAT = Context.getAsArrayType(DestType))
    [all...]
SemaStmtAsm.cpp 750 if (const auto *ATy = Context.getAsArrayType(T))
SemaExprCXX.cpp 2396 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
5556 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
5581 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
7290 else if (auto *AT = Context.getAsArrayType(BaseType))
SemaDecl.cpp 3928 const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3929 const ArrayType *NewArray = Context.getAsArrayType(New->getType());
6373 // that to the element type through `getAsArrayType`.
6375 OrigTy = QualType(Context.getAsArrayType(OrigTy), 0);
6386 Type = QualType(Context.getAsArrayType(Type), 0);
11873 if (const auto *AT = S.Context.getAsArrayType(QT))
11938 if (const auto *AT = S.Context.getAsArrayType(QT))
12004 if (const auto *AT = S.Context.getAsArrayType(QT))
17384 else if (Context.getAsArrayType(FD->getType())) {
SemaTemplateDeduction.cpp 1749 const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
3968 auto *ArrTy = S.Context.getAsArrayType(AdjustedParamType);
SemaChecking.cpp 7367 if (const ArrayType *AT = S.Context.getAsArrayType(T)) {
9883 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
9925 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
14105 const ArrayType *AT = S.Context.getAsArrayType(PType);
  /src/external/apache2/llvm/dist/clang/lib/AST/
MicrosoftMangle.cpp 634 } else if (const ArrayType *AT = getASTContext().getAsArrayType(Ty)) {
1823 QualType ElemT = getASTContext().getAsArrayType(T)->getElementType();
2072 if (const auto *AT = getASTContext().getAsArrayType(OriginalType))
2212 if (const ArrayType *AT = getASTContext().getAsArrayType(T)) {
2213 // If there were any Quals, getAsArrayType() pushed them onto the array
ASTContext.cpp 1746 if (const ArrayType *arrayType = getAsArrayType(T)) {
5773 auto *AT1 = getAsArrayType(T1);
5777 auto *AT2 = getAsArrayType(T2);
6085 const ArrayType *ASTContext::getAsArrayType(QualType T) const {
6175 // Get the element type with 'getAsArrayType' so that we don't lose any
6179 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
9820 QualType LHSElem = getAsArrayType(LHS)->getElementType();
9821 QualType RHSElem = getAsArrayType(RHS)->getElementType();
ItaniumMangle.cpp 2789 ty = Context.getASTContext().getAsArrayType(T);
5464 if (const ArrayType *AT = Ctx.getAsArrayType(T))
ExprConstant.cpp 203 const ArrayType *AT = Ctx.getAsArrayType(Type);
8813 auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
11235 BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
11247 const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
13046 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
ASTImporter.cpp 4003 = Importer.getToContext().getAsArrayType(FoundVar->getType());
4005 = Importer.getToContext().getAsArrayType(D->getType());
9291 Importer.FromContext.getAsArrayType(FromElemTy)->getElementType();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 103 while (const ArrayType *AT = Ctx.getAsArrayType(Ty)) {
RegionStore.cpp 1169 if (const ArrayType *AT = Ctx.getAsArrayType(T)) {
1640 QualType T = Ctx.getAsArrayType(StrR->getValueType())->getElementType();
ExprEngine.cpp 1016 while (const auto *AT = getContext().getAsArrayType(DTy))
1117 while (const ArrayType *AT = getContext().getAsArrayType(T)) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 3181 const ArrayType *VarXTy = C.getAsArrayType(VarX->getType());
3182 const ArrayType *VarYTy = C.getAsArrayType(VarY->getType());

Completed in 191 milliseconds

1 2