HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 76 - 100 of 8917) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/test/536-checker-needs-access-check/src2/other/
InaccessibleClassProxy.java 17 package other; package
  /external/clang/test/Modules/Inputs/
category_other.h 3 @interface Foo(Other)
4 -(void)other;
  /external/proguard/src/proguard/evaluation/value/
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...]
UnknownDoubleValue.java 55 public DoubleValue generalize(DoubleValue other)
60 public DoubleValue add(DoubleValue other)
65 public DoubleValue subtract(DoubleValue other)
70 public DoubleValue subtractFrom(DoubleValue other)
75 public DoubleValue multiply(DoubleValue other)
80 public DoubleValue divide(DoubleValue other)
85 public DoubleValue divideOf(DoubleValue other)
90 public DoubleValue remainder(DoubleValue other)
95 public DoubleValue remainderOf(DoubleValue other)
100 public IntegerValue compare(DoubleValue other)
    [all...]
UnknownFloatValue.java 55 public FloatValue generalize(FloatValue other)
60 public FloatValue add(FloatValue other)
65 public FloatValue subtract(FloatValue other)
70 public FloatValue subtractFrom(FloatValue other)
75 public FloatValue multiply(FloatValue other)
80 public FloatValue divide(FloatValue other)
85 public FloatValue divideOf(FloatValue other)
90 public FloatValue remainder(FloatValue other)
95 public FloatValue remainderOf(FloatValue other)
100 public IntegerValue compare(FloatValue other)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 PB_DS_ASSERT_VALID(other)
50 other.clear();
54 PB_DS_ASSERT_VALID(other)
65 ++other.m_size;
67 other.make_root_and_link(p_out);
71 PB_DS_ASSERT_VALID(other)
83 PB_DS_ASSERT_VALID(other)
89 join(PB_DS_CLASS_C_DEC& other)
92 PB_DS_ASSERT_VALID(other)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 PB_DS_ASSERT_VALID(other)
50 other.clear();
54 PB_DS_ASSERT_VALID(other)
65 ++other.m_size;
67 other.make_root_and_link(p_out);
71 PB_DS_ASSERT_VALID(other)
83 PB_DS_ASSERT_VALID(other)
89 join(PB_DS_CLASS_C_DEC& other)
92 PB_DS_ASSERT_VALID(other)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 PB_DS_ASSERT_VALID(other)
50 other.clear();
54 PB_DS_ASSERT_VALID(other)
65 ++other.m_size;
67 other.make_root_and_link(p_out);
71 PB_DS_ASSERT_VALID(other)
83 PB_DS_ASSERT_VALID(other)
89 join(PB_DS_CLASS_C_DEC& other)
92 PB_DS_ASSERT_VALID(other)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
48 PB_DS_ASSERT_VALID(other)
50 other.clear();
54 PB_DS_ASSERT_VALID(other)
65 ++other.m_size;
67 other.make_root_and_link(p_out);
71 PB_DS_ASSERT_VALID(other)
83 PB_DS_ASSERT_VALID(other)
89 join(PB_DS_CLASS_C_DEC& other)
92 PB_DS_ASSERT_VALID(other)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
bspec-2.s 6 OCTA other
10 OCTA other
  /cts/tools/dasm/src/java_cup/
action_part.java 57 public boolean equals(action_part other)
60 return other != null && super.equals(other) &&
61 other.code_string().equals(code_string());
67 public boolean equals(Object other)
69 if (!(other instanceof action_part))
72 return equals((action_part)other);
production_part.java 51 public boolean equals(production_part other)
53 if (other == null) return false;
57 return label().equals(other.label());
59 return other.label() == null;
65 public boolean equals(Object other)
67 if (!(other instanceof production_part))
70 return equals((production_part)other);
  /external/icu/icu4c/source/i18n/
currunit.cpp 34 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) :
35 MeasureUnit(other) {
36 u_strcpy(isoCode, other.isoCode);
39 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) {
40 if (this == &other) {
43 MeasureUnit::operator=(other);
44 u_strcpy(isoCode, other.isoCode);
  /external/libchrome/base/
file_descriptor_posix.h 24 // other end, the receiver must make sure to close() |fd| after it has finished
37 bool operator==(const FileDescriptor& other) const {
38 return (fd == other.fd && auto_close == other.auto_close);
41 bool operator!=(const FileDescriptor& other) const {
42 return !operator==(other);
46 bool operator<(const FileDescriptor& other) const {
47 return other.fd < fd;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rc_binomial_heap_/
constructors_destructor_fn_imps.hpp 58 rc_binomial_heap(const PB_DS_CLASS_C_DEC& other)
59 : base_type(other)
74 swap(PB_DS_CLASS_C_DEC& other)
77 PB_DS_ASSERT_VALID(other)
79 base_type::swap(other);
80 m_rc.swap(other.m_rc);
83 PB_DS_ASSERT_VALID(other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rc_binomial_heap_/
constructors_destructor_fn_imps.hpp 58 rc_binomial_heap(const PB_DS_CLASS_C_DEC& other)
59 : base_type(other)
74 swap(PB_DS_CLASS_C_DEC& other)
77 PB_DS_ASSERT_VALID(other)
79 base_type::swap(other);
80 m_rc.swap(other.m_rc);
83 PB_DS_ASSERT_VALID(other)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rc_binomial_heap_/
constructors_destructor_fn_imps.hpp 58 rc_binomial_heap(const PB_DS_CLASS_C_DEC& other)
59 : base_type(other)
74 swap(PB_DS_CLASS_C_DEC& other)
77 PB_DS_ASSERT_VALID(other)
79 base_type::swap(other);
80 m_rc.swap(other.m_rc);
83 PB_DS_ASSERT_VALID(other)
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rc_binomial_heap_/
constructors_destructor_fn_imps.hpp 58 rc_binomial_heap(const PB_DS_CLASS_C_DEC& other)
59 : base_type(other)
74 swap(PB_DS_CLASS_C_DEC& other)
77 PB_DS_ASSERT_VALID(other)
79 base_type::swap(other);
80 m_rc.swap(other.m_rc);
83 PB_DS_ASSERT_VALID(other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_iterator.hpp 75 point_iterator_(const point_iterator_& other)
76 : m_p_value(other.m_p_value)
97 operator==(const point_iterator_& other) const
98 { return m_p_value == other.m_p_value; }
102 operator==(const point_const_iterator_& other) const
103 { return m_p_value == other.m_p_value; }
107 operator!=(const point_iterator_& other) const
108 { return m_p_value != other.m_p_value; }
112 operator!=(const point_const_iterator_& other) const
113 { return m_p_value != other.m_p_value;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 36 public Vector2(Vector2 other) {
37 set(other);
40 public final void add(Vector2 other) {
41 x += other.x;
42 y += other.y;
50 public final void subtract(Vector2 other) {
51 x -= other.x;
52 y -= other.y;
60 public final void multiply(Vector2 other) {
61 x *= other.x
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FloatRect.h 35 inline FloatRect(const Rect& other)
36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
edns.py 13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
52 def _cmp(self, other):
54 Return < 0 if self < other, 0 if self == other, and > 0 if self > other.
58 def __eq__(self, other):
59 if not isinstance(other, Option):
61 if self.otype != other.otype:
63 return self._cmp(other) == 0
65 def __ne__(self, other)
    [all...]

Completed in 2729 milliseconds

1 2 34 5 6 7 8 91011>>