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

1 2

  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 32 public static final byte SUBTRACT = '-';
CompositeFloatValue.java 32 public static final byte SUBTRACT = '-';
CompositeIntegerValue.java 32 public static final byte SUBTRACT = '-';
CompositeLongValue.java 32 public static final byte SUBTRACT = '-';
SpecificDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
121 return new CompositeDoubleValue(this, CompositeDoubleValue.SUBTRACT, other);
126 return new CompositeDoubleValue(other, CompositeDoubleValue.SUBTRACT, this);
SpecificFloatValue.java 65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
121 return new CompositeFloatValue(this, CompositeFloatValue.SUBTRACT, other);
126 return new CompositeFloatValue(other, CompositeFloatValue.SUBTRACT, this);
SpecificLongValue.java 65 public LongValue subtract(LongValue other) method in class:SpecificLongValue
72 return other.subtract(this);
153 public LongValue subtract(SpecificLongValue other) method in class:SpecificLongValue
157 new CompositeLongValue(this, CompositeLongValue.SUBTRACT, other);
164 new CompositeLongValue(other, CompositeLongValue.SUBTRACT, this);
SpecificIntegerValue.java 80 public IntegerValue subtract(IntegerValue other) method in class:SpecificIntegerValue
87 return other.subtract(this);
208 public IntegerValue subtract(SpecificIntegerValue other) method in class:SpecificIntegerValue
212 new CompositeIntegerValue(this, CompositeIntegerValue.SUBTRACT, other);
219 new CompositeIntegerValue(other, CompositeIntegerValue.SUBTRACT, this);
  /external/chromium_org/base/metrics/
histogram_samples.h 35 virtual void Subtract(const HistogramSamples& other);
47 // Based on |op| type, add or subtract sample counts data from the iterator.
48 enum Operator { ADD, SUBTRACT };
histogram_samples.cc 91 void HistogramSamples::Subtract(const HistogramSamples& other) {
97 bool success = AddSubtractImpl(other.Iterator().get(), SUBTRACT);