Lines Matching refs:plValue
534 sal_Bool RscExpType::Evaluate( sal_Int32 * plValue ) const{ in Evaluate()
538 *plValue = aExp.pDef->GetNumber(); in Evaluate()
541 return( aExp.pExp->Evaluate( plValue ) ); in Evaluate()
543 *plValue = 0; in Evaluate()
545 *plValue = GetLong(); in Evaluate()
625 sal_Bool RscExpression::Evaluate( sal_Int32 * plValue ){ in Evaluate() argument
632 *plValue = lLeft & lRight; in Evaluate()
634 *plValue = lLeft | lRight; in Evaluate()
636 *plValue = lLeft + lRight; in Evaluate()
638 *plValue = lLeft - lRight; in Evaluate()
640 *plValue = lLeft * lRight; in Evaluate()
642 *plValue = lLeft >> lRight; in Evaluate()
644 *plValue = lLeft << lRight; in Evaluate()
648 *plValue = lLeft / lRight; in Evaluate()