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

  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 53 class VectorDestructorBase {
55 ~VectorDestructorBase() {}
59 class VectorDestructorBase<inlineCapacity, true, false> {};
62 class VectorDestructorBase<0, true, true> {};
68 class Vector : public VectorDestructorBase<inlineCapacity,
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 509 // VectorDestructorBase defines the destructor of a vector. This base is used in order to
517 class VectorDestructorBase {
519 ~VectorDestructorBase() { static_cast<Derived*>(this)->finalize(); }
524 class VectorDestructorBase<Derived, Elements, false, true> { };
545 class VectorDestructorBase<Derived, Elements, true, true> : public HeapVectorWithInlineCapacityDestructorBase<Derived, VectorTraits<Elements>::needsDestruction> { };
548 class Vector : private VectorBuffer<T, inlineCapacity, Allocator>, public VectorDestructorBase<Vector<T, inlineCapacity, Allocator>, T, (inlineCapacity > 0), Allocator::isGarbageCollected> {
    [all...]

Completed in 138 milliseconds