Searched refs:ElementTy (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/AST/
H A DMicrosoftMangle.cpp949 void MicrosoftCXXNameMangler::mangleExtraDimensions(QualType ElementTy) { argument
952 if (ElementTy->isConstantArrayType()) {
954 static_cast<const ConstantArrayType *>(ElementTy.getTypePtr());
956 ElementTy = CAT->getElementType();
957 } else if (ElementTy->isVariableArrayType()) {
959 } else if (ElementTy->isDependentSizedArrayType()) {
962 } else if (ElementTy->isIncompleteArrayType()) continue;
965 mangleQualifiers(ElementTy.getQualifiers(), false);
975 mangleType(ElementTy.getLocalUnqualifiedType());
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c343 CAMLprim LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) { argument
344 return LLVMArrayType(ElementTy, Int_val(Count));
348 CAMLprim LLVMTypeRef llvm_pointer_type(LLVMTypeRef ElementTy) { argument
349 return LLVMPointerType(ElementTy, 0);
353 CAMLprim LLVMTypeRef llvm_qualified_pointer_type(LLVMTypeRef ElementTy, argument
355 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
359 CAMLprim LLVMTypeRef llvm_vector_type(LLVMTypeRef ElementTy, value Count) { argument
360 return LLVMVectorType(ElementTy, Int_val(Count));
663 CAMLprim LLVMValueRef llvm_const_array(LLVMTypeRef ElementTy, argument
665 return LLVMConstArray(ElementTy, (LLVMValueRe
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1421 QualType ElementTy = AT->getElementType(); local
1445 return setImplicitDefaultValue(store, R, ElementTy);
1458 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx);
1460 if (ElementTy->isStructureOrClassType())
1462 else if (ElementTy->isArrayType())
1471 newStore = setImplicitDefaultValue(newStore.getStore(), R, ElementTy);
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1135 QualType ElementTy = CAT->getElementType(); local
1136 uint64_t ElementSize = CGM.getContext().getTypeSize(ElementTy);
1139 FillInNullDataMemberPointers(CGM, ElementTy, Elements,
1325 QualType ElementTy = CAT->getElementType(); local
1327 llvm::Constant *Element = EmitNullConstant(ElementTy);
H A DCGDebugInfo.cpp1339 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit); local
1356 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1599 Type *ElementTy = Ty->getElementType(); local
1600 unsigned FrameSize = TD.getTypeAllocSize(ElementTy);
1603 FrameAlign = TLI.getByValTypeAlignment(ElementTy);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp635 Type *ElementTy = Ty->getElementType(); local
636 return getTargetData()->getTypeAllocSize(ElementTy);
/external/llvm/include/llvm-c/
H A DCore.h597 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6358 Type *ElementTy = Ty->getElementType(); local
6359 Flags.setByValSize(getTargetData()->getTypeAllocSize(ElementTy));
6366 FrameAlign = getByValTypeAlignment(ElementTy);
6584 Type *ElementTy = Ty->getElementType(); local
6585 Flags.setByValSize(TD->getTypeAllocSize(ElementTy));
6592 FrameAlign = TLI.getByValTypeAlignment(ElementTy);
/external/llvm/lib/VMCore/
H A DCore.cpp633 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy, argument
636 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));

Completed in 450 milliseconds