Searched defs:ContainedTys (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/
H A DType.h84 NumContainedTys(0), ContainedTys(0) {}
95 /// ContainedTys list.
98 /// ContainedTys - A pointer to the array of Types contained by this Type.
103 Type * const *ContainedTys; member in class:llvm::Type
280 subtype_iterator subtype_begin() const { return ContainedTys; }
281 subtype_iterator subtype_end() const { return &ContainedTys[NumContainedTys];}
289 return ContainedTys[i];
/external/llvm/include/llvm/IR/
H A DType.h89 NumContainedTys(0), ContainedTys(nullptr) {}
100 /// Keeps track of how many Type*'s there are in the ContainedTys list.
108 Type * const *ContainedTys; member in class:llvm::Type
297 subtype_iterator subtype_begin() const { return ContainedTys; }
298 subtype_iterator subtype_end() const { return &ContainedTys[NumContainedTys];}
316 return ContainedTys[i];
341 return ContainedTys[0];

Completed in 117 milliseconds