Home
last modified time | relevance | path

Searched refs:m_pValue (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/circular_buffer/test/
Dtest.hpp30 int* m_pValue; member in MyInteger
35 delete m_pValue; in check_exception()
36 m_pValue = 0; in check_exception()
44 MyInteger() : m_pValue(new int(0)) { check_exception(); } in MyInteger()
45 MyInteger(int i) : m_pValue(new int(i)) { check_exception(); } in MyInteger()
46 MyInteger(const MyInteger& src) : m_pValue(new int(src)) { check_exception(); } in MyInteger()
47 ~MyInteger() { delete m_pValue; } in ~MyInteger()
52 delete m_pValue; in operator =()
53 m_pValue = new int(src); in operator =()
56 operator int () const { return *m_pValue; } in operator int()
/third_party/boost/libs/log/src/
Dnamed_scope.cpp85 scope_stack* m_pValue;
91 explicit named_scope_value(scope_stack* p) : m_pValue(p) {}
101 callback(*m_pValue);
119 m_DetachedValue = *m_pValue;
120 m_pValue = m_DetachedValue.get_ptr();