Searched defs:subtract (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/third_party/icu/source/test/perf/perldriver/
H A DDataset.pm89 sub subtract { subroutine
/external/icu/icu4c/source/test/perf/perldriver/
H A DDataset.pm89 sub subtract { subroutine
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java68 public LookaheadSet subtract(LookaheadSet other) { method in class:LookaheadSet
69 return new LookaheadSet(this.tokenTypeSet.subtract(other.tokenTypeSet));
87 tokenTypeSet = (IntervalSet)tokenTypeSet.subtract(IntervalSet.of(a));
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java61 IntSet subtract(IntSet a); method in interface:IntSet
H A DIntervalSet.java260 public IntSet subtract(IntSet other) { method in class:IntervalSet
276 * subtract and so then subtract can simply be a&~b
278 public IntSet subtract(IntSet other) {
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.h48 void subtract(const Region&);
152 static inline Region subtract(const Region& a, const Region& b) function in namespace:blink
155 result.subtract(b);
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java81 public abstract DoubleValue subtract(DoubleValue other); method in class:DoubleValue
155 public DoubleValue subtract(SpecificDoubleValue other) method in class:DoubleValue
157 return subtract((DoubleValue)other);
258 public DoubleValue subtract(ParticularDoubleValue other) method in class:DoubleValue
260 return subtract((SpecificDoubleValue)other);
H A DFloatValue.java81 public abstract FloatValue subtract(FloatValue other); method in class:FloatValue
155 public FloatValue subtract(SpecificFloatValue other) method in class:FloatValue
157 return subtract((FloatValue)other);
258 public FloatValue subtract(ParticularFloatValue other) method in class:FloatValue
260 return subtract((SpecificFloatValue)other);
H A DParticularDoubleValue.java87 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java87 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:UnknownFloatValue
H A DIntegerValue.java95 public abstract IntegerValue subtract(IntegerValue other); method in class:IntegerValue
272 public IntegerValue subtract(UnknownIntegerValue other) method in class:IntegerValue
274 return subtract((IntegerValue)other);
516 public IntegerValue subtract(SpecificIntegerValue other) method in class:IntegerValue
518 return subtract((IntegerValue)other);
760 public IntegerValue subtract(ParticularIntegerValue other) method in class:IntegerValue
762 return subtract((SpecificIntegerValue)other);
H A DLongValue.java87 public LongValue subtract(LongValue other) method in class:LongValue
97 return other.subtract(this);
244 public LongValue subtract(SpecificLongValue other) method in class:LongValue
400 public LongValue subtract(ParticularLongValue other) method in class:LongValue
402 return subtract((SpecificLongValue)other);
H A DParticularIntegerValue.java112 public IntegerValue subtract(IntegerValue other) method in class:ParticularIntegerValue
119 return other.subtract(this);
240 public IntegerValue subtract(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java85 public LongValue subtract(LongValue other) method in class:ParticularLongValue
92 return other.subtract(this);
173 public LongValue subtract(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java80 public IntegerValue subtract(IntegerValue other) method in class:SpecificIntegerValue
87 return other.subtract(this);
208 public IntegerValue subtract(SpecificIntegerValue other) method in class:SpecificIntegerValue
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java50 public final void subtract(Vector2 other) { method in class:Vector2
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java104 public SimpleBigDecimal subtract(SimpleBigDecimal b) method in class:SimpleBigDecimal
109 public SimpleBigDecimal subtract(BigInteger b) method in class:SimpleBigDecimal
111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
202 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h41 DesktopVector subtract(const DesktopVector& other) const { function in class:webrtc::DesktopVector
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c79 // A binary arithmetic integer operation (add, subtract etc.)
90 static int subtract(int a, int b);
97 {"-", subtract},
106 static int subtract(int a, int b) { function
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java119 public UnsignedInteger subtract(UnsignedInteger val) { method in class:UnsignedInteger
H A DUnsignedLong.java117 public UnsignedLong subtract(UnsignedLong val) { method in class:UnsignedLong

Completed in 3850 milliseconds

123