Home
last modified time | relevance | path

Searched refs:xArray (Results 1 – 8 of 8) sorted by relevance

/trunk/main/basic/source/classes/
H A Dsbunoobj.cxx749 SbxDimArrayRef xArray = pArray; in unoToSbxValue() local
752 pVar->PutObject( (SbxDimArray*)xArray ); in unoToSbxValue()
867 SbxDimArrayRef xArray; in unoToSbxValue() local
869 xArray = new SbxDimArray( eSbxElementType ); in unoToSbxValue()
872 xArray->unoAddDim32( 0, nLen - 1 ); in unoToSbxValue()
883 xArray->Put32( (SbxVariable*)xVar, &i ); in unoToSbxValue()
888 xArray->unoAddDim( 0, -1 ); in unoToSbxValue()
894 pVar->PutObject( (SbxDimArray*)xArray ); in unoToSbxValue()
1252 Reference< XIdlArray > xArray = xIdlTargetClass->getArray(); in implRekMultiDimArrayToSequence() local
1253 xArray->realloc( aRetVal, nSeqSize ); in implRekMultiDimArrayToSequence()
[all …]
H A Deventatt.cxx316 SbxArrayRef xArray; in firing_impl() local
321 xArray = new SbxArray; in firing_impl()
327 xArray->Put( xVar, sal::static_int_cast< sal_uInt16 >(i+1) ); in firing_impl()
333 if( xArray.Is() ) in firing_impl()
334 pMeth->SetParameters( xArray ); in firing_impl()
H A Dsbxmod.cxx726 SbxArrayRef xArray = pImage->GetEnums(); in Find() local
727 if( xArray.Is() ) in Find()
729 SbxVariable* pEnumVar = xArray->Find( rName, SbxCLASS_DONTCARE ); in Find()
1910 SbxArrayRef xArray = new SbxArray; in handleProcedureProperties() local
1911 xArray->Put( pMeth, 0 ); // Method as parameter 0 in handleProcedureProperties()
1912 xArray->Put( pVar, 1 ); in handleProcedureProperties()
1913 pMeth->SetParameters( xArray ); in handleProcedureProperties()
2454 SbxArrayRef xArray = new SbxArray; in triggerMethod() local
2455 xArray->Put( pMeth, 0 ); // Method as parameter 0 in triggerMethod()
2461 xArray->Put( xSbxVar, static_cast< sal_uInt16 >( i ) + 1 ); in triggerMethod()
[all …]
/trunk/main/ucbhelper/source/provider/
H A Dpropertyvalueset.cxx112 Reference< XArray > xArray; // getArray member
569 aValue <<= rValue.xArray; in getObject()
622 GETVALUE_IMPL( Reference< XArray >, ARRAY_VALUE_SET, xArray ); in getArray()
813 SETVALUE_IMPL( rPropName, ARRAY_VALUE_SET, xArray, rValue ); in appendArray()
/trunk/main/basic/source/runtime/
H A Dmethods1.cxx207 SbxArrayRef xArray; in RTLFUNC() local
211 xArray = new SbxArray; in RTLFUNC()
215 xArray->Put( pPar, i + 1 ); in RTLFUNC()
221 if( xArray.Is() ) in RTLFUNC()
222 pMeth->SetParameters( xArray ); in RTLFUNC()
/trunk/main/sc/source/filter/excel/
H A Dxeformula.cxx2104 ScExternalRefCache::TokenArrayRef xArray = rExtRefMgr.getRangeNameTokens( nFileId, rName ); in ProcessExternalName() local
2105 if( xArray.get() ) in ProcessExternalName()
2110 for( FormulaToken* pScToken = xArray->First(); pScToken; pScToken = xArray->Next() ) in ProcessExternalName()
2139 … if( pFile && mxData->mpLinkMgr->InsertExtName( nExtSheet, nExtName, *pFile, rName, xArray ) ) in ProcessExternalName()
/trunk/main/odk/examples/DevelopersGuide/Spreadsheet/
H A DSpreadsheetSample.java620 com.sun.star.sheet.XArrayFormulaRange xArray = (com.sun.star.sheet.XArrayFormulaRange) in doCellCursorSamples() local
624 + " contains formula " + xArray.getArrayFormula() ); in doCellCursorSamples()
/trunk/main/odk/examples/CLI/CSharp/Spreadsheet/
H A DSpreadsheetSample.cs595 unoidl.com.sun.star.sheet.XArrayFormulaRange xArray = in doCellCursorSamples()
599 + " contains formula " + xArray.getArrayFormula() ); in doCellCursorSamples()