Home
last modified time | relevance | path

Searched refs:xNameAccess (Results 1 – 25 of 149) sorted by relevance

123456

/trunk/main/extensions/source/update/check/
H A Ddownload.cxx116 OSL_ASSERT(xNameAccess->hasByName(aName)); in getStringValue()
117 uno::Any aValue = xNameAccess->getByName(aName); in getStringValue()
125 getInt32Value(const uno::Reference< container::XNameAccess >& xNameAccess, in getInt32Value() argument
128 OSL_ASSERT(xNameAccess->hasByName(aName)); in getInt32Value()
129 uno::Any aValue = xNameAccess->getByName(aName); in getInt32Value()
215 uno::Reference< container::XNameAccess > xNameAccess( in getProxyForURL() local
220 OSL_ASSERT(xNameAccess->hasByName(UNISTRING("ooInetProxyType"))); in getProxyForURL()
221 uno::Any aValue = xNameAccess->getByName(UNISTRING("ooInetProxyType")); in getProxyForURL()
229 rPort = getInt32Value(xNameAccess, UNISTRING("ooInetHTTPProxyPort")); in getProxyForURL()
238 rHost = getStringValue(xNameAccess, UNISTRING("ooInetFTPProxyName")); in getProxyForURL()
[all …]
/trunk/main/ucbhelper/source/client/
H A Dproxydecider.cxx249 const uno::Reference< container::XNameAccess > & xNameAccess, in getConfigStringValue()
277 const uno::Reference< container::XNameAccess > & xNameAccess, in getConfigInt32Value()
283 uno::Any aValue = xNameAccess->getByName( in getConfigInt32Value()
343 uno::Reference< container::XNameAccess > xNameAccess( in InternetProxyDecider_Impl() local
345 OSL_ENSURE( xNameAccess.is(), in InternetProxyDecider_Impl()
348 if ( xNameAccess.is() ) in InternetProxyDecider_Impl()
352 xNameAccess, PROXY_TYPE_KEY, m_nProxyType ); in InternetProxyDecider_Impl()
357 xNameAccess, NO_PROXY_LIST_KEY, aNoProxyList ); in InternetProxyDecider_Impl()
362 xNameAccess, HTTP_PROXY_NAME_KEY, m_aHttpProxy.aName ); in InternetProxyDecider_Impl()
382 xNameAccess, FTP_PROXY_NAME_KEY, m_aFtpProxy.aName ); in InternetProxyDecider_Impl()
[all …]
/trunk/main/dbaccess/source/ui/dlg/
H A DCollectionView.cxx196 Reference<XNameAccess> xNameAccess(xChild,UNO_QUERY); in IMPL_LINK() local
197 while( xNameAccess.is() ) in IMPL_LINK()
199 xNameAccess.set(xChild->getParent(),UNO_QUERY); in IMPL_LINK()
200 if ( xNameAccess.is() ) in IMPL_LINK()
202 m_xContent.set(xNameAccess,UNO_QUERY); in IMPL_LINK()
307 if ( xNameAccess.is() ) in IMPL_LINK()
309 m_xContent.set(xNameAccess,UNO_QUERY); in IMPL_LINK()
328 Reference<XNameAccess> xNameAccess(m_xContent,UNO_QUERY); in IMPL_LINK() local
329 if ( xNameAccess.is() ) in IMPL_LINK()
337 if ( xNameAccess->hasByName(sSubFolder) ) in IMPL_LINK()
[all …]
/trunk/main/odk/examples/java/Inspector/
H A DInspector.java107 …XNameAccess xNameAccess = getConfigurationAccess("org.openoffice.inspector.ObjectInspector", true… in getSDKPath() local
108 …opertySet xPropertySet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xNameAccess); in getSDKPath()
157 XNameAccess xNameAccess = getConfigurationAccess(true); in assignSDKPath() local
252 …XNameAccess xNameAccess = getConfigurationAccess("org.openoffice.inspector.ObjectInspector", true… in setSourceCodeLanguage() local
253 …opertySet xPropertySet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xNameAccess); in setSourceCodeLanguage()
268 …XChangesBatch xBatch = (XChangesBatch) UnoRuntime.queryInterface(XChangesBatch.class, xNameAccess); in setSourceCodeLanguage()
363 …XNameAccess xNameAccess = getConfigurationAccess("org.openoffice.inspector.ObjectInspector", fals… in getSourceCodeLanguage() local
364 String sLanguage = (String) xNameAccess.getByName("Language"); in getSourceCodeLanguage()
391 XNameAccess xNameAccess = null; in getConfigurationAccess() local
404 xNameAccess = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, oAccess); in getConfigurationAccess()
[all …]
/trunk/main/ucb/source/core/
H A Ducbstore.cxx635 Reference< XNameAccess > xNameAccess( in getByName() local
637 if ( xNameAccess.is() ) in getByName()
664 Reference< XNameAccess > xNameAccess( in getElementNames() local
666 if ( xNameAccess.is() ) in getElementNames()
680 Reference< XNameAccess > xNameAccess( in hasByName() local
682 if ( xNameAccess.is() ) in hasByName()
1608 if ( xNameAccess.is() ) in getPropertyValue()
2112 >>= xNameAccess; in getPropertyValues()
2113 if ( xNameAccess.is() ) in getPropertyValues()
2520 >>= xNameAccess; in getProperties()
[all …]
/trunk/main/swext/mediawiki/src/com/sun/star/wiki/
H A DHelper.java176 …XNameAccess xNameAccess = GetConfigNameAccess( xContext, "org.openoffice.Office.Custom.WikiExtensi… in GetLocalizedString() local
181 … pStrings[nInd] = AnyConverter.toString( xNameAccess.getByName( m_pEntryNames[nInd] ) ); in GetLocalizedString()
641 if ( xNameAccess == null ) in GetConfigNameAccess()
644 return xNameAccess; in GetConfigNameAccess()
654 … XNameAccess xNameAccess = GetConfigNameAccess( xContext, "org.openoffice.Inet/Settings" ); in SetConfigurationProxy() local
656 int nProxyType = AnyConverter.toInt( xNameAccess.getByName( "ooInetProxyType" ) ); in SetConfigurationProxy()
676 … String aNoProxyList = AnyConverter.toString( xNameAccess.getByName( "ooInetNoProxy" ) ); in SetConfigurationProxy()
677 … String aProxyName = AnyConverter.toString( xNameAccess.getByName( aProxyNameProp ) ); in SetConfigurationProxy()
681 Object aPortNo = xNameAccess.getByName( aProxyPortProp ); in SetConfigurationProxy()
1052 if ( xNameAccess.hasByName( aURL ) ) in AllowUnknownCert()
[all …]
/trunk/main/ucb/source/ucp/hierarchy/
H A Dhierarchydata.cxx340 uno::Reference< container::XNameAccess > xNameAccess; in setData() local
344 xNameAccess = xParentNameAccess; in setData()
350 >>= xNameAccess; in setData()
353 if ( xNameAccess->hasByName( m_aName ) ) in setData()
354 aMyKey = xNameAccess->getByName( m_aName ); in setData()
987 uno::Reference< container::XNameAccess > xNameAccess; in first() local
995 >>= xNameAccess; in first()
998 xNameAccess in first()
1002 OSL_ENSURE( xNameAccess.is(), in first()
1005 if ( xNameAccess.is() ) in first()
[all …]
/trunk/main/ucbhelper/source/provider/
H A Dproviderhelper.cxx385 uno::Reference< container::XNameAccess > xNameAccess( in renameAdditionalPropertySet() local
387 if ( xNameAccess.is() ) in renameAdditionalPropertySet()
390 = xNameAccess->getElementNames(); in renameAdditionalPropertySet()
472 uno::Reference< container::XNameAccess > xNameAccess( in copyAdditionalPropertySet() local
474 if ( xNameAccess.is() ) in copyAdditionalPropertySet()
477 = xNameAccess->getElementNames(); in copyAdditionalPropertySet()
611 uno::Reference< container::XNameAccess > xNameAccess( in removeAdditionalPropertySet() local
613 if ( xNameAccess.is() ) in removeAdditionalPropertySet()
616 = xNameAccess->getElementNames(); in removeAdditionalPropertySet()
/trunk/main/sc/source/ui/unoobj/
H A Dmiscuno.cxx332 xNameAccess( rNameObj ) in ScNameToIndexAccess()
336 if ( xNameAccess.is() ) in ScNameToIndexAccess()
337 aNames = xNameAccess->getElementNames(); in ScNameToIndexAccess()
356 if ( xNameAccess.is() && nIndex >= 0 && nIndex < aNames.getLength() ) in getByIndex()
357 return xNameAccess->getByName( aNames.getConstArray()[nIndex] ); in getByIndex()
368 if ( xNameAccess.is() ) in getElementType()
369 return xNameAccess->getElementType(); in getElementType()
/trunk/main/stoc/source/registry_tdprovider/
H A Dtdprovider.cxx487 const com::sun::star::uno::Reference< XHierarchicalNameAccess > & xNameAccess, in createTypeDescription()
515 new InterfaceTypeDescriptionImpl( xNameAccess, in createTypeDescription()
527 xNameAccess, UNO_QUERY ); in createTypeDescription()
545 xNameAccess, aName, superTypeName, rData, in createTypeDescription()
551 new EnumTypeDescriptionImpl( xNameAccess, in createTypeDescription()
566 xNameAccess, TypeClass_EXCEPTION, aName, superTypeName, in createTypeDescription()
572 new TypedefTypeDescriptionImpl( xNameAccess, in createTypeDescription()
580 xNameAccess, aName, rData, aReader.isPublished() ) ); in createTypeDescription()
589 new SingletonTypeDescriptionImpl( xNameAccess, in createTypeDescription()
/trunk/main/wizards/com/sun/star/wizards/report/
H A DReportTextDocument.java203 XNameAccess xNameAccess = UnoRuntime.queryInterface(XNameAccess.class, xNamedForm); in createReportForm() local
204 …oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, PropertyNames.COMMAND_TYPE, Integer.toSt… in createReportForm()
207 …oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, QUERYNAME, CurDBMetaData.getCommandName(… in createReportForm()
208 oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, PropertyNames.COMMAND, ""); in createReportForm()
214 oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, QUERYNAME, ""); in createReportForm()
215 …oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, PropertyNames.COMMAND, CurDBMetaData.Com… in createReportForm()
217 …oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, "GroupFieldNames", JavaTools.ArraytoStri… in createReportForm()
218 …oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, "FieldNames", JavaTools.ArraytoString(Cu… in createReportForm()
233 … oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, "Sorting", orderBy.toString()); in createReportForm()
237 oFormHandler.insertHiddenControl(xNameAccess, xNamedForm, "Sorting", ""); in createReportForm()
[all …]
/trunk/main/desktop/source/app/
H A Dapp.cxx2673 if ( xNameAccess.is() ) in PreloadConfigurationData()
2694 a = xNameAccess->getByName( aCalcDoc ); in PreloadConfigurationData()
2706 a = xNameAccess->getByName( aDrawDoc ); in PreloadConfigurationData()
2719 if ( xNameAccess.is() ) in PreloadConfigurationData()
2735 a = xNameAccess->getByName( aCalcDoc ); in PreloadConfigurationData()
2745 a = xNameAccess->getByName( aDrawDoc ); in PreloadConfigurationData()
2805 if ( xNameAccess.is() ) in PreloadConfigurationData()
2809 aSeq = xNameAccess->getElementNames(); in PreloadConfigurationData()
2819 if ( xNameAccess.is() ) in PreloadConfigurationData()
2823 aSeq = xNameAccess->getElementNames(); in PreloadConfigurationData()
[all …]
/trunk/main/framework/source/uielement/
H A Duicommanddescription.cxx374 … Reference< XNameAccess > xNameAccess(_xConfigAccess->getByName( aNameSeq[i] ),UNO_QUERY); in impl_fill() local
375 if ( xNameAccess.is() ) in impl_fill()
380 xNameAccess->getByName( m_aPropUILabel ) >>= aCmdToInfo.aLabel; in impl_fill()
381 xNameAccess->getByName( m_aPropUIContextLabel ) >>= aCmdToInfo.aContextLabel; in impl_fill()
382 xNameAccess->getByName( m_aPropProperties ) >>= aCmdToInfo.nProperties; in impl_fill()
515 Reference< XNameAccess > xNameAccess; in getAllCommands() local
675 Reference< XNameAccess > xNameAccess( m_xModuleManager, UNO_QUERY_THROW ); in impl_fillElements() local
676 Sequence< rtl::OUString > aElementNames = xNameAccess->getElementNames(); in impl_fillElements()
683 if ( xNameAccess->getByName( aModuleIdentifier ) >>= aSeq ) in impl_fillElements()
/trunk/main/reportdesign/qa/complex/reportdesign/
H A DReportDesignerTest.java362 XNameAccess xNameAccess = UnoRuntime.queryInterface(XNameAccess.class, x); in startTestForFile() local
363 showElements(xNameAccess); in startTestForFile()
364 Object aObj = xNameAccess.getByName(sFileURL); in startTestForFile()
403 xNameAccess = xSupplier.getReportDocuments(); in startTestForFile()
404 assertNotNull("xOfficeDatabaseDocument returns no Report Document", xNameAccess); in startTestForFile()
407 showElements(xNameAccess); in startTestForFile()
416 loadAndStoreReports(xNameAccess, aPropertyList, _nType); in startTestForFile()
/trunk/main/vbahelper/source/vbahelper/
H A Dvbacommandbar.cxx62 … uno::Reference< container::XNameAccess > xNameAccess = pCBarHelper->getPersistentWindowState(); in getName() local
63 if( xNameAccess->hasByName( m_sResourceUrl ) ) in getName()
66 xNameAccess->getByName( m_sResourceUrl ) >>= aToolBar; in getName()
90 … uno::Reference< container::XNameAccess > xNameAccess = pCBarHelper->getPersistentWindowState(); in getVisible() local
91 if( xNameAccess->hasByName( m_sResourceUrl ) ) in getVisible()
94 xNameAccess->getByName( m_sResourceUrl ) >>= aToolBar; in getVisible()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DReportDesignerTest.java390 … XNameAccess xNameAccess = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, x); in startTestForFile() local
391 showElements(xNameAccess); in startTestForFile()
392 Object aObj = xNameAccess.getByName(sFileURL); in startTestForFile()
429 xNameAccess = xSupplier.getReportDocuments(); in startTestForFile()
430 assure("xOfficeDatabaseDocument returns no Report Document", xNameAccess != null); in startTestForFile()
433 showElements(xNameAccess); in startTestForFile()
442 loadAndStoreReports(xNameAccess, aPropertyList /*, _nType*/ ); in startTestForFile()
/trunk/main/sc/source/filter/xml/
H A DXMLCodeNameProvider.cxx176 void XMLCodeNameProvider::set( const uno::Reference< container::XNameAccess>& xNameAccess, ScDocume… in set() argument
181 if( xNameAccess->hasByName( sDocName ) ) in set()
183 aAny = xNameAccess->getByName( sDocName ); in set()
193 xNameAccess->hasByName( sSheetName ) ) in set()
195 aAny = xNameAccess->getByName( sSheetName ); in set()
/trunk/test/testuno/source/testlib/uno/
H A DSCUtil.java663 XNameAccess xNameAccess = in createChart() local
665 if (xNameAccess != null && !xNameAccess.hasByName(chartName)) { in createChart()
669 XTableChart.class, xNameAccess.getByName(chartName)); in createChart()
691 XNameAccess xNameAccess = in getChartByName() local
694 if (xNameAccess != null && xNameAccess.hasByName(chartName)) { in getChartByName()
696 XTableChart.class, xNameAccess.getByName(chartName)); in getChartByName()
/trunk/main/odk/examples/DevelopersGuide/Database/
H A DCodeSamples.java189 XNameAccess xNameAccess = (XNameAccess)UnoRuntime.queryInterface( in printDataSources() local
193 String aNames [] = xNameAccess.getElementNames(); in printDataSources()
262 XNameAccess xNameAccess = (XNameAccess)UnoRuntime.queryInterface( in createQuerydefinition() local
269 xNameAccess.getByName( "Bibliography" )); in createQuerydefinition()
298 XNameAccess xNameAccess = (XNameAccess)UnoRuntime.queryInterface( in printQueryColumnNames() local
304 XDataSource.class, xNameAccess.getByName( "Bibliography" )); in printQueryColumnNames()
/trunk/main/sot/source/unoolestorage/
H A Dxolesimplestorage.cxx171 …age* pStorage, ::rtl::OUString aName, const uno::Reference< container::XNameAccess >& xNameAccess ) in InsertNameAccessToStorage_Impl() argument
174 if ( !pStorage || !aName.getLength() || !xNameAccess.is() ) in InsertNameAccessToStorage_Impl()
191 uno::Sequence< ::rtl::OUString > aElements = xNameAccess->getElementNames(); in InsertNameAccessToStorage_Impl()
196 uno::Any aAny = xNameAccess->getByName( aElements[nInd] ); in InsertNameAccessToStorage_Impl()
338 uno::Reference< container::XNameAccess > xNameAccess; in insertByName() local
347 else if ( !( aElement >>= xInputStream ) && !( aElement >>= xNameAccess ) ) in insertByName()
352 else if ( xNameAccess.is() ) in insertByName()
353 InsertNameAccessToStorage_Impl( m_pStorage, aName, xNameAccess ); in insertByName()
/trunk/main/embeddedobj/source/msole/
H A Downview.cxx247 uno::Reference< container::XNameAccess > xNameAccess( xTypeDetection, uno::UNO_QUERY_THROW ); in GetFilterNameFromExtentionAndInStream() local
250 if ( xNameAccess.is() && ( xNameAccess->getByName( aTypeName ) >>= aTypes ) ) in GetFilterNameFromExtentionAndInStream()
439 uno::Reference< container::XNameAccess > xNameAccess( in CreateNative() local
446 uno::Reference< embed::XClassifiedObject > xStor( xNameAccess, uno::UNO_QUERY_THROW ); in CreateNative()
449 if ( xNameAccess->hasByName( aSubStreamName ) ) in CreateNative()
456 xNameAccess->getByName( aSubStreamName ) >>= xSubStream; in CreateNative()
/trunk/main/framework/source/uiconfiguration/
H A Dwindowstateconfiguration.cxx530 Reference< XNameAccess > xNameAccess; in replaceByName() local
533 if ( a >>= xNameAccess ) in replaceByName()
535 … WindowStateInfo& rWinStateInfo( impl_insertCacheAndReturnWinState( rResourceURL, xNameAccess )); in replaceByName()
664 …tCacheAndReturnSequence( const rtl::OUString& rResourceURL, Reference< XNameAccess >& xNameAccess ) in impl_insertCacheAndReturnSequence() argument
678 Any a( xNameAccess->getByName( m_aPropArray[i] ) ); in impl_insertCacheAndReturnSequence()
1050 … Reference< XNameAccess > xNameAccess( m_xConfigAccess->getByName( rResourceURL ), UNO_QUERY ); in impl_getWindowStateFromResourceURL() local
1051 if ( xNameAccess.is() ) in impl_getWindowStateFromResourceURL()
1052 return impl_insertCacheAndReturnSequence( rResourceURL, xNameAccess ); in impl_getWindowStateFromResourceURL()
1374 Reference< XNameAccess > xNameAccess( m_xModuleManager, UNO_QUERY_THROW ); local
1375 Sequence< rtl::OUString > aElementNames = xNameAccess->getElementNames();
[all …]
/trunk/main/basic/source/uno/
H A Dnamecont.cxx1307 Reference< XNameAccess > xNameAccess; in getImplLib() local
1308 aLibAny >>= xNameAccess; in getImplLib()
1818 aLibAny >>= xNameAccess; in storeLibraries_Impl()
2184 aElement <<= xNameAccess; in createLibrary()
2246 Reference< XNameAccess > xNameAccess; in removeLibrary() local
2247 aLibAny >>= xNameAccess; in removeLibrary()
2261 if( xNameAccess->hasElements() ) in removeLibrary()
2319 Reference< XNameAccess > xNameAccess; in loadLibrary() local
2320 aLibAny >>= xNameAccess; in loadLibrary()
2509 Reference< XNameAccess > xNameAccess; in renameLibrary() local
[all …]
/trunk/main/dbaccess/source/ui/control/
H A Dopendoccontrols.cxx117 Reference< XNameAccess> xNameAccess; in GetCommandText() local
118 xNameAccess = xNameAccess.query( xFactory->createInstance( in GetCommandText()
121 if ( !xNameAccess.is() ) in GetCommandText()
124 xNameAccess->getByName( _rModuleName ) >>= xUICommandLabels; in GetCommandText()
/trunk/main/dbaccess/source/ui/app/
H A DAppView.cxx592 Reference<XNameAccess> xNameAccess; in showPreview() local
597 xNameAccess.set(xSup->getTables(),UNO_QUERY); in showPreview()
603 xNameAccess.set(xSup->getQueries(),UNO_QUERY); in showPreview()
605 if ( xNameAccess.is() && xNameAccess->hasByName(_sName) ) in showPreview()
606 m_xObject.set(xNameAccess->getByName(_sName),UNO_QUERY); in showPreview()

Completed in 236 milliseconds

123456