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

  /external/llvm/include/llvm/IR/
DerivedTypes.h 121 Type *getReturnType() const { return ContainedTys[0]; }
124 param_iterator param_begin() const { return ContainedTys + 1; }
125 param_iterator param_end() const { return &ContainedTys[NumContainedTys]; }
128 Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
208 delete [] ContainedTys; // Delete the body.
278 element_iterator element_begin() const { return ContainedTys; }
279 element_iterator element_end() const { return &ContainedTys[NumContainedTys];}
289 return ContainedTys[N];
314 ContainedTys = &ContainedType;
319 Type *getElementType() const { return ContainedTys[0];
    [all...]
Type.h 92 NumContainedTys(0), ContainedTys(0) {
111 /// ContainedTys list.
114 /// ContainedTys - A pointer to the array of Types contained by this Type.
119 Type * const *ContainedTys;
322 subtype_iterator subtype_begin() const { return ContainedTys; }
323 subtype_iterator subtype_end() const { return &ContainedTys[NumContainedTys];}
331 return ContainedTys[i];
  /external/llvm/lib/IR/
Type.cpp 356 ContainedTys = SubTys;
437 ContainedTys = Elts;

Completed in 40 milliseconds