Home
last modified time | relevance | path

Searched refs:ElementTypes (Results 1 – 7 of 7) 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.cpp279 SmallVector<Type *, 4> ElementTypes; in get() local
288 ElementTypes.resize(Ty->getNumContainedTypes()); in get()
290 ElementTypes[I] = get(Ty->getContainedType(I), Visited); in get()
291 AnyChange |= ElementTypes[I] != Ty->getContainedType(I); in get()
300 finishType(DTy, STy, ElementTypes); in get()
316 return *Entry = ArrayType::get(ElementTypes[0], in get()
319 return *Entry = VectorType::get(ElementTypes[0], in get()
322 return *Entry = PointerType::get(ElementTypes[0], in get()
325 return *Entry = FunctionType::get(ElementTypes[0], in get()
326 makeArrayRef(ElementTypes).slice(1), in get()
[all …]
/external/llvm/bindings/go/llvm/
DDIBuilderBindings.cpp136 LLVMMetadataRef ElementTypes) { in LLVMDIBuilderCreateStructType() argument
142 ElementTypes ? DIArray(unwrap<MDTuple>(ElementTypes)) : nullptr); in LLVMDIBuilderCreateStructType()
DDIBuilderBindings.h85 LLVMMetadataRef ElementTypes);
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c342 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) { in llvm_struct_type() argument
343 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_struct_type()
344 Wosize_val(ElementTypes), 0); in llvm_struct_type()
349 value ElementTypes) { in llvm_packed_struct_type() argument
350 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_packed_struct_type()
351 Wosize_val(ElementTypes), 1); in llvm_packed_struct_type()
361 value ElementTypes, in llvm_struct_set_body() argument
363 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes, in llvm_struct_set_body()
364 Wosize_val(ElementTypes), Bool_val(Packed)); in llvm_struct_set_body()
/external/llvm/include/llvm-c/
DCore.h948 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
956 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
978 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
/external/llvm/lib/IR/
DCore.cpp416 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, in LLVMStructTypeInContext() argument
418 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext()
422 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, in LLVMStructType() argument
424 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes, in LLVMStructType()
441 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, in LLVMStructSetBody() argument
443 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody()