Home | History | Annotate | Download | only in heap

Lines Matching refs:NoAllocationScope

1090 // The NoAllocationScope class is used in debug mode to catch unwanted
1093 class NoAllocationScope {
1095 NoAllocationScope() : m_active(true) { enter(); }
1097 explicit NoAllocationScope(bool active) : m_active(active) { enter(); }
1099 NoAllocationScope(const NoAllocationScope& other) : m_active(other.m_active) { enter(); }
1101 NoAllocationScope& operator=(const NoAllocationScope& other)
1109 ~NoAllocationScope() { release(); }