Home
last modified time | relevance | path

Searched refs:setType (Results 1 – 25 of 87) sorted by relevance

1234

/trunk/main/connectivity/source/drivers/ado/
H A DADatabaseMetaData.cxx1035 return ResultSetType::FORWARD_ONLY != setType; in ownUpdatesAreVisible()
1040 return ResultSetType::FORWARD_ONLY != setType; in ownDeletesAreVisible()
1045 return ResultSetType::FORWARD_ONLY != setType; in ownInsertsAreVisible()
1050 return ResultSetType::FORWARD_ONLY != setType; in othersUpdatesAreVisible()
1055 return ResultSetType::FORWARD_ONLY != setType; in othersDeletesAreVisible()
1060 return ResultSetType::FORWARD_ONLY != setType; in othersInsertsAreVisible()
1063 sal_Bool SAL_CALL ODatabaseMetaData::updatesAreDetected( sal_Int32 setType ) throw(SQLException, Ru… in updatesAreDetected() argument
1065 return ResultSetType::FORWARD_ONLY != setType; in updatesAreDetected()
1068 sal_Bool SAL_CALL ODatabaseMetaData::deletesAreDetected( sal_Int32 setType ) throw(SQLException, Ru… in deletesAreDetected() argument
1070 return ResultSetType::FORWARD_ONLY != setType; in deletesAreDetected()
[all …]
/trunk/main/connectivity/source/drivers/jdbc/
H A DDatabaseMetaData.cxx1336 return impl_callBooleanMethodWithIntArg( "supportsResultSetType", mID, setType ); in supportsResultSetType()
1350 out = t.pEnv->CallBooleanMethod( object, mID, setType, concurrency); in supportsResultSetConcurrency()
1361 return impl_callBooleanMethodWithIntArg( "ownUpdatesAreVisible", mID, setType ); in ownUpdatesAreVisible()
1367 return impl_callBooleanMethodWithIntArg( "ownDeletesAreVisible", mID, setType ); in ownDeletesAreVisible()
1373 return impl_callBooleanMethodWithIntArg( "ownInsertsAreVisible", mID, setType ); in ownInsertsAreVisible()
1379 return impl_callBooleanMethodWithIntArg( "othersUpdatesAreVisible", mID, setType ); in othersUpdatesAreVisible()
1385 return impl_callBooleanMethodWithIntArg( "othersDeletesAreVisible", mID, setType ); in othersDeletesAreVisible()
1391 return impl_callBooleanMethodWithIntArg( "othersInsertsAreVisible", mID, setType ); in othersInsertsAreVisible()
1397 return impl_callBooleanMethodWithIntArg( "updatesAreDetected", mID, setType ); in updatesAreDetected()
1403 return impl_callBooleanMethodWithIntArg( "deletesAreDetected", mID, setType ); in deletesAreDetected()
[all …]
/trunk/main/mysqlc/source/
H A Dmysqlc_databasemetadata.hxx219 …sal_Bool SAL_CALL supportsResultSetType(sal_Int32 setType) throw(my_SQLException, my_RuntimeExcept…
220 …sal_Bool SAL_CALL supportsResultSetConcurrency(sal_Int32 setType, sal_Int32 concurrency) throw(my_…
221 …sal_Bool SAL_CALL ownUpdatesAreVisible(sal_Int32 setType) throw(my_SQLException, my_RuntimeExcepti…
222 …sal_Bool SAL_CALL ownDeletesAreVisible(sal_Int32 setType) throw(my_SQLException, my_RuntimeExcepti…
223 …sal_Bool SAL_CALL ownInsertsAreVisible(sal_Int32 setType) throw(my_SQLException, my_RuntimeExcepti…
224 …sal_Bool SAL_CALL othersUpdatesAreVisible(sal_Int32 setType)throw(my_SQLException, my_RuntimeExcep…
225 …sal_Bool SAL_CALL othersDeletesAreVisible(sal_Int32 setType)throw(my_SQLException, my_RuntimeExcep…
226 …sal_Bool SAL_CALL othersInsertsAreVisible(sal_Int32 setType)throw(my_SQLException, my_RuntimeExcep…
227 …sal_Bool SAL_CALL updatesAreDetected(sal_Int32 setType) throw(my_SQLException, my_RuntimeExceptio…
228 …sal_Bool SAL_CALL deletesAreDetected(sal_Int32 setType) throw(my_SQLException, my_RuntimeExceptio…
[all …]
H A Dmysqlc_databasemetadata.cxx1356 sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetType(sal_Int32 setType) in supportsResultSetType() argument
1388 sal_Bool SAL_CALL ODatabaseMetaData::ownUpdatesAreVisible(sal_Int32 setType) in ownUpdatesAreVisible() argument
1397 sal_Bool SAL_CALL ODatabaseMetaData::ownDeletesAreVisible(sal_Int32 setType) in ownDeletesAreVisible() argument
1406 sal_Bool SAL_CALL ODatabaseMetaData::ownInsertsAreVisible(sal_Int32 setType) in ownInsertsAreVisible() argument
1415 sal_Bool SAL_CALL ODatabaseMetaData::othersUpdatesAreVisible(sal_Int32 setType) in othersUpdatesAreVisible() argument
1424 sal_Bool SAL_CALL ODatabaseMetaData::othersDeletesAreVisible(sal_Int32 setType) in othersDeletesAreVisible() argument
1433 sal_Bool SAL_CALL ODatabaseMetaData::othersInsertsAreVisible(sal_Int32 setType) in othersInsertsAreVisible() argument
1442 sal_Bool SAL_CALL ODatabaseMetaData::updatesAreDetected(sal_Int32 setType) in updatesAreDetected() argument
1445 … impl_getRSTypeMetaData("updatesAreDetected", &sql::DatabaseMetaData::updatesAreDetected, setType); in updatesAreDetected()
1451 sal_Bool SAL_CALL ODatabaseMetaData::deletesAreDetected(sal_Int32 setType) in deletesAreDetected() argument
[all …]
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLDatabaseMetaData.java1648 return jdbcDatabaseMetaData.ownUpdatesAreVisible(setType); in ownUpdatesAreVisible()
1657 return jdbcDatabaseMetaData.ownDeletesAreVisible(setType); in ownDeletesAreVisible()
1666 return jdbcDatabaseMetaData.ownInsertsAreVisible(setType); in ownInsertsAreVisible()
1675 return jdbcDatabaseMetaData.othersUpdatesAreVisible(setType); in othersUpdatesAreVisible()
1684 return jdbcDatabaseMetaData.othersDeletesAreVisible(setType); in othersDeletesAreVisible()
1700 public boolean updatesAreDetected(int setType) throws SQLException { in updatesAreDetected() argument
1702 return jdbcDatabaseMetaData.updatesAreDetected(setType); in updatesAreDetected()
1709 public boolean deletesAreDetected(int setType) throws SQLException { in deletesAreDetected() argument
1711 return jdbcDatabaseMetaData.deletesAreDetected(setType); in deletesAreDetected()
1718 public boolean insertsAreDetected(int setType) throws SQLException { in insertsAreDetected() argument
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/text/
H A DMasterPageFactory.java264 masterPage.setType("master-page"); in createMasterPage()
281 header.setType("header"); in setupMasterPage()
290 footer.setType("footer"); in setupMasterPage()
313 headerStyle.setType("header-style"); in createPageStyle()
322 footerStyle.setType("footer-style"); in createPageStyle()
372 headerStyle.setType("header-style"); in derivePageStyle()
385 footerStyle.setType("footer-style"); in derivePageStyle()
408 headerFooterProps.setType("header-footer-properties"); in applyHeaderFooterHeight()
H A DTextRawReportTarget.java379 sectionProperties.setType("section-properties"); in generateSectionStyle()
388 columns.setType("columns"); in generateSectionStyle()
405 column.setType("column"); in generateSectionStyle()
415 style.setType("style"); in generateSectionStyle()
473 paragraphProps.setType(PARAGRAPH_PROPERTIES); in createVariablesStyle()
483 textProps.setType("text-properties"); in createVariablesStyle()
667 paragraphProps.setType(PARAGRAPH_PROPERTIES); in startOther()
/trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSDatabaseMetaData.cxx690 sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetType( sal_Int32 setType ) throw(SQLException,… in supportsResultSetType() argument
695 sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 con… in supportsResultSetConcurrency() argument
700 sal_Bool SAL_CALL ODatabaseMetaData::ownUpdatesAreVisible( sal_Int32 setType ) throw(SQLException, … in ownUpdatesAreVisible() argument
705 sal_Bool SAL_CALL ODatabaseMetaData::ownDeletesAreVisible( sal_Int32 setType ) throw(SQLException, … in ownDeletesAreVisible() argument
710 sal_Bool SAL_CALL ODatabaseMetaData::ownInsertsAreVisible( sal_Int32 setType ) throw(SQLException, … in ownInsertsAreVisible() argument
715 sal_Bool SAL_CALL ODatabaseMetaData::othersUpdatesAreVisible( sal_Int32 setType ) throw(SQLExceptio… in othersUpdatesAreVisible() argument
720 sal_Bool SAL_CALL ODatabaseMetaData::othersDeletesAreVisible( sal_Int32 setType ) throw(SQLExceptio… in othersDeletesAreVisible() argument
725 sal_Bool SAL_CALL ODatabaseMetaData::othersInsertsAreVisible( sal_Int32 setType ) throw(SQLExceptio… in othersInsertsAreVisible() argument
730 sal_Bool SAL_CALL ODatabaseMetaData::updatesAreDetected( sal_Int32 setType ) throw(SQLException, Ru… in updatesAreDetected() argument
735 sal_Bool SAL_CALL ODatabaseMetaData::deletesAreDetected( sal_Int32 setType ) throw(SQLException, Ru… in deletesAreDetected() argument
[all …]
H A DSDatabaseMetaData.hxx189 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
190 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
191 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
192 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
193 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
194 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
195 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
196 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
197 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
198 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/inc/file/
H A DFDatabaseMetaData.hxx175 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
176 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
177 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
178 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
179 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
180 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
181 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
182 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
183 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
184 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/drivers/evoab2/
H A DNDatabaseMetaData.hxx215 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
216 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
217 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
218 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
219 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
220 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
221 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
222 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
223 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
224 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/drivers/odbcbase/
H A DODatabaseMetaData.cxx1599 return (nValue & static_cast<SQLUINTEGER>(setType)) == static_cast<SQLUINTEGER>(setType); in supportsResultSetType()
1606 switch(setType) in supportsResultSetConcurrency()
1634 sal_Bool SAL_CALL ODatabaseMetaData::ownUpdatesAreVisible( sal_Int32 setType ) throw(SQLException, … in ownUpdatesAreVisible() argument
1638 switch(setType) in ownUpdatesAreVisible()
1656 sal_Bool SAL_CALL ODatabaseMetaData::ownDeletesAreVisible( sal_Int32 setType ) throw(SQLException, … in ownDeletesAreVisible() argument
1660 switch(setType) in ownDeletesAreVisible()
1678 sal_Bool SAL_CALL ODatabaseMetaData::ownInsertsAreVisible( sal_Int32 setType ) throw(SQLException, … in ownInsertsAreVisible() argument
1682 switch(setType) in ownInsertsAreVisible()
1702 return ownUpdatesAreVisible(setType); in othersUpdatesAreVisible()
1707 return ownDeletesAreVisible(setType); in othersDeletesAreVisible()
[all …]
/trunk/main/connectivity/source/inc/ado/
H A DADatabaseMetaData.hxx208 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
209 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
210 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
211 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
212 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
213 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
214 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
215 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
216 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
217 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/inc/java/sql/
H A DDatabaseMetaData.hxx192 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
193 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
194 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
195 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
196 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
197 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
198 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
199 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
200 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
201 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/inc/odbc/
H A DODatabaseMetaData.hxx203 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
204 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
205 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
206 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
207 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
208 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
209 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
210 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
211 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
212 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
/trunk/main/connectivity/source/drivers/macab/
H A DMacabDatabaseMetaData.hxx190 …virtual sal_Bool SAL_CALL supportsResultSetType( sal_Int32 setType ) throw(::com::sun::star::sdbc:…
191 …virtual sal_Bool SAL_CALL supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 concurrency )…
192 …virtual sal_Bool SAL_CALL ownUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
193 …virtual sal_Bool SAL_CALL ownDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
194 …virtual sal_Bool SAL_CALL ownInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdbc::…
195 …virtual sal_Bool SAL_CALL othersUpdatesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
196 …virtual sal_Bool SAL_CALL othersDeletesAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
197 …virtual sal_Bool SAL_CALL othersInsertsAreVisible( sal_Int32 setType ) throw(::com::sun::star::sdb…
198 …virtual sal_Bool SAL_CALL updatesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
199 …virtual sal_Bool SAL_CALL deletesAreDetected( sal_Int32 setType ) throw(::com::sun::star::sdbc::SQ…
[all …]
H A DMacabDatabaseMetaData.cxx706 sal_Bool SAL_CALL MacabDatabaseMetaData::supportsResultSetType( sal_Int32 setType ) throw(SQLExcept… in supportsResultSetType() argument
708 switch (setType) in supportsResultSetType()
717 sal_Bool SAL_CALL MacabDatabaseMetaData::supportsResultSetConcurrency( sal_Int32 setType, sal_Int32… in supportsResultSetConcurrency() argument
719 switch (setType) in supportsResultSetConcurrency()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/model/
H A DOfficeStylesCollection.java63 automaticStyles.setType("automatic-styles"); in OfficeStylesCollection()
67 commonStyles.setType("styles"); in OfficeStylesCollection()
71 masterStyles.setType("master-styles"); in OfficeStylesCollection()
/trunk/main/offapi/com/sun/star/sdbc/
H A DXDatabaseMetaData.idl2381 @param setType
2394 @param setType
2411 @param setType
2423 @param setType
2435 @param setType
2447 @param setType
2459 @param setType
2471 @param setType
2485 @param setType
2501 @param setType
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/
H A DStyleUtilities.java152 autostyle.setType(STYLE); in copyStyle()
444 autostyle.setType(STYLE); in deriveStyle()
470 autostyle.setType(STYLE); in deriveCommonStyle()
498 autostyle.setType(STYLE); in deriveAutomaticStyle()
/trunk/main/ucb/source/ucp/hierarchy/
H A Dhierarchydata.cxx240 rData.setType( HierarchyEntryData::LINK ); in getData()
244 rData.setType( HierarchyEntryData::FOLDER ); in getData()
1235 m_pImpl->entry.setType( HierarchyEntryData::LINK ); in operator *()
1239 m_pImpl->entry.setType( HierarchyEntryData::FOLDER ); in operator *()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/
H A DGroupReadHandler.java63 groupInstanceSection.setType("group-instance"); in GroupReadHandler()
156 groupBody.setType("group-body"); in doneParsing()
H A DReportReadHandler.java181 groupBody.setType("report-body"); in doneParsing()
224 section.setType(name); in createSection()
/trunk/main/wizards/com/sun/star/wizards/db/
H A DColumnPropertySet.java85 setType(nType, sTypeName, precision); in assignPropertyValues()
146 private void setType(int _nType, String _sTypeName, Integer precision) in setType() method in ColumnPropertySet
/trunk/main/sw/source/ui/vba/
H A Dvbadocumentproperties.cxx296 …virtual void SAL_CALL setType( ::sal_Int8 Type ) throw (script::BasicErrorException, uno::RuntimeE…
323 …virtual void SAL_CALL setType( ::sal_Int8 Type ) throw (script::BasicErrorException, uno::RuntimeE…
366 SwVbaCustomDocumentProperty::setType( ::sal_Int8 /*Type*/ ) throw (script::BasicErrorException, uno… in setType() function in SwVbaCustomDocumentProperty
410 SwVbaBuiltInDocumentProperty::setType( ::sal_Int8 /*Type*/ ) throw (script::BasicErrorException, un… in setType() function in SwVbaBuiltInDocumentProperty

Completed in 874 milliseconds

1234