Lines Matching refs:Condition
29 class Condition;
39 { return typeid (salhelper::Condition *); } in getConditionTypeInfo()
65 class DerivedCondition: public salhelper::Condition {
67 explicit DerivedCondition(osl::Mutex & mutex): Condition(mutex) {} in DerivedCondition()
114 std::auto_ptr< salhelper::Condition > p(new DerivedCondition(mutex)); in testCondition()
115 CPPUNIT_ASSERT(typeid (*p.get()) != typeid (salhelper::Condition)); in testCondition()
116 CPPUNIT_ASSERT(typeid (p.get()) == typeid (salhelper::Condition *)); in testCondition()
118 typeid (const_cast< salhelper::Condition const * >(p.get())) in testCondition()
119 == typeid (salhelper::Condition const *)); in testCondition()
121 typeid (const_cast< salhelper::Condition volatile * >(p.get())) in testCondition()
122 == typeid (salhelper::Condition volatile *)); in testCondition()
123 CPPUNIT_ASSERT(typeid (salhelper::Condition *) == getConditionTypeInfo()); in testCondition()
215 std::auto_ptr< salhelper::Condition > p(new DerivedCondition(mutex)); in testDerivedCondition()