Searched defs:ElementType (Results 26 - 50 of 52) sorted by relevance

123

/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVModule.cpp671 SPIRVModuleImpl::addArrayType(SPIRVType *ElementType, SPIRVConstant *Length) { argument
672 return addType(new SPIRVTypeArray(this, getId(), ElementType, Length));
698 SPIRVType *ElementType) {
700 ElementType));
697 addPointerType(SPIRVStorageClassKind StorageClass, SPIRVType *ElementType) argument
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp154 Address Ptr, QualType ElementType,
307 QualType ElementType) override;
421 QualType ElementType) override;
999 QualType ElementType,
1008 cast<CXXRecordDecl>(ElementType->getAs<RecordType>()->getDecl());
1026 ElementType);
1740 QualType ElementType) {
1750 std::max(SizeSize, Ctx.getTypeAlignInChars(ElementType));
1751 assert(CookieSize == getArrayCookieSizeImpl(ElementType));
996 emitVirtualObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType, const CXXDestructorDecl *Dtor) argument
1736 InitializeArrayCookie(CodeGenFunction &CGF, Address NewPtr, llvm::Value *NumElements, const CXXNewExpr *expr, QualType ElementType) argument
H A DMicrosoftCXXABI.cpp116 Address Ptr, QualType ElementType,
425 QualType ElementType) override;
854 QualType ElementType,
863 CGF.EmitDeleteCall(DE->getOperatorDelete(), MDThis, ElementType);
851 emitVirtualObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType, const CXXDestructorDecl *Dtor) argument
H A DCGOpenMPRuntime.cpp5518 QualType ElementType = PtrTy->getPointeeType(); local
5519 CurSizes.push_back(CGF.getTypeSize(ElementType));
5523 CurMapTypes.push_back(ElementType->isAggregateType()
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1488 QualType ElementType = cast<ValueDecl>(D)->getType(); local
1489 if (ElementType->isObjCQualifiedIdType() ||
1490 ElementType->isObjCQualifiedInterfaceType())
1494 elementTypeAsString = ElementType.getAsString(Context->getPrintingPolicy());
H A DRewriteModernObjC.cpp1697 QualType ElementType = cast<ValueDecl>(D)->getType(); local
1698 if (ElementType->isObjCQualifiedIdType() ||
1699 ElementType->isObjCQualifiedInterfaceType())
1703 elementTypeAsString = ElementType.getAsString(Context->getPrintingPolicy());
/external/clang/lib/Sema/
H A DSemaInit.cpp682 QualType ElementType; local
688 ElementType = AType->getElementType();
694 ElementType = VType->getElementType();
699 ElementType = ILE->getType();
716 Filler = new (SemaRef.Context) NoInitExpr(ElementType);
2552 QualType ElementType = AT->getElementType(); local
2557 ElementEntity, IList, DIE, DesigIdx + 1, ElementType, nullptr,
H A DSemaChecking.cpp8051 QualType ElementType = Element->getType(); local
8053 if (ElementType->getAs<ObjCObjectPointerType>() &&
8060 << ElementType << ElementKind << TargetElementType
H A DTreeTransform.h730 QualType RebuildArrayType(QualType ElementType,
742 QualType RebuildConstantArrayType(QualType ElementType,
753 QualType RebuildIncompleteArrayType(QualType ElementType,
763 QualType RebuildVariableArrayType(QualType ElementType,
774 QualType RebuildDependentSizedArrayType(QualType ElementType,
785 QualType RebuildVectorType(QualType ElementType, unsigned NumElements,
793 QualType RebuildExtVectorType(QualType ElementType, unsigned NumElements,
801 QualType RebuildDependentSizedExtVectorType(QualType ElementType,
4401 QualType ElementType = getDerived().TransformType(TLB, TL.getElementLoc()); local
4402 if (ElementType
4442 QualType ElementType = getDerived().TransformType(TLB, TL.getElementLoc()); local
4470 QualType ElementType = getDerived().TransformType(TLB, TL.getElementLoc()); local
4509 QualType ElementType = getDerived().TransformType(TLB, TL.getElementLoc()); local
4559 QualType ElementType = getDerived().TransformType(T->getElementType()); local
4600 QualType ElementType = getDerived().TransformType(T->getElementType()); local
4623 QualType ElementType = getDerived().TransformType(T->getElementType()); local
9486 QualType ElementType local
11501 RebuildArrayType(QualType ElementType, ArrayType::ArraySizeModifier SizeMod, const llvm::APInt *Size, Expr *SizeExpr, unsigned IndexTypeQuals, SourceRange BracketsRange) argument
11537 RebuildConstantArrayType(QualType ElementType, ArrayType::ArraySizeModifier SizeMod, const llvm::APInt &Size, unsigned IndexTypeQuals, SourceRange BracketsRange) argument
11548 RebuildIncompleteArrayType(QualType ElementType, ArrayType::ArraySizeModifier SizeMod, unsigned IndexTypeQuals, SourceRange BracketsRange) argument
11558 RebuildVariableArrayType(QualType ElementType, ArrayType::ArraySizeModifier SizeMod, Expr *SizeExpr, unsigned IndexTypeQuals, SourceRange BracketsRange) argument
11570 RebuildDependentSizedArrayType(QualType ElementType, ArrayType::ArraySizeModifier SizeMod, Expr *SizeExpr, unsigned IndexTypeQuals, SourceRange BracketsRange) argument
11581 RebuildVectorType(QualType ElementType, unsigned NumElements, VectorType::VectorKind VecKind) argument
11589 RebuildExtVectorType(QualType ElementType, unsigned NumElements, SourceLocation AttributeLoc) argument
11602 RebuildDependentSizedExtVectorType(QualType ElementType, Expr *SizeExpr, SourceLocation AttributeLoc) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp5306 QualType ElementType = readType(*Loc.F, Record, Idx); local
5311 return Context.getConstantArrayType(ElementType, Size,
5316 QualType ElementType = readType(*Loc.F, Record, Idx); local
5319 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
5323 QualType ElementType = readType(*Loc.F, Record, Idx); local
5328 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
5339 QualType ElementType = readType(*Loc.F, Record, Idx); local
5342 return Context.getVectorType(ElementType, NumElements,
5352 QualType ElementType = readType(*Loc.F, Record, Idx); local
5354 return Context.getExtVectorType(ElementType, NumElement
5630 QualType ElementType = readType(*Loc.F, Record, Idx); local
5675 QualType ElementType = readType(*Loc.F, Record, Idx); local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp4453 /// type ElementType would fit in a target-legal register.
4455 Type *ElementType);
4667 Type *ElementType) {
4668 auto *IT = dyn_cast<IntegerType>(ElementType);
4665 WouldFitInRegister(const DataLayout &DL, uint64_t TableSize, Type *ElementType) argument
/external/swiftshader/src/Reactor/
H A DNucleus.cpp759 llvm::Type *Nucleus::getPointerType(llvm::Type *ElementType) argument
761 return llvm::PointerType::get(ElementType, 0);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp349 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
350 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
353 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) { argument
354 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
357 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
358 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
/external/robolectric/v3/runtime/
H A Dtagsoup-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/clang/include/clang/AST/
H A DType.h2120 QualType ElementType; member in class:clang::ComplexType
2126 ElementType(Element) {
2131 QualType getElementType() const { return ElementType; }
2467 QualType ElementType; member in class:clang::ArrayType
2482 ElementType(et) {
2490 QualType getElementType() const { return ElementType; }
2535 QualType ElementType,
2722 QualType ElementType; member in class:clang::DependentSizedExtVectorType
2725 DependentSizedExtVectorType(const ASTContext &Context, QualType ElementType,
2732 QualType getElementType() const { return ElementType; }
2768 QualType ElementType; member in class:clang::VectorType
2797 Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumElements, TypeClass TypeClass, VectorKind VecKind) argument
5194 QualType ElementType; member in class:clang::FunctionType::ExtInfo::FunctionProtoType::PipeType
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp8238 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, local
8243 Type = Context.getVectorType(ElementType, NumElements,
8255 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, local
8257 Type = Context.getExtVectorType(ElementType, NumElements);
8261 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, local
8264 Type = Context.getComplexType(ElementType);
H A DExprConstant.cpp7676 QualType ElementType = Type->getAs<PointerType>()->getPointeeType(); local
7679 if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
7687 << ElementType;
/external/llvm/lib/IR/
H A DCore.cpp568 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
569 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
572 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) { argument
573 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
576 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
577 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
/external/v8/src/
H A Dobjects.h5130 typedef typename Traits::ElementType ElementType; typedef in class:v8::internal::KeyCollectionMode::FixedTypedArray
5135 inline ElementType get_scalar(int index);
5137 inline void set(int index, ElementType value);
5139 static inline ElementType from_int(int value);
5140 static inline ElementType from_double(double value);
5156 typedef elementType ElementType; \
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp17039 MVT ElementType = VT.getVectorElementType(); local
17046 if (ShiftAmt >= ElementType.getSizeInBits()) {
17048 ShiftAmt = ElementType.getSizeInBits() - 1;
17075 Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), dl, ElementType));
17087 Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), dl, ElementType));
17099 Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), dl, ElementType));
26399 EVT ElementType = InputVector.getValueType().getVectorElementType(); local
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 913 milliseconds

123