Home
last modified time | relevance | path

Searched refs:xIndex (Results 1 – 25 of 38) sorted by relevance

12

/trunk/main/sc/source/ui/Accessibility/
H A DAccessibleCellBase.cxx122 if ( xIndex.is() ) in getForeground()
124 uno::Any aTable = xIndex->getByIndex(maCellAddress.Tab()); in getForeground()
163 if ( xIndex.is() ) in getBackground()
165 uno::Any aTable = xIndex->getByIndex(maCellAddress.Tab()); in getBackground()
363 if ( xIndex.is() ) in GetNote()
365 uno::Any aTable = xIndex->getByIndex(maCellAddress.Tab()); in GetNote()
411 uno::Reference<container::XIndexAccess> xIndex( xSheets, uno::UNO_QUERY ); in getShadowAttrs() local
412 if ( xIndex.is() ) in getShadowAttrs()
414 uno::Any aTable = xIndex->getByIndex(maCellAddress.Tab()); in getShadowAttrs()
498 if ( xIndex.is() ) in getBorderAttrs()
[all …]
H A DAccessibleEditObject.cxx429 uno::Reference<container::XIndexAccess> xIndex( xSheets, uno::UNO_QUERY ); in GetFgBgColor() local
430 if ( xIndex.is() ) in GetFgBgColor()
432 uno::Any aTable = xIndex->getByIndex(m_curCellAddress.Tab()); in GetFgBgColor()
/trunk/main/connectivity/source/drivers/dbase/
H A DDCode.cxx59 Reference<XPropertySet> xIndex; in OFILEOperandAttr() local
66 _xIndexes->getByName(*pBegin) >>= xIndex; in OFILEOperandAttr()
67 if(xIndex.is()) in OFILEOperandAttr()
69 Reference<XColumnsSupplier> xColsSup(xIndex,UNO_QUERY); in OFILEOperandAttr()
74 m_xIndex = xIndex; in OFILEOperandAttr()
82 m_xIndex = xIndex; in OFILEOperandAttr()
H A DDDatabaseMetaData.cxx293 Reference< XPropertySet> xIndex; in getIndexInfo() local
296 ::cppu::extractInterface(xIndex,xIndexes->getByName(*pBegin)); in getIndexInfo()
297 OSL_ENSURE(xIndex.is(),"Indexes contains a column who isn't a fastpropertyset!"); in getIndexInfo()
299 …if(unique && !getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPER… in getIndexInfo()
301 …aRow[4] = new ORowSetValueDecorator(getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap()… in getIndexInfo()
304 Reference< XUnoTunnel> xTunnel(xIndex,UNO_QUERY); in getIndexInfo()
315 Reference<XColumnsSupplier> xColumnsSup(xIndex,UNO_QUERY); in getIndexInfo()
H A DDTable.cxx1638 Reference<XPropertySet> xIndex = isUniqueByColumnName(i); in DeleteRow() local
1639 if (xIndex.is()) in DeleteRow()
1647 Reference<XUnoTunnel> xTunnel(xIndex,UNO_QUERY); in DeleteRow()
1686 Reference<XPropertySet> xIndex; in isUniqueByColumnName() local
1690 …if(xIndex.is() && getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PR… in isUniqueByColumnName()
1694 return xIndex; in isUniqueByColumnName()
1718 Reference<XPropertySet> xIndex; in UpdateBuffer() local
1750 xIndex = isUniqueByColumnName(i); in UpdateBuffer()
1751 aIndexedCols[i] = xIndex; in UpdateBuffer()
1752 if (xIndex.is()) in UpdateBuffer()
[all …]
/trunk/main/dbaccess/source/ui/misc/
H A Dindexcollection.cxx291 Reference< XPropertySet > xIndex; in implFillIndexInfo() local
292 m_xIndexes->getByName(_rIndex.getOriginalName()) >>= xIndex; in implFillIndexInfo()
293 if (!xIndex.is()) in implFillIndexInfo()
298 implFillIndexInfo(_rIndex, xIndex); in implFillIndexInfo()
401 Reference< XPropertySet > xIndex; in implConstructFrom() local
402 m_xIndexes->getByName(*pNames) >>= xIndex; in implConstructFrom()
403 if (!xIndex.is()) in implConstructFrom()
/trunk/main/sc/workben/
H A Dtest.cxx589 XIndexAccessRef xIndex = (XIndexAccess*) in lcl_Cursor() local
591 if ( xIndex ) in lcl_Cursor()
1255 if (!xIndex) return; in lcl_Scenario()
1256 ULONG nCount = xIndex->getCount(); in lcl_Scenario()
1348 if (!xRanges || !xIndex) return; in lcl_FillTab()
1350 ULONG nCount = xIndex->getCount(); in lcl_FillTab()
1790 XIndexAccessRef xIndex = (XIndexAccess*) in IMPL_LINK() local
1792 if (xIndex) in IMPL_LINK()
1795 ULONG nCount = xIndex->getCount(); in IMPL_LINK()
1846 if (xIndex) in IMPL_LINK()
[all …]
/trunk/main/sc/source/ui/vba/
H A Dvbapalette.cxx97 uno::Reference< container::XIndexAccess > xIndex; in getPalette() local
103xIndex.set( xProps->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ColorPalette") )… in getPalette()
104 if ( !xIndex.is() ) in getPalette()
106 return xIndex; in getPalette()
H A Dvbainterior.cxx184 uno::Reference< container::XIndexAccess > xIndex = getPalette(); in GetIndexColor() local
185 return xIndex->getByIndex( nIndex ); in GetIndexColor()
191 uno::Reference< container::XIndexAccess > xIndex = getPalette(); in GetColorIndex() local
192 sal_Int32 nElems = xIndex->getCount(); in GetColorIndex()
197 xIndex->getByIndex( count ) >>= nPaletteColor; in GetColorIndex()
H A Dvbaworksheet.cxx124 uno::Reference <container::XIndexAccess> xIndex( xSheets, uno::UNO_QUERY ); in removeAllSheets() local
126 if ( xIndex.is() ) in removeAllSheets()
129 for (sal_Int32 i = xIndex->getCount() -1; i>= 1; i--) in removeAllSheets()
131 uno::Reference< sheet::XSpreadsheet > xSheet(xIndex->getByIndex(i), uno::UNO_QUERY); in removeAllSheets()
139 uno::Reference< sheet::XSpreadsheet > xSheet(xIndex->getByIndex(0), uno::UNO_QUERY); in removeAllSheets()
576 uno::Reference <container::XIndexAccess> xIndex( xSheets, uno::UNO_QUERY_THROW ); in getSheetAtOffset() local
582 uno::Reference< sheet::XSpreadsheet > xSheet(xIndex->getByIndex(nIdx), uno::UNO_QUERY_THROW); in getSheetAtOffset()
H A Dvbaworksheets.cxx465 uno::Reference <container::XIndexAccess> xIndex( xSpreadDoc->getSheets(), uno::UNO_QUERY ); in nameExists() local
466 if ( xIndex.is() ) in nameExists()
468 SCTAB nCount = static_cast< SCTAB >( xIndex->getCount() ); in nameExists()
471 uno::Reference< container::XNamed > xNamed( xIndex->getByIndex(i), uno::UNO_QUERY_THROW ); in nameExists()
H A Dvbaborders.cxx194 uno::Reference< container::XIndexAccess > xIndex = m_Palette.getPalette(); in getColorIndex() local
195 sal_Int32 nElems = xIndex->getCount(); in getColorIndex()
200 xIndex->getByIndex( count ) >>= nPaletteColor; in getColorIndex()
H A Dvbahyperlink.cxx48 …uno::Reference< container::XIndexAccess > xIndex( xTextFields->getTextFields(), uno::UNO_QUERY_THR… in ScVbaHyperlink() local
49 mxTextField.set( xIndex->getByIndex(0), uno::UNO_QUERY_THROW ); in ScVbaHyperlink()
H A Dvbarange.cxx447 uno::Reference< container::XIndexAccess > xIndex( mxRanges, uno::UNO_QUERY_THROW ); in getScDocument() local
459 uno::Reference< container::XIndexAccess > xIndex( mxRanges, uno::UNO_QUERY_THROW ); in getScDocShell() local
1430 uno::Reference< container::XIndexAccess > xIndex; in ScVbaRange() local
1433 xIndex = new SingleRangeIndexAccess( mxParent, mxContext, mxRange ); in ScVbaRange()
1437 xIndex.set( mxRanges, uno::UNO_QUERY_THROW ); in ScVbaRange()
1461 uno::Reference< container::XIndexAccess > xIndex( mxRanges, uno::UNO_QUERY_THROW ); in ScVbaRange() local
2261 uno::Reference< container::XIndexAccess > xIndex( mxRanges, uno::UNO_QUERY_THROW ); in Activate() local
2262 xCellRange.set( xIndex->getByIndex( 0 ), uno::UNO_QUERY_THROW ); in Activate()
2659 uno::Reference< container::XIndexAccess > xIndex( mxRanges, uno::UNO_QUERY_THROW ); in Range() local
2660 xCellRange.set( xIndex->getByIndex( 0 ), uno::UNO_QUERY_THROW ); in Range()
[all …]
/trunk/main/xmloff/source/text/
H A DXMLSectionExport.cxx174 Reference<XDocumentIndex> xIndex; in ExportSectionStart() local
175 if (GetIndex(rSection, xIndex)) in ExportSectionStart()
177 if (xIndex.is()) in ExportSectionStart()
180 ExportIndexStart(xIndex); in ExportSectionStart()
262 Reference<XDocumentIndex> xIndex; in ExportSectionEnd() local
263 if (GetIndex(rSection, xIndex)) in ExportSectionEnd()
265 if (xIndex.is()) in ExportSectionEnd()
272 switch (MapSectionType(xIndex->getServiceName())) in ExportSectionEnd()
1800 Reference<XDocumentIndex> xIndex; in IsMuteSection() local
1801 if (! GetIndex(rSection, xIndex)) in IsMuteSection()
/trunk/main/sc/source/filter/xml/
H A DXMLExportDDELinks.cxx177 …uno::Reference<container::XIndexAccess> xIndex(xPropertySet->getPropertyValue(rtl::OUString(RTL_CO… in WriteDDELinks() local
178 if (xIndex.is()) in WriteDDELinks()
180 sal_Int32 nCount = xIndex->getCount(); in WriteDDELinks()
186 … uno::Reference<sheet::XDDELink> xDDELink(xIndex->getByIndex(nDDELink), uno::UNO_QUERY); in WriteDDELinks()
H A Dxmlbodyi.cxx288 uno::Reference <container::XIndexAccess> xIndex( xSpreadDoc->getSheets(), uno::UNO_QUERY ); in EndElement()
289 if ( xIndex.is() ) in EndElement()
291 sal_Int32 nTableCount = xIndex->getCount(); in EndElement()
298 uno::Reference <beans::XPropertySet> xProperties(xIndex->getByIndex(i), uno::UNO_QUERY); in EndElement()
H A Dxmlexprt.cxx636 uno::Reference<container::XIndexAccess> xIndex( xSpreadDoc->getSheets(), uno::UNO_QUERY ); in CollectSharedData() local
637 if ( xIndex.is() ) in CollectSharedData()
639 nTableCount = xIndex->getCount(); in CollectSharedData()
1660 uno::Reference<container::XIndexAccess> xIndex( xSpreadDoc->getSheets(), uno::UNO_QUERY ); in _ExportContent() local
1661 if ( xIndex.is() ) in _ExportContent()
1666 sal_Int32 nTableCount(xIndex->getCount()); in _ExportContent()
2169 if (!xIndex.is()) in _ExportAutoStyles()
2450 sal_Int32 nTableCount(xIndex->getCount()); in _ExportAutoStyles()
3759 if (xIndex.is()) in WriteTableSource()
3761 sal_Int32 nCount(xIndex->getCount()); in WriteTableSource()
[all …]
H A DXMLTableShapeResizer.cxx195 uno::Reference<container::XIndexAccess> xIndex( xSpreadDoc->getSheets(), uno::UNO_QUERY ); in ResizeShapes() local
197 if ( pDoc && xIndex.is() ) in ResizeShapes()
208 xSheet.set(xIndex->getByIndex(nOldSheet), uno::UNO_QUERY); in ResizeShapes()
/trunk/main/xmloff/source/core/
H A DDocumentSettingsContext.cxx837 uno::Reference< container::XIndexAccess > xIndex( maProps.GetIndexContainer(), uno::UNO_QUERY ); in EndElement() local
839 const sal_Int32 nCount = xIndex->getCount(); in EndElement()
843 … if ((xIndex->getByIndex( i ) >>= aProps) && (aProps.getLength() == XML_FORBIDDEN_CHARACTER_MAX ) ) in EndElement()
908 uno::Reference< container::XIndexAccess > xIndex( maProps.GetIndexContainer(), uno::UNO_QUERY ); in EndElement() local
910 const sal_Int32 nCount = xIndex->getCount(); in EndElement()
930 if ((xIndex->getByIndex( i ) >>= aProps) && (aProps.getLength() == XML_SYMBOL_DESCRIPTOR_MAX ) ) in EndElement()
/trunk/main/sc/source/ui/unoobj/
H A Dmiscuno.cxx217 xIndex( rInd ), in ScIndexEnumeration()
232 return ( nPos < xIndex->getCount() ); in hasMoreElements()
242 aReturn = xIndex->getByIndex(nPos++); in nextElement()
H A Dservuno.cxx180 …uno::Reference< container::XIndexAccess > xIndex( xSupplier->getDrawPages(), uno::UNO_QUERY_THROW … in getCodeNameForObject() local
181 sal_Int32 nLen = xIndex->getCount(); in getCodeNameForObject()
188 …uno::Reference< form::XFormsSupplier > xFormSupplier( xIndex->getByIndex( index ), uno::UNO_QUERY… in getCodeNameForObject()
/trunk/main/writerfilter/source/dmapper/
H A DModelEventListener.cxx65 … uno::Reference< text::XDocumentIndex> xIndex( xIndexes->getByIndex( nIndex ), uno::UNO_QUERY ); in notifyEvent() local
66 xIndex->update(); in notifyEvent()
/trunk/main/odk/examples/DevelopersGuide/Spreadsheet/
H A DViewSample.java78 com.sun.star.container.XIndexAccess xIndex = (com.sun.star.container.XIndexAccess) in doSampleFunction() local
80 Object aPane = xIndex.getByIndex(1); in doSampleFunction()
/trunk/main/odk/examples/CLI/CSharp/Spreadsheet/
H A DViewSample.cs78 unoidl.com.sun.star.container.XIndexAccess xIndex = in doSampleFunction()
80 uno.Any aPane = xIndex.getByIndex(1); in doSampleFunction()

Completed in 200 milliseconds

12