Lines Matching refs:refVal
337 inline void checkUnoStructCopy( SbxVariableRef& refVal, SbxVariableRef& refVar ) in checkUnoStructCopy() argument
343 SbxObjectRef xValObj = (SbxObject*)refVal->GetObject(); in checkUnoStructCopy()
352 SbxDataType eValType = refVal->GetType(); in checkUnoStructCopy()
375 SbxVariableRef refVal = PopVar(); in StepPUT() local
400 if ( refVal->GetType() == SbxOBJECT ) in StepPUT()
402 SbxVariable* pDflt = getDefaultProp( refVal ); in StepPUT()
404 refVal = pDflt; in StepPUT()
408 *refVar = *refVal; in StepPUT()
412 checkUnoStructCopy( refVal, refVar ); in StepPUT()
465 void SbiRuntime::StepSET_Impl( SbxVariableRef& refVal, SbxVariableRef& refVar, bool bHandleDefaultP… in StepSET_Impl() argument
478 SbxDataType eValType = refVal->GetType(); in StepSET_Impl()
480 if( !bHandleDefaultProp && eValType != SbxOBJECT && !(eValType & SbxARRAY) && refVal->IsFixed() ) in StepSET_Impl()
491 SbxBase* pObjVarObj = refVal->GetObject(); in StepSET_Impl()
498 refVal = refObjVal; in StepSET_Impl()
500 refVal = NULL; in StepSET_Impl()
507 if( !refVal ) in StepSET_Impl()
542 if ( refVal->GetType() == SbxOBJECT ) in StepSET_Impl()
561 pDflt = getDefaultProp( refVal ); in StepSET_Impl()
563 refVal = pDflt; in StepSET_Impl()
579 SbxBase* pObj = refVal->GetObject(); in StepSET_Impl()
590 refVal->SetDeclareClassName( aDeclareClassName ); in StepSET_Impl()
591 refVal->SetComListener( xComListener, &rBasic ); // Hold reference in StepSET_Impl()
594 *refVar = *refVal; in StepSET_Impl()
598 *refVar = *refVal; in StepSET_Impl()
605 SbxBase* pValObjBase = refVal->GetObject(); in StepSET_Impl()
670 checkUnoStructCopy( refVal, refVar ); in StepSET_Impl()
678 SbxVariableRef refVal = PopVar(); in StepSET() local
680 StepSET_Impl( refVal, refVar, bVBAEnabled ); // this is really assigment in StepSET()
685 SbxVariableRef refVal = PopVar(); in StepVBASET() local
688 StepSET_Impl( refVal, refVar, false ); // set obj = something in StepVBASET()
695 SbxVariableRef refVal = PopVar(); in StepLSET() local
698 || refVal->GetType() != SbxSTRING ) in StepLSET()
707 String aRefValString = refVal->GetString(); in StepLSET()
731 SbxVariableRef refVal = PopVar(); in StepRSET() local
734 || refVal->GetType() != SbxSTRING ) in StepRSET()
743 String aRefValString = refVal->GetString(); in StepRSET()
764 SbxVariableRef refVal = PopVar(); in StepPUTC() local
767 *refVar = *refVal; in StepPUTC()