HomeSort by relevance Sort by last modified time
    Searched full:other (Results 1 - 25 of 18848) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
SpecificIntegerValue.java 70 public IntegerValue generalize(IntegerValue other)
72 return other.generalize(this);
75 public IntegerValue add(IntegerValue other)
77 return other.add(this);
80 public IntegerValue subtract(IntegerValue other)
82 return other.subtractFrom(this);
85 public IntegerValue subtractFrom(IntegerValue other)
87 return other.subtract(this);
90 public IntegerValue multiply(IntegerValue other)
92 return other.multiply(this)
    [all...]
ParticularIntegerValue.java 102 public IntegerValue generalize(IntegerValue other)
104 return other.generalize(this);
107 public IntegerValue add(IntegerValue other)
109 return other.add(this);
112 public IntegerValue subtract(IntegerValue other)
114 return other.subtractFrom(this);
117 public IntegerValue subtractFrom(IntegerValue other)
119 return other.subtract(this);
122 public IntegerValue multiply(IntegerValue other)
124 return other.multiply(this)
    [all...]
SpecificLongValue.java 55 public LongValue generalize(LongValue other)
57 return other.generalize(this);
60 public LongValue add(LongValue other)
62 return other.add(this);
65 public LongValue subtract(LongValue other)
67 return other.subtractFrom(this);
70 public LongValue subtractFrom(LongValue other)
72 return other.subtract(this);
75 public LongValue multiply(LongValue other)
77 return other.multiply(this)
    [all...]
ParticularDoubleValue.java 75 public DoubleValue generalize(DoubleValue other)
77 return other.generalize(this);
80 public DoubleValue add(DoubleValue other)
82 return value == 0.0 ? other : other.add(this);
85 public DoubleValue subtract(DoubleValue other)
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
90 public DoubleValue subtractFrom(DoubleValue other)
92 return value == 0.0 ? other : other.subtract(this)
    [all...]
ParticularFloatValue.java 75 public FloatValue generalize(FloatValue other)
77 return other.generalize(this);
80 public FloatValue add(FloatValue other)
82 return value == 0.0 ? other : other.add(this);
85 public FloatValue subtract(FloatValue other)
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
90 public FloatValue subtractFrom(FloatValue other)
92 return value == 0.0 ? other : other.subtract(this)
    [all...]
SpecificDoubleValue.java 55 public DoubleValue generalize(DoubleValue other)
57 return other.generalize(this);
60 public DoubleValue add(DoubleValue other)
62 return other.add(this);
65 public DoubleValue subtract(DoubleValue other)
67 return other.subtractFrom(this);
70 public DoubleValue subtractFrom(DoubleValue other)
72 return other.subtract(this);
75 public DoubleValue multiply(DoubleValue other)
77 return other.multiply(this)
    [all...]
SpecificFloatValue.java 55 public FloatValue generalize(FloatValue other)
57 return other.generalize(this);
60 public FloatValue add(FloatValue other)
62 return other.add(this);
65 public FloatValue subtract(FloatValue other)
67 return other.subtractFrom(this);
70 public FloatValue subtractFrom(FloatValue other)
72 return other.subtract(this);
75 public FloatValue multiply(FloatValue other)
77 return other.multiply(this)
    [all...]
ParticularLongValue.java 75 public LongValue generalize(LongValue other)
77 return other.generalize(this);
80 public LongValue add(LongValue other)
82 return other.add(this);
85 public LongValue subtract(LongValue other)
87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other)
92 return other.subtract(this);
95 public LongValue multiply(LongValue other)
97 return other.multiply(this)
    [all...]
UnknownIntegerValue.java 70 public IntegerValue generalize(IntegerValue other)
76 public IntegerValue add(IntegerValue other)
81 public IntegerValue subtract(IntegerValue other)
86 public IntegerValue subtractFrom(IntegerValue other)
91 public IntegerValue multiply(IntegerValue other)
97 public IntegerValue divide(IntegerValue other)
103 public IntegerValue divideOf(IntegerValue other)
109 public IntegerValue remainder(IntegerValue other)
115 public IntegerValue remainderOf(IntegerValue other)
121 public IntegerValue shiftLeft(IntegerValue other)
    [all...]
LongValue.java 68 * Returns the generalization of this LongValue and the given other
71 public LongValue generalize(LongValue other)
73 return other.generalize(this);
79 public LongValue add(LongValue other)
81 return other.add(this);
87 public LongValue subtract(LongValue other)
89 return other.subtractFrom(this);
95 public LongValue subtractFrom(LongValue other)
97 return other.subtract(this);
103 public LongValue multiply(LongValue other)
    [all...]
IntegerValue.java 82 * Returns the generalization of this IntegerValue and the given other
85 public abstract IntegerValue generalize(IntegerValue other);
90 public abstract IntegerValue add(IntegerValue other);
95 public abstract IntegerValue subtract(IntegerValue other);
100 public abstract IntegerValue subtractFrom(IntegerValue other);
105 public abstract IntegerValue multiply(IntegerValue other)
111 public abstract IntegerValue divide(IntegerValue other)
117 public abstract IntegerValue divideOf(IntegerValue other)
124 public abstract IntegerValue remainder(IntegerValue other)
131 public abstract IntegerValue remainderOf(IntegerValue other)
    [all...]
DoubleValue.java 67 * Returns the generalization of this DoubleValue and the given other
70 public abstract DoubleValue generalize(DoubleValue other);
76 public abstract DoubleValue add(DoubleValue other);
81 public abstract DoubleValue subtract(DoubleValue other);
86 public abstract DoubleValue subtractFrom(DoubleValue other);
91 public abstract DoubleValue multiply(DoubleValue other);
96 public abstract DoubleValue divide(DoubleValue other);
101 public abstract DoubleValue divideOf(DoubleValue other);
106 public abstract DoubleValue remainder(DoubleValue other);
111 public abstract DoubleValue remainderOf(DoubleValue other);
    [all...]
