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

  /external/chromium_org/third_party/WebKit/Source/platform/
Supplementable.h 91 template<typename T, bool isGarbageCollected>
94 template<typename T, bool isGarbageCollected>
97 template<typename T, bool isGarbageCollected>
129 template<typename T, bool isGarbageCollected = false>
130 class SupplementBase : public SupplementTracing<isGarbageCollected> {
136 static void provideTo(SupplementableBase<T, isGarbageCollected>& host, const char* key, typename SupplementableTraits<T, isGarbageCollected>::SupplementArgumentType supplement)
141 static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isGarbageCollected>& host, const char* key)
146 static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isGarbageCollected>* host, const char* key
    [all...]
CrossThreadCopier.h 64 template<bool isConvertibleToInteger, bool isThreadSafeRefCounted, bool isGarbageCollected, typename T> struct CrossThreadCopierBase;
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 44 static const bool isGarbageCollected = false;
52 template<size_t inlineCapacity, bool isGarbageCollected, bool tNeedsDestruction>
69 Allocator::isGarbageCollected,
178 static const bool isGarbageCollected = true;
  /external/chromium_org/third_party/WebKit/public/platform/
WebPrivatePtr.h 53 static const bool isGarbageCollected = WTF::IsSubclassOfTemplate<T, GarbageCollected>::value;
57 !isGarbageCollected ? RefCountedLifetime :
  /external/chromium_org/third_party/WebKit/Source/wtf/
DefaultAllocator.h 64 static const bool isGarbageCollected = false;
Vector.h 310 VectorUnusedSlotClearer<Allocator::isGarbageCollected && (VectorTraits<T>::needsDestruction || ShouldBeTraced<VectorTraits<T> >::value), T>::clear(from, to);
516 template<typename Derived, typename Elements, bool hasInlineCapacity, bool isGarbageCollected>
548 class Vector : private VectorBuffer<T, inlineCapacity, Allocator>, public VectorDestructorBase<Vector<T, inlineCapacity, Allocator>, T, (inlineCapacity > 0), Allocator::isGarbageCollected> {
568 COMPILE_ASSERT(!Allocator::isGarbageCollected || !VectorTraits<T>::needsDestruction || VectorTraits<T>::canInitializeWithMemset, ClassHasProblemsWithFinalizersCalledOnClearedMemory);
580 COMPILE_ASSERT(!Allocator::isGarbageCollected || !VectorTraits<T>::needsDestruction || VectorTraits<T>::canInitializeWithMemset, ClassHasProblemsWithFinalizersCalledOnClearedMemory);
595 if (LIKELY(m_size) && !(Allocator::isGarbageCollected && this->hasOutOfLineBuffer())) {
    [all...]
ListHashSet.h 57 template<typename Derived, typename Allocator, bool isGarbageCollected>
78 : public ListHashSetDestructorBase<ListHashSet<ValueArg, inlineCapacity, HashArg, AllocatorArg>, AllocatorArg, AllocatorArg::isGarbageCollected> {
369 if (NodeAllocator::isGarbageCollected && HashTraits<ValueArg>::needsDestruction)
375 ASSERT(NodeAllocator::isGarbageCollected);
698 COMPILE_ASSERT(!Allocator::isGarbageCollected, FinalizeOnHeapAllocatedListHashSetShouldNeverBeCalled);
    [all...]
Deque.h 46 class Deque : public VectorDestructorBase<Deque<T, inlineCapacity, Allocator>, T, (inlineCapacity > 0), Allocator::isGarbageCollected> {
276 if (!isEmpty() && !(Allocator::isGarbageCollected && m_buffer.hasOutOfLineBuffer()))
522 ASSERT(Allocator::isGarbageCollected); // Garbage collector must be enabled.
HashTable.h 349 template<typename Derived, bool isGarbageCollected>
364 class HashTable : public HashTableDestructorBase<HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>, Allocator::isGarbageCollected> {
427 ASSERT(!Allocator::isGarbageCollected);
528 static void deleteBucket(ValueType& bucket) { bucket.~ValueType(); Traits::constructDeletedValue(bucket, Allocator::isGarbageCollected); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Handle.h     [all...]
Heap.h     [all...]

Completed in 367 milliseconds