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

/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp386 class OffHeapInt : public RefCounted<OffHeapInt> { class in namespace:blink
388 static RefPtr<OffHeapInt> create(int x)
390 return adoptRef(new OffHeapInt(x));
393 virtual ~OffHeapInt()
402 bool operator==(const OffHeapInt& other) const { return other.value() == value(); }
408 OffHeapInt(int x) : m_x(x) { } function in class:blink::OffHeapInt
411 OffHeapInt();
416 int OffHeapInt::s_destructorCalls = 0;
4088 typedef HeapHashMap<PairWithWeakHandling, RefPtr<OffHeapInt> > Ma
[all...]

Completed in 50 milliseconds