FloatValue.java 67 * Returns the generalization of this FloatValue and the given other
70 public abstract FloatValue generalize(FloatValue other);
76 public abstract FloatValue add(FloatValue other);
81 public abstract FloatValue subtract(FloatValue other);
86 public abstract FloatValue subtractFrom(FloatValue other);
91 public abstract FloatValue multiply(FloatValue other);
96 public abstract FloatValue divide(FloatValue other);
101 public abstract FloatValue divideOf(FloatValue other);
106 public abstract FloatValue remainder(FloatValue other);
111 public abstract FloatValue remainderOf(FloatValue other);
    [all...]
UnknownLongValue.java 55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other)
70 public LongValue subtractFrom(LongValue other)
75 public LongValue multiply(LongValue other)
81 public LongValue divide(LongValue other)
87 public LongValue divideOf(LongValue other)
93 public LongValue remainder(LongValue other)
99 public LongValue remainderOf(LongValue other)
105 public LongValue shiftLeft(IntegerValue other)
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 42 StyleFillData::StyleFillData(const StyleFillData& other)
45 paint = other.paint;
46 opacity = other.opacity;
49 bool StyleFillData::operator==(const StyleFillData &other) const
51 if (opacity != other.opacity)
54 if (!paint || !other.paint)
55 return paint == other.paint;
57 if (paint->paintType() != other.paint->paintType())
61 return paint->uri() == other.paint->uri();
64 return paint->color() == other.paint->color()
    [all...]
  /dalvik/tests/060-reflection-security/
expected.txt 7 checkMemberAccess: other.Blort, PUBLIC
9 checkMemberAccess: other.Blort, PUBLIC
13 checkMemberAccess: other.Blort, DECLARED
16 checkMemberAccess: other.Blort, DECLARED
20 checkMemberAccess: other.Blort, PUBLIC
22 checkMemberAccess: other.Blort, PUBLIC
26 checkMemberAccess: other.Blort, DECLARED
29 checkMemberAccess: other.Blort, DECLARED
33 checkMemberAccess: other.Blort, PUBLIC
35 checkMemberAccess: other.Blort, PUBLI
    [all...]
  /external/icu4c/common/
dtintrv.cpp 32 DateInterval::DateInterval(const DateInterval& other)
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) {
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other.toDate )
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DSAValidationParameters.java 34 DSAValidationParameters other = (DSAValidationParameters)o; local
36 if (other.counter != this.counter)
41 if (other.seed.length != this.seed.length)
46 for (int i = 0; i != other.seed.length; i++)
48 if (other.seed[i] != this.seed[i])
  /external/webkit/WebCore/html/
CollectionCache.cpp 40 CollectionCache::CollectionCache(const CollectionCache& other)
41 : version(other.version)
42 , current(other.current)
43 , position(other.position)
44 , length(other.length)
45 , elementsArrayPosition(other.elementsArrayPosition)
46 , hasLength(other.hasLength)
47 , hasNameCache(other.hasNameCache)
49 copyCacheMap(idCache, other.idCache);
50 copyCacheMap(nameCache, other.nameCache)
    [all...]
  /frameworks/base/include/utils/
RefBase.h 181 sp(T* other);
182 sp(const sp<T>& other);
183 template<typename U> sp(U* other);
184 template<typename U> sp(const sp<U>& other);
190 sp& operator = (T* other);
191 sp& operator = (const sp<T>& other);
193 template<typename U> sp& operator = (const sp<U>& other);
194 template<typename U> sp& operator = (U* other);
197 void force_set(T* other);
241 wp(T* other);
    [all...]
  /external/webkit/WebCore/platform/graphics/
IntRect.cpp 11 * documentation and/or other materials provided with the distribution.
43 bool IntRect::intersects(const IntRect& other) const
46 return !isEmpty() && !other.isEmpty()
47 && x() < other.right() && other.x() < right()
48 && y() < other.bottom() && other.y() < bottom();
51 bool IntRect::contains(const IntRect& other) const
53 return x() <= other.x() && right() >= other.right(
    [all...]
  /external/icu4c/i18n/
currunit.cpp 31 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) :
32 MeasureUnit(other) {
33 *this = other;
36 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) {
37 if (this != &other) {
38 u_strcpy(isoCode, other.isoCode);
50 UBool CurrencyUnit::operator==(const UObject& other) const {
51 const CurrencyUnit& c = (const CurrencyUnit&) other;
52 return other.getDynamicClassID() == CurrencyUnit::getStaticClassID() &&
  /external/qemu/tcg/
LICENSE 2 a BSD like license (see header in each file). No other license is
  /system/core/libpixelflinger/tinyutils/
smartpointer.h 45 sp(T* other);
46 sp(const sp<T>& other);
47 template<typename U> sp(U* other);
48 template<typename U> sp(const sp<U>& other);
54 sp& operator = (T* other);
55 sp& operator = (const sp<T>& other);
57 template<typename U> sp& operator = (const sp<U>& other);
58 template<typename U> sp& operator = (U* other);
88 sp<T>::sp(T* other)
89 : m_ptr(other)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebVector.h 12 * in the documentation and/or other materials provided with the
52 // It is also possible to assign from other types of random access
76 WebVector(const WebVector<T>& other)
78 initializeFrom(other.m_ptr, other.m_size);
82 WebVector(const C& other)
84 initializeFrom(other.size() ? &other[0] : 0, other.size());
87 WebVector& operator=(const WebVector& other)
    [all...]

Completed in 84 milliseconds

1 2 3 4 5 6 7 8 91011>>