Home
last modified time | relevance | path

Searched refs:impl (Results 1 – 25 of 129) sorted by relevance

123456

/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java38 private XDatabaseMetaData impl; field in PostgresqlDatabaseMetadata
42 public PostgresqlDatabaseMetadata(XDatabaseMetaData impl, XConnection connection, String url) { in PostgresqlDatabaseMetadata() argument
43 this.impl = impl; in PostgresqlDatabaseMetadata()
49 return impl.allProceduresAreCallable(); in allProceduresAreCallable()
53 return impl.allTablesAreSelectable(); in allTablesAreSelectable()
57 return impl.dataDefinitionCausesTransactionCommit(); in dataDefinitionCausesTransactionCommit()
61 return impl.dataDefinitionIgnoredInTransactions(); in dataDefinitionIgnoredInTransactions()
65 return impl.deletesAreDetected(arg0); in deletesAreDetected()
69 return impl.doesMaxRowSizeIncludeBlobs(); in doesMaxRowSizeIncludeBlobs()
73 … return new PostgresqlResultSet(impl.getBestRowIdentifier(arg0, arg1, arg2, arg3, arg4), null); in getBestRowIdentifier()
[all …]
H A DPostgresqlResultSetMetaData.java31 private XResultSetMetaData impl; field in PostgresqlResultSetMetaData
33 public PostgresqlResultSetMetaData(XResultSetMetaData impl) { in PostgresqlResultSetMetaData() argument
34 this.impl = impl; in PostgresqlResultSetMetaData()
38 return impl.getCatalogName(arg0); in getCatalogName()
42 return impl.getColumnCount(); in getColumnCount()
46 return impl.getColumnDisplaySize(arg0); in getColumnDisplaySize()
50 return impl.getColumnLabel(arg0); in getColumnLabel()
54 return impl.getColumnName(arg0); in getColumnName()
58 return impl.getColumnServiceName(arg0); in getColumnServiceName()
62 int columnType = impl.getColumnType(column); in getColumnType()
[all …]
H A DPostgresqlConnection.java41 private XConnection impl; field in PostgresqlConnection
47 public PostgresqlConnection(XConnection impl, String url) { in PostgresqlConnection() argument
48 this.impl = impl; in PostgresqlConnection()
49 implComponent = UnoRuntime.queryInterface(XComponent.class, impl); in PostgresqlConnection()
50 implWarningsSupplier = UnoRuntime.queryInterface(XWarningsSupplier.class, impl); in PostgresqlConnection()
93 impl.commit(); in commit()
98 PostgresqlStatement pgStatement = new PostgresqlStatement(impl.createStatement(), this); in createStatement()
106 return impl.getAutoCommit(); in getAutoCommit()
111 return impl.getCatalog(); in getCatalog()
116 return new PostgresqlDatabaseMetadata(impl.getMetaData(), this, url); in getMetaData()
[all …]
H A DPostgresqlResultSet.java59 private XResultSet impl; field in PostgresqlResultSet
71 public PostgresqlResultSet(XResultSet impl, Object statement) { in PostgresqlResultSet() argument
72 this.impl = impl; in PostgresqlResultSet()
73 this.implRow = UnoRuntime.queryInterface(XRow.class, impl); in PostgresqlResultSet()
74 ….implResultSetMetaDataSupplier = UnoRuntime.queryInterface(XResultSetMetaDataSupplier.class, impl); in PostgresqlResultSet()
75 this.implCancellable = UnoRuntime.queryInterface(XCancellable.class, impl); in PostgresqlResultSet()
76 this.implWarningsSupplier = UnoRuntime.queryInterface(XWarningsSupplier.class, impl); in PostgresqlResultSet()
77 this.implResultSetUpdate = UnoRuntime.queryInterface(XResultSetUpdate.class, impl); in PostgresqlResultSet()
78 this.implRowUpdate = UnoRuntime.queryInterface(XRowUpdate.class, impl); in PostgresqlResultSet()
79 this.implCloseable = UnoRuntime.queryInterface(XCloseable.class, impl); in PostgresqlResultSet()
[all …]
H A DPostgresqlPreparedStatement.java59 private XPreparedStatement impl; field in PostgresqlPreparedStatement
70 public PostgresqlPreparedStatement(XPreparedStatement impl, XConnection connection) { in PostgresqlPreparedStatement() argument
71 this.impl = impl; in PostgresqlPreparedStatement()
72 this.implCloseable = UnoRuntime.queryInterface(XCloseable.class, impl); in PostgresqlPreparedStatement()
73 this.implPropertySet = UnoRuntime.queryInterface(XPropertySet.class, impl); in PostgresqlPreparedStatement()
74 this.implCancellable = UnoRuntime.queryInterface(XCancellable.class, impl); in PostgresqlPreparedStatement()
75 ….implResultSetMetaDataSupplier = UnoRuntime.queryInterface(XResultSetMetaDataSupplier.class, impl); in PostgresqlPreparedStatement()
76 this.implParameters = UnoRuntime.queryInterface(XParameters.class, impl); in PostgresqlPreparedStatement()
77 … this.implPreparedBatchExecution = UnoRuntime.queryInterface(XPreparedBatchExecution.class, impl); in PostgresqlPreparedStatement()
78 this.implWarningsSupplier = UnoRuntime.queryInterface(XWarningsSupplier.class, impl); in PostgresqlPreparedStatement()
[all …]
H A DPostgresqlStatement.java46 private XStatement impl; field in PostgresqlStatement
54 public PostgresqlStatement(XStatement impl, XConnection connection) { in PostgresqlStatement() argument
55 this.impl = impl; in PostgresqlStatement()
56 this.implCloseable = UnoRuntime.queryInterface(XCloseable.class, impl); in PostgresqlStatement()
57 this.implPropertySet = UnoRuntime.queryInterface(XPropertySet.class, impl); in PostgresqlStatement()
58 this.implCancellable = UnoRuntime.queryInterface(XCancellable.class, impl); in PostgresqlStatement()
59 this.implWarningsSupplier = UnoRuntime.queryInterface(XWarningsSupplier.class, impl); in PostgresqlStatement()
60 this.implMultipleResults = UnoRuntime.queryInterface(XMultipleResults.class, impl); in PostgresqlStatement()
78 return impl.execute(arg0); in execute()
82 XResultSet results = impl.executeQuery(arg0); in executeQuery()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/comphelper/
H A DPropertySet.java42 private final PropertySetAdapter impl; field in PropertySet
45 impl = new PropertySetAdapter(this, this); in PropertySet()
50 impl.dispose(); in postDisposing()
54 impl.registerProperty(propertyName, handle, type, attributes, getter, setter); in registerProperty()
58 impl.registerProperty(propertyName, type, attributes, getter, setter); in registerProperty()
65 impl.addPropertyChangeListener(propertyName, listener); in addPropertyChangeListener()
73 impl.addVetoableChangeListener(propertyName, listener); in addVetoableChangeListener()
80 impl.addPropertiesChangeListener(propertyNames, listener); in addPropertiesChangeListener()
85 return impl.getPropertySetInfo(); in getPropertySetInfo()
90 return impl.getPropertyValue(propertyName); in getPropertyValue()
[all …]
/trunk/main/pyuno/source/module/
H A Dpyuno_runtime.cxx333 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in initialize() local
335 if( runtime.is() && impl->cargo->valid ) in initialize()
351 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in isInitialized() local
352 return runtime.is() && impl->cargo->valid; in isInitialized()
359 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in finalize() local
360 if( !runtime.is() || ! impl->cargo->valid ) in finalize()
366 impl->cargo->valid = false; in finalize()
367 impl->cargo->xInvocation.clear(); in finalize()
368 impl->cargo->xContext.clear(); in finalize()
369 impl->cargo->xTypeConverter.clear(); in finalize()
[all …]
/trunk/main/chart2/source/inc/
H A DEventListenerHelper.hxx39 namespace impl namespace
130 impl::addListenerFunctor< InterfaceRef > aFunctor( xListener ); in addListener()
143 impl::addListenerFunctor< typename Container::value_type >( xListener )); in addListenerToAllElements()
154impl::addListenerToMappedElementFunctor< typename Container::value_type >( xListener )); in addListenerToAllMapElements()
165 impl::addListenerFunctor< T >( xListener )); in addListenerToAllSequenceElements()
176 impl::removeListenerFunctor< InterfaceRef > aFunctor( xListener ); in removeListener()
189impl::removeListenerFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllElements()
200impl::removeListenerFromMappedElementFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllMapElements()
211 impl::removeListenerFunctor< T >( xListener )); in removeListenerFromAllSequenceElements()
H A DModifyListenerHelper.hxx123 namespace impl namespace
215 impl::addListenerFunctor< InterfaceRef > aFunctor( xListener ); in addListener()
228 impl::addListenerFunctor< typename Container::value_type >( xListener )); in addListenerToAllElements()
239impl::addListenerToMappedElementFunctor< typename Container::value_type >( xListener )); in addListenerToAllMapElements()
250 impl::addListenerFunctor< T >( xListener )); in addListenerToAllSequenceElements()
261 impl::removeListenerFunctor< InterfaceRef > aFunctor( xListener ); in removeListener()
274impl::removeListenerFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllElements()
285impl::removeListenerFromMappedElementFunctor< typename Container::value_type >( xListener )); in removeListenerFromAllMapElements()
296 impl::removeListenerFunctor< T >( xListener )); in removeListenerFromAllSequenceElements()
/trunk/main/svl/inc/svl/
H A Dundo.hxx337 namespace svl { namespace undo { namespace impl namespace
421 size_t ImplLeaveListAction( const bool i_merge, ::svl::undo::impl::UndoManagerGuard& i_guard );
422 …fy( SfxUndoAction* pAction, bool bTryMerge, bool bClearRedo, ::svl::undo::impl::UndoManagerGuard& …
423 … void ImplClearRedo( ::svl::undo::impl::UndoManagerGuard& i_guard, bool const i_currentLevel );
424 void ImplClearUndo( ::svl::undo::impl::UndoManagerGuard& i_guard );
425 void ImplClearCurrentLevel_NoNotify( ::svl::undo::impl::UndoManagerGuard& i_guard );
434 friend class ::svl::undo::impl::LockGuard;
/trunk/main/boost/prj/
H A Dd.lst18 mkdir: %_DEST%\inc%_EXT%\boost\archive\impl
22 mkdir: %_DEST%\inc%_EXT%\boost\asio\detail\impl
23 mkdir: %_DEST%\inc%_EXT%\boost\asio\impl
26 mkdir: %_DEST%\inc%_EXT%\boost\asio\ip\detail\impl
27 mkdir: %_DEST%\inc%_EXT%\boost\asio\ip\impl
30 mkdir: %_DEST%\inc%_EXT%\boost\asio\local\detail\impl
34 mkdir: %_DEST%\inc%_EXT%\boost\asio\ssl\detail\impl
35 mkdir: %_DEST%\inc%_EXT%\boost\asio\ssl\impl
405 mkdir: %_DEST%\inc%_EXT%\boost\numeric\odeint\iterator\impl
516 mkdir: %_DEST%\inc%_EXT%\boost\property_map\parallel\impl
[all …]
/trunk/main/boost/
H A Dboost_1_55_0.patch1 diff -ur misc/boost_1_55_0/boost/asio/ssl/impl/context.ipp misc/build/boost_1_55_0/boost/asio/ssl/i…
2 --- misc/boost_1_55_0/boost/asio/ssl/impl/context.ipp 2013-10-26 16:25:53.000000000 -0700
3 +++ misc/build/boost_1_55_0/boost/asio/ssl/impl/context.ipp 2016-03-23 01:11:12.425434000 -0700
31 impl = ::SSL_CTX_new(::SSLv2_server_method());
42 impl = ::SSL_CTX_new(::SSLv3_method());
46 impl = ::SSL_CTX_new(::SSLv3_server_method());
50 impl = ::SSL_CTX_new(::TLSv1_method());
157 apply<cons<HT, TT> > impl;
158 - typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;
159 return impl::call(c).head;
/trunk/main/chart2/source/controller/dialogs/
H A DDataBrowser.cxx118 namespace impl namespace
458 const ::std::vector< ::boost::shared_ptr< ::chart::impl::SeriesHeader > > & rSeriesHeader, in lcl_SeriesHeaderHasFocus()
462 …for( ::std::vector< ::boost::shared_ptr< ::chart::impl::SeriesHeader > >::const_iterator aIt( rSer… in lcl_SeriesHeaderHasFocus()
476 …sal_uInt16 nCol, const ::std::vector< ::boost::shared_ptr< ::chart::impl::SeriesHeader > > & rSeri… in lcl_getColumnInDataOrHeader()
573 ::std::for_each( m_aSeriesHeaders.begin(), m_aSeriesHeaders.end(), impl::applyChangesFunctor()); in clearHeaders()
603 …+ GetDataWindow().LogicToPixel( Point( 4 + impl::SeriesHeader::GetRelativeAppFontXPosForNameField(… in RenewTable()
630 ::boost::shared_ptr< impl::SeriesHeader > spHeader( new impl::SeriesHeader( pWin )); in RenewTable()
1242 ::std::for_each( m_aSeriesHeaders.begin(), m_aSeriesHeaders.end(), impl::applyChangesFunctor()); in EndEditing()
1293 ::boost::shared_ptr< impl::SeriesHeader > spHeader( new impl::SeriesHeader( pWin )); in RenewSeriesHeaders()
1350 IMPL_LINK( DataBrowser, SeriesHeaderGotFocus, impl::SeriesHeaderEdit*, pEdit ) in IMPL_LINK()
[all …]
H A DDataBrowser.hxx48 namespace impl namespace
163 typedef ::std::vector< ::boost::shared_ptr< impl::SeriesHeader > > tSeriesHeaderContainer;
193 DECL_LINK( SeriesHeaderGotFocus, impl::SeriesHeaderEdit* );
194 DECL_LINK( SeriesHeaderChanged, impl::SeriesHeaderEdit* );
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/registry/
H A D_XImplementationRegistration.java111 String[] impl = oObj.getImplementations(loader, url) ; in _getImplementations() local
113 if (impl.length == 0) log.println("getImplementations() "+ in _getImplementations()
117 for (int i = 0; i < impl.length; i++) { in _getImplementations()
118 log.println(" '" + impl[i] + "'") ; in _getImplementations()
120 equals(impl[i])) { in _getImplementations()
/trunk/main/chart2/source/tools/
H A DImplOPropertySet.cxx47 const ::property::impl::ImplOPropertySet::tPropertyMap & rMap ) in lcl_getPropertyStateByHandle()
59 const ::property::impl::ImplOPropertySet::tPropertyMap & m_rMap;
80 … public ::std::unary_function< ::property::impl::ImplOPropertySet::tPropertyMap::value_type, void >
82 inline void operator() ( ::property::impl::ImplOPropertySet::tPropertyMap::value_type & rProp ) in operator ()()
98 namespace impl namespace
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDatabaseMetaDataResultSet.java74 public DatabaseMetaDataResultSet(XResultSet impl, ArrayList<ORowSetValue[]> rows) { in DatabaseMetaDataResultSet() argument
75 implCloseable = UnoRuntime.queryInterface(XCloseable.class, impl); in DatabaseMetaDataResultSet()
76 implPropertySet = UnoRuntime.queryInterface(XPropertySet.class, impl); in DatabaseMetaDataResultSet()
77 implColumnSupplier = UnoRuntime.queryInterface(XColumnsSupplier.class, impl); in DatabaseMetaDataResultSet()
78 implColumnLocate = UnoRuntime.queryInterface(XColumnLocate.class, impl); in DatabaseMetaDataResultSet()
79 … implResultSetMetaDataSupplier = UnoRuntime.queryInterface(XResultSetMetaDataSupplier.class, impl); in DatabaseMetaDataResultSet()
/trunk/main/testgraphical/ui/java/ConvwatchGUIProject/nbproject/
H A Dgenfiles.properties25 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.…
27 nbproject/build-impl.xml.data.CRC32=d17eccb2
28 nbproject/build-impl.xml.script.CRC32=ea0e5dc9
29 nbproject/build-impl.xml.stylesheet.CRC32=576378a2@1.32.1.45
/trunk/main/xmlsecurity/test_docs/tools/httpserv/nbproject/
H A Dgenfiles.properties26 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.…
28 nbproject/build-impl.xml.data.CRC32=8071b819
29 nbproject/build-impl.xml.script.CRC32=21d1be7e
30 nbproject/build-impl.xml.stylesheet.CRC32=5c621a33@1.26.2.45
/trunk/main/chart2/source/controller/main/
H A DControllerCommandDispatch.hxx40 namespace impl namespace
60 class ControllerCommandDispatch : public impl::ControllerCommandDispatch_Base
120 ::std::auto_ptr< impl::ModelState > m_apModelState;
121 ::std::auto_ptr< impl::ControllerState > m_apControllerState;
/trunk/main/i18npool/source/collator/
H A DcollatorImpl.cxx95 CollatorImpl::loadCollatorAlgorithm(const OUString& impl, const lang::Locale& rLocale, sal_Int32 co… in loadCollatorAlgorithm() argument
98 if (! cachedItem || ! cachedItem->equals(rLocale, impl)) in loadCollatorAlgorithm()
99 loadCachedCollator(rLocale, impl); in loadCollatorAlgorithm()
110 CollatorImpl::loadCollatorAlgorithmWithEndUserOption(const OUString& impl, const lang::Locale& rLoc… in loadCollatorAlgorithmWithEndUserOption() argument
116 loadCollatorAlgorithm(impl, rLocale, options); in loadCollatorAlgorithmWithEndUserOption()
/trunk/main/sal/osl/unx/
H A Dthread.c356 Thread_Impl * impl = (Thread_Impl *) Thread; in osl_destroyThread() local
358 pthread_mutex_lock(&impl->m_Lock); in osl_destroyThread()
359 active = (impl->m_Flags & THREADIMPL_FLAGS_ACTIVE) != 0; in osl_destroyThread()
360 impl->m_Flags |= THREADIMPL_FLAGS_DESTROYED; in osl_destroyThread()
361 pthread_mutex_unlock(&impl->m_Lock); in osl_destroyThread()
363 osl_thread_destruct_Impl(&impl); in osl_destroyThread()
H A Dsecurity.c81 oslSecurityImpl * impl, size_t * bufSize) in growSecurityImpl() argument
85 if (impl == NULL) { in growSecurityImpl()
102 p = realloc(impl, n); in growSecurityImpl()
105 free(impl); in growSecurityImpl()
110 static void deleteSecurityImpl(oslSecurityImpl * impl) { in deleteSecurityImpl() argument
111 free(impl); in deleteSecurityImpl()
/trunk/test/testuno/source/api/i18n/
H A DXLocaleDataTest.java275 Implementation[] impl = new Implementation[1]; in _getCollatorImplementations() local
278 impl = oObj.getCollatorImplementations(getLocale(i)); in _getCollatorImplementations()
279 for (int j=0;j<impl.length;j++) { in _getCollatorImplementations()
280 if ((impl[j].unoID.equals(""))) { in _getCollatorImplementations()
283 res &= (!impl[j].unoID.equals("")); in _getCollatorImplementations()

123456