Home
last modified time | relevance | path

Searched refs:ElementTypes (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
Dp9-0x.cpp42 template<typename ...ElementTypes, unsigned ...Bounds>
43 struct split_arrays<ElementTypes[Bounds]...> {
44 typedef tuple<ElementTypes...> element_types;
/external/llvm/lib/Linker/
DLinkModules.cpp272 SmallVector<Type*, 4> ElementTypes; in getImpl() local
273 ElementTypes.resize(Ty->getNumContainedTypes()); in getImpl()
275 ElementTypes[i] = getImpl(Ty->getContainedType(i)); in getImpl()
276 AnyChange |= ElementTypes[i] != Ty->getContainedType(i); in getImpl()
292 return *Entry = ArrayType::get(ElementTypes[0], in getImpl()
295 return *Entry = VectorType::get(ElementTypes[0], in getImpl()
298 return *Entry = PointerType::get(ElementTypes[0], in getImpl()
301 return *Entry = FunctionType::get(ElementTypes[0], in getImpl()
302 makeArrayRef(ElementTypes).slice(1), in getImpl()
306 return *Entry = StructType::get(Ty->getContext(), ElementTypes, in getImpl()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c340 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) { in llvm_struct_type() argument
341 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_struct_type()
342 Wosize_val(ElementTypes), 0); in llvm_struct_type()
347 value ElementTypes) { in llvm_packed_struct_type() argument
348 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_packed_struct_type()
349 Wosize_val(ElementTypes), 1); in llvm_packed_struct_type()
359 value ElementTypes, in llvm_struct_set_body() argument
361 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes, in llvm_struct_set_body()
362 Wosize_val(ElementTypes), Bool_val(Packed)); in llvm_struct_set_body()
/external/llvm/include/llvm-c/
DCore.h942 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
950 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
972 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
/external/llvm/lib/IR/
DCore.cpp414 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, in LLVMStructTypeInContext() argument
416 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext()
420 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, in LLVMStructType() argument
422 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes, in LLVMStructType()
439 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, in LLVMStructSetBody() argument
441 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody()