HomeSort by relevance Sort by last modified time
    Searched full:deallocator (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/chromium_org/v8/src/
smart-pointers.h 12 template<typename Deallocator, typename T>
23 SmartPointerBase(const SmartPointerBase<Deallocator, T>& rhs)
25 const_cast<SmartPointerBase<Deallocator, T>&>(rhs).p_ = NULL;
60 if (p_) Deallocator::Delete(p_);
67 SmartPointerBase<Deallocator, T>& operator=(
68 const SmartPointerBase<Deallocator, T>& rhs) {
71 const_cast<SmartPointerBase<Deallocator, T>&>(rhs).p_ = NULL;
82 ~SmartPointerBase() { if (p_) Deallocator::Delete(p_); }
  /external/chromium_org/ui/aura/
window_property.h 78 Window::PropertyDeallocator deallocator; member in struct:aura::WindowProperty
86 value == property->default_value ? NULL : property->deallocator,
89 if (property->deallocator &&
91 (*property->deallocator)(old);
135 void Deallocator ## NAME (int64 p) { \
140 {DEFAULT,#NAME,&Deallocator ## NAME}; \