Lines Matching refs:eOp

1130 sal_Bool SbxValue::Compute( SbxOperator eOp, const SbxValue& rOp )  in Compute()  argument
1158 ( eOp == SbxMUL || eOp == SbxDIV || eOp == SbxPLUS || eOp == SbxMINUS ) ) in Compute()
1162 …else if( eThisType == SbxSTRING || eOp == SbxCAT || ( bVBAInterop && ( eOpType == SbxSTRING ) && (… in Compute()
1164 if( eOp == SbxCAT || eOp == SbxPLUS ) in Compute()
1193 else if( ( eOp >= SbxIDIV && eOp <= SbxNOT ) || eOp == SbxMOD ) in Compute()
1221 if ( !bVBAInterop || ( bVBAInterop && ( eOp != SbxNOT ) ) ) in Compute()
1224 if( Get( aL ) ) switch( eOp ) in Compute()
1299 ( eOp == SbxMUL || eOp == SbxDIV || eOp == SbxPLUS || eOp == SbxMINUS || eOp == SbxNEG ) ) in Compute()
1315 switch( eOp ) in Compute()
1360 if( Get( aL ) ) switch( eOp ) in Compute()
1414 if ( !bVBAInterop || ( bVBAInterop && ( eOp != SbxNEG ) ) ) in Compute()
1419 switch( eOp ) 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() argument
1479 bRes = !bVBAInterop ? sal_True : ( eOp == SbxEQ ? sal_True : sal_False ); in Compare()
1488 bRes = sal_Bool( eOp == SbxLT || eOp == SbxLE || eOp == SbxNE ); in Compare()
1493 bRes = sal_Bool( eOp == SbxGT || eOp == SbxGE || eOp == SbxNE ); in Compare()
1502 if( Get( aL ) && rOp.Get( aR ) ) switch( eOp ) in Compare()
1526 switch( eOp ) in Compare()
1552 switch( eOp ) in Compare()
1585 switch( eOp ) in Compare()
1607 if ( bVBAInterop && eOp == SbxEQ && GetError() == SbxERR_CONVERSION ) in Compare()