Lines Matching refs:xFormProps
173 Reference< XPropertySet > xFormProps(xRowSet, UNO_QUERY); in getConnection() local
174 if (!xFormProps.is()) in getConnection()
177 …xConn = Reference< XConnection > (*(Reference< XInterface > *)xFormProps->getPropertyValue(C2U("Ac… in getConnection()
207 Reference< XPropertySet > xFormProps( _rxForm, UNO_QUERY ); in getColumns() local
208 if (xFormProps.is() && xSupplyTables.is()) in getColumns()
212 …DBG_ASSERT((*(sal_Int32*)xFormProps->getPropertyValue(C2U("CommandType")).getValue()) == CommandTy… in getColumns()
215 xFormProps->getPropertyValue(C2U("Command")) >>= sTable; in getColumns()
1086 Reference< XPropertySet > xFormProps( m_xForm, UNO_QUERY_THROW ); in setFilter() local
1087 xFormProps->setPropertyValue( C2U( "Filter" ), makeAny( aQuery ) ); in setFilter()
1088 xFormProps->setPropertyValue( C2U( "ApplyFilter" ), makeAny( sal_True ) ); in setFilter()
1105 Reference< XPropertySet > xFormProps( m_xForm, UNO_QUERY_THROW ); in getFilter() local
1106 OSL_VERIFY( xFormProps->getPropertyValue( C2U( "Filter" ) ) >>= aQueryString ); in getFilter()