HomeSort by relevance Sort by last modified time
    Searched refs:ElementTypes (Results 1 - 5 of 5) sorted by null

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
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/
LinkModules.cpp 270 SmallVector<Type*, 4> ElementTypes;
271 ElementTypes.resize(Ty->getNumContainedTypes());
273 ElementTypes[i] = getImpl(Ty->getContainedType(i));
274 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
290 return *Entry = ArrayType::get(ElementTypes[0],
293 return *Entry = VectorType::get(ElementTypes[0],
296 return *Entry = PointerType::get(ElementTypes[0],
299 return *Entry = FunctionType::get(ElementTypes[0],
300 makeArrayRef(ElementTypes).slice(1),
304 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 282 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) {
283 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
284 Wosize_val(ElementTypes), 0);
289 value ElementTypes) {
290 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
291 Wosize_val(ElementTypes), 1);
301 value ElementTypes,
303 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes,
304 Wosize_val(ElementTypes), Bool_val(Packed));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 846 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
854 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
876 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
    [all...]
  /external/llvm/lib/IR/
Core.cpp 333 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
335 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
339 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
341 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
358 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
360 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
    [all...]

Completed in 111 milliseconds