Examples of fun_ROUND()


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

          return t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
        }
         break;
      case ROUND:
        if (2 == c ) {
          return t.fun_ROUND( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
        }
         break;
      case ROUNDDOWN:
        if (2 == c ) {
          return t.fun_ROUNDDOWN( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
View Full Code Here

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

          return adjustReturnedValue( t.fun_RAND() );
        }
         break;
      case ROUND:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ROUND( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
        }
         break;
      case ROUNDDOWN:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ROUNDDOWN( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
View Full Code Here

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

          return adjustReturnedValue( t.fun_RAND() );
        }
         break;
      case ROUND:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ROUND( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
        }
         break;
      case ROUNDDOWN:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ROUNDDOWN( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
View Full Code Here

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

          return t.fun_RAND();
        }
         break;
      case ROUND:
        if (2 == c ) {
          return t.fun_ROUND( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
        }
         break;
      case ROUNDDOWN:
        if (2 == c ) {
          return t.fun_ROUNDDOWN( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
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.