Lines Matching refs:p

85     std::auto_ptr< salhelper::Condition > p(new DerivedCondition(mutex));  in TEST_F()  local
86 ASSERT_TRUE(typeid (*p.get()) != typeid (salhelper::Condition)); in TEST_F()
87 ASSERT_TRUE(typeid (p.get()) == typeid (salhelper::Condition *)); in TEST_F()
89 typeid (const_cast< salhelper::Condition const * >(p.get())) in TEST_F()
92 typeid (const_cast< salhelper::Condition volatile * >(p.get())) in TEST_F()
98 salhelper::ConditionModifier * p = 0; in TEST_F() local
99 ASSERT_TRUE(typeid (*p) == typeid (salhelper::ConditionModifier)); in TEST_F()
100 ASSERT_TRUE(typeid (p) == typeid (salhelper::ConditionModifier *)); in TEST_F()
102 typeid (const_cast< salhelper::ConditionModifier const * >(p)) in TEST_F()
105 typeid (const_cast< salhelper::ConditionModifier volatile * >(p)) in TEST_F()
113 salhelper::ConditionWaiter * p = 0; in TEST_F() local
114 ASSERT_TRUE(typeid (*p) == typeid (salhelper::ConditionWaiter)); in TEST_F()
115 ASSERT_TRUE(typeid (p) == typeid (salhelper::ConditionWaiter *)); in TEST_F()
117 typeid (const_cast< salhelper::ConditionWaiter const * >(p)) in TEST_F()
120 typeid (const_cast< salhelper::ConditionWaiter volatile * >(p)) in TEST_F()
147 salhelper::ORealDynamicLoader * p = 0; in TEST_F() local
148 ASSERT_TRUE(typeid (p) != typeid (salhelper::ORealDynamicLoader)); in TEST_F()
149 ASSERT_TRUE(typeid (p) == typeid (salhelper::ORealDynamicLoader *)); in TEST_F()
151 typeid (const_cast< salhelper::ORealDynamicLoader const * >(p)) in TEST_F()
154 typeid (const_cast< salhelper::ORealDynamicLoader volatile * >(p)) in TEST_F()
162 salhelper::SimpleReferenceObject * p = new DerivedSimpleReferenceObject; in TEST_F() local
165 typeid (*p) != typeid (salhelper::SimpleReferenceObject)); in TEST_F()
167 typeid (p) == typeid (salhelper::SimpleReferenceObject *)); in TEST_F()
169 typeid (const_cast< salhelper::SimpleReferenceObject const * >(p)) in TEST_F()
173 (const_cast< salhelper::SimpleReferenceObject volatile * >(p))) in TEST_F()
179 delete static_cast< DerivedSimpleReferenceObject * >(p); in TEST_F()
186 std::auto_ptr< salhelper::Condition > p(new DerivedCondition(mutex)); in TEST_F() local
187 ASSERT_TRUE(dynamic_cast< DerivedCondition * >(p.get()) != 0); in TEST_F()
191 std::auto_ptr< salhelper::ConditionWaiter::timedout > p( in TEST_F() local
194 dynamic_cast< DerivedConditionWaiterTimedout * >(p.get()) != 0); in TEST_F()
204 salhelper::SimpleReferenceObject * p = new DerivedSimpleReferenceObject; in TEST_F() local
206 ASSERT_TRUE(dynamic_cast< DerivedSimpleReferenceObject * >(p) != 0); in TEST_F()
208 delete static_cast< DerivedSimpleReferenceObject * >(p); in TEST_F()