Lines Matching refs:Interface
89 class Interface: public css::uno::XInterface { class
91 explicit Interface(osl::Condition & condition): in Interface() function in __anon481f6b320211::Interface
103 virtual ~Interface() { m_condition.set(); } in ~Interface()
106 Interface(Interface &); // not implemented
107 void operator =(Interface); // not implemented
115 css::uno::Any Interface::queryInterface(css::uno::Type const & type) in queryInterface()
124 void Interface::release() throw () { in release()
132 class Base: public Interface, public test::javauno::acquire::XBase {
134 explicit Base(osl::Condition & condition): Interface(condition) {} in Base()
139 virtual void SAL_CALL acquire() throw () { Interface::acquire(); } in acquire()
141 virtual void SAL_CALL release() throw () { Interface::release(); } in release()
156 : Interface::queryInterface(type); in queryInterface()
185 : Interface::queryInterface(type); in queryInterface()
365 test->setInterfaceToInterface(new Interface(c.get())); in run()
372 static_cast< Interface * >(new Base(c.get()))); in run()
379 static_cast< Interface * >(new Derived(c.get()))); in run()
439 test->roundTripInterfaceToInterface(new Interface(c.get()))); in run()
444 static_cast< Interface * >(new Base(c.get())))); in run()
449 static_cast< Interface * >(new Derived(c.get())))); in run()