Lines Matching defs:m_disabled
559 explicit DisableAllocationGuard(bool disable = true) : m_disabled(disable)
562 if (globalMemCounter.disable_allocations == true) m_disabled = false;
563 if (m_disabled) globalMemCounter.disableAllocations();
567 if (m_disabled) globalMemCounter.enableAllocations();
568 m_disabled = false;
576 bool m_disabled;
585 TEST_CONSTEXPR_CXX14 explicit ConstexprDisableAllocationGuard(bool disable = true) : m_disabled(disable)
589 if (globalMemCounter.disable_allocations == true) m_disabled = false;
590 if (m_disabled) globalMemCounter.disableAllocations();
592 m_disabled = false;
598 if (m_disabled) globalMemCounter.enableAllocations();
599 m_disabled = false;
608 bool m_disabled;