Lines Matching refs:rOp

1130 sal_Bool SbxValue::Compute( SbxOperator eOp, const SbxValue& rOp )  in Compute()  argument
1135 SbxDataType eOpType = rOp.GetType(); in Compute()
1141 else if( !rOp.CanRead() ) in Compute()
1150 *this = rOp; in Compute()
1168 rOp.Get( aR ); in Compute()
1170 if( rOp.GetType() == SbxEMPTY ) in Compute()
1189 else if( eOpType == SbxSTRING && rOp.IsFixed() ) in Compute()
1217 if( rOp.Get( aR ) ) in Compute()
1219 if( rOp.GetType() == SbxEMPTY ) in Compute()
1298 else if( ( GetType() == SbxDECIMAL || rOp.GetType() == SbxDECIMAL ) && in Compute()
1303 if( rOp.Get( aR ) ) in Compute()
1305 if( rOp.GetType() == SbxEMPTY ) in Compute()
1348 else if( GetType() == SbxCURRENCY || rOp.GetType() == SbxCURRENCY ) in Compute()
1353 if( rOp.Get( aR ) ) in Compute()
1357 if( rOp.GetType() == SbxEMPTY ) in Compute()
1410 if( rOp.Get( aR ) ) in Compute()
1412 if( rOp.GetType() == SbxEMPTY ) in Compute()
1440 if( eOp == SbxPLUS && (GetType() == SbxDATE || rOp.GetType() == SbxDATE ) ) in Compute()
1464 sal_Bool SbxValue::Compare( SbxOperator eOp, const SbxValue& rOp ) const in Compare()
1472 if( !CanRead() || !rOp.CanRead() ) in Compare()
1474 else if( GetType() == SbxNULL && rOp.GetType() == SbxNULL && !bVBAInterop ) in Compare()
1478 else if( GetType() == SbxEMPTY && rOp.GetType() == SbxEMPTY ) in Compare()
1481 else if( GetType() == SbxNULL || rOp.GetType() == SbxNULL ) in Compare()
1485 else if( !IsFixed() && !rOp.IsFixed() in Compare()
1486 && ( rOp.GetType() == SbxSTRING && GetType() != SbxSTRING && IsNumeric() ) && !bVBAInterop in Compare()
1489 else if( !IsFixed() && !rOp.IsFixed() in Compare()
1490 && ( GetType() == SbxSTRING && rOp.GetType() != SbxSTRING && rOp.IsNumeric() ) in Compare()
1499 if( GetType() == SbxSTRING || rOp.GetType() == SbxSTRING ) in Compare()
1502 if( Get( aL ) && rOp.Get( aR ) ) switch( eOp ) in Compare()
1522 else if( GetType() == SbxSINGLE || rOp.GetType() == SbxSINGLE ) in Compare()
1525 if( Get( aL ) && rOp.Get( aR ) ) in Compare()
1544 else if( GetType() == SbxDECIMAL && rOp.GetType() == SbxDECIMAL ) in Compare()
1548 rOp.Get( aR ); in Compare()
1583 bool bGetR = rOp.Get( aR ); in Compare()