HomeSort by relevance Sort by last modified time
    Searched refs:DIVIDE (Results 1 - 25 of 40) sorted by null

1 2

  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 34 public static final byte DIVIDE = '/';
CompositeFloatValue.java 34 public static final byte DIVIDE = '/';
CompositeIntegerValue.java 34 public static final byte DIVIDE = '/';
CompositeLongValue.java 34 public static final byte DIVIDE = '/';
SpecificDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:SpecificDoubleValue
87 return other.divide(this);
134 public DoubleValue divide(SpecificDoubleValue other) method in class:SpecificDoubleValue
136 return new CompositeDoubleValue(this, CompositeDoubleValue.DIVIDE, other);
141 return new CompositeDoubleValue(other, CompositeDoubleValue.DIVIDE, this);
SpecificFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:SpecificFloatValue
87 return other.divide(this);
134 public FloatValue divide(SpecificFloatValue other) method in class:SpecificFloatValue
136 return new CompositeFloatValue(this, CompositeFloatValue.DIVIDE, other);
141 return new CompositeFloatValue(other, CompositeFloatValue.DIVIDE, this);
SpecificLongValue.java 80 public LongValue divide(LongValue other) method in class:SpecificLongValue
89 return other.divide(this);
172 public LongValue divide(SpecificLongValue other) method in class:SpecificLongValue
175 return new CompositeLongValue(this, CompositeLongValue.DIVIDE, other);
181 return new CompositeLongValue(other, CompositeLongValue.DIVIDE, this);
SpecificIntegerValue.java 95 public IntegerValue divide(IntegerValue other) method in class:SpecificIntegerValue
104 return other.divide(this);
227 public IntegerValue divide(SpecificIntegerValue other) method in class:SpecificIntegerValue
230 return new CompositeIntegerValue(this, CompositeIntegerValue.DIVIDE, other);
236 return new CompositeIntegerValue(other, CompositeIntegerValue.DIVIDE, this);
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
parser.h 85 DIVIDE = 43,
151 #define DIVIDE 43
parser.y 127 DIVIDE 43
156 %left TIMES DIVIDE
632 Expr : Expr DIVIDE Expr
scanner.c 143 if (chr(s, '/')) return DIVIDE;
  /external/one-true-awk/
ytab.h 101 DIVIDE = 311,
198 #define DIVIDE 311
maketab.c 62 { DIVIDE, "arith", " / " },
awkgram.y 57 %token <i> ADD MINUS MULT DIVIDE MOD
356 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
ytab.c 169 DIVIDE = 311,
266 #define DIVIDE 311
679 "DIVIDE", "MOD", "ASSIGN", "ASGNOP", "ADDEQ", "SUBEQ", "MULTEQ", "DIVEQ",
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
BinaryFunction.java 63 public static final BinaryFunction DIVIDE = new BinaryFunction() {
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
BinaryOp.java 27 * {@link #DIVIDE}, and {@link #REMAINDER}) support ints, longs, floats and
35 * For int and long operands, {@link #DIVIDE} and {@link #REMAINDER} throw
65 DIVIDE() {
  /external/turbine/java/com/google/turbine/tree/
TurbineOperatorKind.java 33 DIVIDE("/", Precedence.MULTIPLICATIVE),
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
AssignExpr.java 56 DIVIDE("/="),
83 case DIVIDE:
84 return Optional.of(BinaryExpr.Operator.DIVIDE);
BinaryExpr.java 67 DIVIDE("/"),
100 case DIVIDE:
101 return Optional.of(AssignExpr.Operator.DIVIDE);
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmsimpleexpression.h 31 DIVIDE,
  /external/icu/icu4c/source/i18n/
decNumber.cpp 163 /* a divide (unless a floating-point or 64-bit multiply is */
196 #define DIVIDE 0x80 /* Divide operators */
235 /* Constant multipliers for divide-by-power-of five using reciprocal */
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 468 return mapToSelf(BinaryFunction.DIVIDE.fix2ndArgument(d));
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
TypeExtractor.java 117 case DIVIDE:
  /external/turbine/java/com/google/turbine/parse/
ConstExpressionParser.java 57 return TurbineOperatorKind.DIVIDE;

Completed in 1148 milliseconds

1 2