HomeSort by relevance Sort by last modified time
    Searched refs:ElementTypes (Results 1 - 6 of 6) 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 237 SmallVector<Type*, 4> ElementTypes;
238 ElementTypes.resize(Ty->getNumContainedTypes());
240 ElementTypes[i] = getImpl(Ty->getContainedType(i));
241 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
257 return *Entry = ArrayType::get(ElementTypes[0],
260 return *Entry = VectorType::get(ElementTypes[0],
263 return *Entry = PointerType::get(ElementTypes[0],
266 return *Entry = FunctionType::get(ElementTypes[0],
267 makeArrayRef(ElementTypes).slice(1),
271 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 283 CAMLprim LLVMTypeRef llvm_struct_type(LLVMContextRef C, value ElementTypes) {
284 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
285 Wosize_val(ElementTypes), 0);
290 value ElementTypes) {
291 return LLVMStructTypeInContext(C, (LLVMTypeRef *) ElementTypes,
292 Wosize_val(ElementTypes), 1);
302 value ElementTypes,
304 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes,
305 Wosize_val(ElementTypes), Bool_val(Packed));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 407 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
409 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
413 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp 293 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
295 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
299 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
301 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
318 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
320 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]

Completed in 505 milliseconds