Searched refs:SmallVectorTemplateBase (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DSmallVector.h60 /// SmallVectorTemplateCommon - This is the part of SmallVectorTemplateBase
162 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
165 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
167 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
263 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
287 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
290 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> { class in namespace:llvm
292 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {} function in class:llvm::SmallVectorTemplateBase
365 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
366 typedef SmallVectorTemplateBase<
[all...]

Completed in 182 milliseconds