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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/075-verification-error/src/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /dalvik/tests/075-verification-error/src2/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /external/proguard/src/proguard/evaluation/value/
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...]
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...]
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...]
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...]
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...]
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...]
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...]
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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
51 other.make_binomial_heap();
53 base_type::split(pred, other);
56 other.find_max();
59 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
65 join(PB_DS_CLASS_C_DEC& other)
68 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
71 other.make_binomial_heap();
73 base_type::join(other);
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
51 other.make_binomial_heap();
53 base_type::split(pred, other);
56 other.find_max();
59 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
65 join(PB_DS_CLASS_C_DEC& other)
68 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
71 other.make_binomial_heap();
73 base_type::join(other);
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
51 other.make_binomial_heap();
53 base_type::split(pred, other);
56 other.find_max();
59 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
65 join(PB_DS_CLASS_C_DEC& other)
68 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
71 other.make_binomial_heap();
73 base_type::join(other);
    [all...]
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
51 other.make_binomial_heap();
53 base_type::split(pred, other);
56 other.find_max();
59 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
65 join(PB_DS_CLASS_C_DEC& other)
68 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
71 other.make_binomial_heap();
73 base_type::join(other);
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 44 StyleFillData::StyleFillData(const StyleFillData& other)
46 , opacity(other.opacity)
47 , paint(other.paint)
51 bool StyleFillData::operator==(const StyleFillData& other) const
53 if (opacity != other.opacity)
56 if (!paint || !other.paint)
57 return paint == other.paint;
59 if (paint->paintType() != other.paint->paintType())
63 return paint->uri() == other.paint->uri();
66 return paint->color() == other.paint->color()
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_action.java 6 * Objects of this base class will default to ERROR, while the other two
55 public boolean equals(parse_action other)
58 return other != null && other.kind() == ERROR;
64 public boolean equals(Object other)
66 if (other instanceof parse_action)
67 return equals((parse_action)other);
  /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...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/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...]

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 91011>>