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

/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DSmallVector.h61 /// SmallVectorTemplateCommon - This is the part of SmallVectorTemplateBase
167 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
170 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
172 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
268 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
293 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
296 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> { class in namespace:llvm
298 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {} function in class:llvm::SmallVectorTemplateBase
371 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
372 typedef SmallVectorTemplateBase<
[all...]

Completed in 93 milliseconds