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

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallVector.h 173 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
176 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
178 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
201 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
225 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
228 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> {
230 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
265 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
266 typedef SmallVectorTemplateBase<T, isPodLike<T>::value > SuperClass;
275 : SmallVectorTemplateBase<T, isPodLike<T>::value>(N*sizeof(T))
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 62 /// This is the part of SmallVectorTemplateBase which does not depend on whether
173 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
176 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
178 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
230 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
255 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
258 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> {
260 SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
318 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
319 typedef SmallVectorTemplateBase<T, isPodLike<T>::value > SuperClass
    [all...]

Completed in 98 milliseconds