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 272 SmallVector<Type*, 4> ElementTypes;
273 ElementTypes.resize(Ty->getNumContainedTypes());
275 ElementTypes[i] = getImpl(Ty->getContainedType(i));
276 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
292 return *Entry = ArrayType::get(ElementTypes[0],
295 return *Entry = VectorType::get(ElementTypes[0],
298 return *Entry = PointerType::get(ElementTypes[0],
301 return *Entry = FunctionType::get(ElementTypes[0],
302 makeArrayRef(ElementTypes).slice(1),
306 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 340 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) {
341 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
342 Wosize_val(ElementTypes), 0);
347 value ElementTypes) {
348 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
349 Wosize_val(ElementTypes), 1);
359 value ElementTypes,
361 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes,
362 Wosize_val(ElementTypes), Bool_val(Packed));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 942 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
950 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
972 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
    [all...]
  /external/llvm/lib/IR/
Core.cpp 414 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
416 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
420 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
422 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
439 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
441 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
    [all...]

Completed in 347 milliseconds