Searched refs:ElemType (Results 1 - 12 of 12) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp63 const Type *ElemType = Last->getType()->getArrayElementTypeNoTypeQual(); local
67 FlexSize = Ctx.getTypeSizeInChars(ElemType);
73 FlexSize = Ctx.getTypeSizeInChars(ElemType);
H A DMallocSizeofChecker.cpp166 QualType ElemType = AT->getElementType(); local
169 T = ElemType;
/external/llvm/lib/IR/
H A DDataLayout.cpp767 Type *ElemType = GV->getType()->getElementType();
768 unsigned Alignment = getPrefTypeAlignment(ElemType);
773 Alignment = std::max(GVAlignment, getABITypeAlignment(ElemType));
780 if (getTypeSizeInBits(ElemType) > 128)
/external/opencv3/modules/core/test/
H A Dtest_mat.cpp939 template <class ElemType>
948 const ElemType* mElem = &m.at<ElemType>(y,x*mChannels);
953 const ElemType* mvElem = &mv[i].at<ElemType>(y,x*(int)mvChannel);
/external/clang/lib/Sema/
H A DSemaInit.cpp258 InitListExpr *IList, QualType ElemType,
1031 QualType ElemType,
1037 if (ElemType->isReferenceType())
1038 return CheckReferenceType(Entity, IList, ElemType, Index,
1043 IsStringInit(SubInitList->getInit(0), ElemType, SemaRef.Context) ==
1048 = getStructuredSubobjectInit(IList, Index, ElemType,
1051 CheckExplicitInitList(Entity, SubInitList, ElemType,
1070 assert(SemaRef.Context.hasSameType(expr->getType(), ElemType) &&
1111 } else if (ElemType->isScalarType() || ElemType
1029 CheckSubElementType(const InitializedEntity &Entity, InitListExpr *IList, QualType ElemType, unsigned &Index, InitListExpr *StructuredList, unsigned &StructuredIndex) argument
[all...]
H A DSemaOpenMP.cpp6513 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
6518 bool IsConstant = ElemType.isConstant(Context);
6671 buildVarDecl(*this, DE->getExprLoc(), ElemType, VD->getName());
6672 VDInitRefExpr = buildDeclRefExpr(*this, VDInit, ElemType, ELoc);
6674 ElemType = ElemType.getUnqualifiedType();
6675 auto *VDInitTemp = buildVarDecl(*this, DE->getLocStart(), ElemType,
7816 auto ElemType = Context.getBaseElementType(Type).getNonReferenceType();
7818 buildVarDecl(*this, DE->getLocStart(), ElemType.getUnqualifiedType(),
7821 *this, SrcVD, ElemType
[all...]
H A DSemaType.cpp6768 QualType ElemType = Context.getBaseElementType(T); local
6769 if ((isCompleteType(Loc, ElemType) || ElemType->isVoidType()) &&
6778 const RecordType *RT = ElemType->getAs<RecordType>();
6787 if (RequireCompleteType(Loc, ElemType, diag::note_non_literal_incomplete, T))
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp847 llvm::Type *ElemType = AType->getElementType(); local
870 bool RewriteType = (fillC && fillC->getType() != ElemType);
888 RewriteType |= (Elts[i]->getType() != ElemType);
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp2129 QualType ElemType = VT->getElementType(); local
2140 const ElementRegion *ER = MRMgr.getElementRegion(ElemType, Idx, R, Ctx);
2142 if (ElemType->isArrayType())
2144 else if (ElemType->isStructureOrClassType())
/external/v8/src/compiler/
H A Dtyper.cc1958 #define TYPED_ARRAY_CASE(ElemType, type, TYPE, ctype, size) \
1959 case kExternal##ElemType##Array: \
1960 return Type::Union(typer_->cache_.k##ElemType, Type::Undefined(), zone());
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3924 Type *ElemType = cast<PointerType>(PtrType)->getElementType();
3926 if (ValType && ValType != ElemType)
3929 if (!PointerType::isLoadableOrStorableType(ElemType))
/external/clang/lib/Serialization/
H A DASTReader.cpp5208 QualType ElemType = readType(*Loc.F, Record, Idx); local
5209 return Context.getComplexType(ElemType);

Completed in 532 milliseconds