/aoo41x/main/sc/source/ui/Accessibility/ |
H A D | AccessibleCellBase.cxx | 122 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 D | AccessibleEditObject.cxx | 429 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()
|
/aoo41x/main/connectivity/source/drivers/dbase/ |
H A D | DCode.cxx | 59 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 D | DDatabaseMetaData.cxx | 293 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 D | DTable.cxx | 1638 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 …]
|
/aoo41x/main/dbaccess/source/ui/misc/ |
H A D | indexcollection.cxx | 291 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()
|
/aoo41x/main/sc/workben/ |
H A D | test.cxx | 589 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 …]
|
/aoo41x/main/sc/source/ui/vba/ |
H A D | vbapalette.cxx | 97 uno::Reference< container::XIndexAccess > xIndex; in getPalette() local 103 …xIndex.set( xProps->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ColorPalette") )… in getPalette() 104 if ( !xIndex.is() ) in getPalette() 106 return xIndex; in getPalette()
|
H A D | vbainterior.cxx | 184 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 D | vbaworksheets.cxx | 465 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 D | vbaworksheet.cxx | 124 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 D | vbaborders.cxx | 194 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 D | vbahyperlink.cxx | 48 …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 D | vbarange.cxx | 447 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 …]
|
/aoo41x/main/xmloff/source/text/ |
H A D | XMLSectionExport.cxx | 174 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()
|
/aoo41x/main/sc/source/filter/xml/ |
H A D | XMLExportDDELinks.cxx | 177 …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 D | xmlbodyi.cxx | 288 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 D | xmlexprt.cxx | 636 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 D | XMLTableShapeResizer.cxx | 195 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()
|
/aoo41x/main/sc/source/ui/unoobj/ |
H A D | miscuno.cxx | 217 xIndex( rInd ), in ScIndexEnumeration() 232 return ( nPos < xIndex->getCount() ); in hasMoreElements() 242 aReturn = xIndex->getByIndex(nPos++); in nextElement()
|
H A D | servuno.cxx | 180 …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()
|
/aoo41x/main/xmloff/source/core/ |
H A D | DocumentSettingsContext.cxx | 837 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()
|
/aoo41x/main/writerfilter/source/dmapper/ |
H A D | ModelEventListener.cxx | 65 … uno::Reference< text::XDocumentIndex> xIndex( xIndexes->getByIndex( nIndex ), uno::UNO_QUERY ); in notifyEvent() local 66 xIndex->update(); in notifyEvent()
|
/aoo41x/main/odk/examples/DevelopersGuide/Spreadsheet/ |
H A D | ViewSample.java | 78 com.sun.star.container.XIndexAccess xIndex = (com.sun.star.container.XIndexAccess) in doSampleFunction() local 80 Object aPane = xIndex.getByIndex(1); in doSampleFunction()
|
/aoo41x/main/odk/examples/CLI/CSharp/Spreadsheet/ |
H A D | ViewSample.cs | 78 unoidl.com.sun.star.container.XIndexAccess xIndex = in doSampleFunction() 80 uno.Any aPane = xIndex.getByIndex(1); in doSampleFunction()
|