Lines Matching refs:xArray
726 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()
2467 pMeth->SetParameters( xArray ); in triggerMethod()
2474 aArguments[i] = sbxToUnoValue( xArray->Get( static_cast< sal_uInt16 >(i) + 1) ); in triggerMethod()