Examples of fun_FLOOR__for_EXCEL()


Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForDoubles.fun_FLOOR__for_EXCEL()

          return t.fun_CEILING__for_OPEN_OFFICE_CALC( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
        }
         break;
      case FLOOR:
        if (2 == c && ComputationMode.EXCEL == getComputationMode() ) {
          return t.fun_FLOOR__for_EXCEL( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
        }
        if (2 == c && ComputationMode.OPEN_OFFICE_CALC == getComputationMode() ) {
          return t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
        }
         break;
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForPrecisionBigDecimals.fun_FLOOR__for_EXCEL()

          return t.fun_CEILING__for_OPEN_OFFICE_CALC( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) );
        }
         break;
      case FLOOR:
        if (2 == c && ComputationMode.EXCEL == getComputationMode() ) {
          return t.fun_FLOOR__for_EXCEL( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) );
        }
        if (2 == c && ComputationMode.OPEN_OFFICE_CALC == getComputationMode() ) {
          return t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) );
        }
         break;
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForScaledBigDecimals.fun_FLOOR__for_EXCEL()

          return adjustReturnedValue( t.fun_CEILING__for_OPEN_OFFICE_CALC( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
        }
         break;
      case FLOOR:
        if (2 == c && ComputationMode.EXCEL == getComputationMode() ) {
          return adjustReturnedValue( t.fun_FLOOR__for_EXCEL( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
        }
        if (2 == c && ComputationMode.OPEN_OFFICE_CALC == getComputationMode() ) {
          return adjustReturnedValue( t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
        }
         break;
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForScaledLongs.fun_FLOOR__for_EXCEL()

          return t.fun_CEILING__for_OPEN_OFFICE_CALC( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
        }
         break;
      case FLOOR:
        if (2 == c && ComputationMode.EXCEL == getComputationMode() ) {
          return t.fun_FLOOR__for_EXCEL( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
        }
        if (2 == c && ComputationMode.OPEN_OFFICE_CALC == getComputationMode() ) {
          return t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
        }
         break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.