HomeSort by relevance Sort by last modified time
    Searched refs:DIVIDE (Results 1 - 25 of 29) 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/dexmaker/src/main/java/com/google/dexmaker/
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
62 DIVIDE() {
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.h 136 DIVIDE = 21 | BINARY_OP_PRECEDENCE(10),
Lexer.cpp 884 token = DIVIDE;
    [all...]
ASTBuilder.h     [all...]
JSParser.cpp     [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 62 { DIVIDE, "arith", " / " },
awkgram.y 57 %token <i> ADD MINUS MULT DIVIDE MOD
356 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
run.c 1021 case DIVIDE:
    [all...]
  /external/icu4c/i18n/
decNumber.c 161 /* a divide (unless a floating-point or 64-bit multiply is */
194 #define DIVIDE 0x80 /* Divide operators */
231 /* Constant multipliers for divide-by-power-of five using reciprocal */
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 742 Method divide = binaryOpMethod(int.class, int.class, BinaryOp.DIVIDE); local
743 assertEquals(18, divide.invoke(null, 75, 4));
745 divide.invoke(null, 75, 0);
790 Method divide = binaryOpMethod(long.class, long.class, BinaryOp.DIVIDE); local
841 Method divide = binaryOpMethod(float.class, float.class, BinaryOp.DIVIDE); local
860 Method divide = binaryOpMethod(double.class, double.class, BinaryOp.DIVIDE); local
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 

Completed in 435 milliseconds

1 2