HomeSort by relevance Sort by last modified time
    Searched full:other (Results 1 - 25 of 21872) 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...]
  /external/chromium/net/data/ftp/
dir-listing-ls-12 2 lrwxrwxrwx 1 other 7 Sep 1 2005 bin -> usr/bin
3 dr-xr-xr-x 2 other 512 Aug 9 2004 dev
4 dr-xr-xr-x 2 other 512 Sep 28 2006 etc
5 drwxr-xr-x 2 other 512 Sep 28 2006 msgs
6 drwxr-xr-x 53 other 1024 Jun 30 09:52 pub
7 dr-xr-xr-x 5 other 512 Aug 9 2004 usr
8 drwxr-xr-x 2 other 512 Aug 9 2004 var
  /external/chromium/third_party/icu/source/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...]
  /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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 44 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other)
47 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
51 other.clear();
53 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
59 value_swap(other);
61 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
68 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
74 value_swap(other);
76 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
80 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
    [all...]
  /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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 44 join_prep(PB_DS_CLASS_C_DEC& other)
47 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
48 if (other.m_size == 0)
53 value_swap(other);
57 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value));
59 const bool lesser = Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value), PB_DS_V2F(m_p_head->m_p_left->m_value));
65 value_swap(other);
67 m_size += other.m_size;
68 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
75 join_finish(PB_DS_CLASS_C_DEC& 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/chromium/third_party/icu/source/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/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

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011>>