Searched refs:ElementTypes (Results 1 – 7 of 7) sorted by relevance
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
D | p9-0x.cpp | 42 template<typename ...ElementTypes, unsigned ...Bounds> 43 struct split_arrays<ElementTypes[Bounds]...> { 44 typedef tuple<ElementTypes...> element_types;
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 279 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/ |
D | DIBuilderBindings.cpp | 136 LLVMMetadataRef ElementTypes) { in LLVMDIBuilderCreateStructType() argument 142 ElementTypes ? DIArray(unwrap<MDTuple>(ElementTypes)) : nullptr); in LLVMDIBuilderCreateStructType()
|
D | DIBuilderBindings.h | 85 LLVMMetadataRef ElementTypes);
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 342 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/ |
D | Core.h | 948 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, 956 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount, 978 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
|
/external/llvm/lib/IR/ |
D | Core.cpp | 416 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()
|