Searched refs:ElementTypes (Results 1 – 6 of 6) 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 | 267 SmallVector<Type*, 4> ElementTypes; in getImpl() local 268 ElementTypes.resize(Ty->getNumContainedTypes()); in getImpl() 270 ElementTypes[i] = getImpl(Ty->getContainedType(i)); in getImpl() 271 AnyChange |= ElementTypes[i] != Ty->getContainedType(i); in getImpl() 287 return *Entry = ArrayType::get(ElementTypes[0], in getImpl() 290 return *Entry = VectorType::get(ElementTypes[0], in getImpl() 293 return *Entry = PointerType::get(ElementTypes[0], in getImpl() 296 return *Entry = FunctionType::get(ElementTypes[0], in getImpl() 297 makeArrayRef(ElementTypes).slice(1), in getImpl() 301 return *Entry = StructType::get(Ty->getContext(), ElementTypes, in getImpl()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 282 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) { in llvm_struct_type() argument 283 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_struct_type() 284 Wosize_val(ElementTypes), 0); in llvm_struct_type() 289 value ElementTypes) { in llvm_packed_struct_type() argument 290 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes, in llvm_packed_struct_type() 291 Wosize_val(ElementTypes), 1); in llvm_packed_struct_type() 301 value ElementTypes, in llvm_struct_set_body() argument 303 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes, in llvm_struct_set_body() 304 Wosize_val(ElementTypes), Bool_val(Packed)); in llvm_struct_set_body()
|
/external/llvm/lib/VMCore/ |
D | Core.cpp | 301 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, in LLVMStructTypeInContext() argument 303 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext() 307 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, in LLVMStructType() argument 309 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes, in LLVMStructType() 326 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, in LLVMStructSetBody() argument 328 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 784 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, 792 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount, 814 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 1538 llvm::Value *ElementTypes[2]; in CreateType() local 1541 ElementTypes[0] = in CreateType() 1547 ElementTypes[1] = in CreateType() 1552 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes); in CreateType()
|