HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 401 - 425 of 9808) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/left_child_next_sibling_heap_/
point_const_iterator.hpp 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer;
79 value_type>::other::pointer
85 value_type>::other::const_pointer
91 value_type>::other::reference
97 value_type>::other::const_reference
111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd)
132 operator==(const PB_DS_CLASS_C_DEC& other) const
133 { return m_p_nd == other.m_p_nd; }
137 operator!=(const PB_DS_CLASS_C_DEC& other) cons
    [all...]
constructors_destructor_fn_imps.hpp 70 left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other)
71 : Cmp_Fn(other), m_p_root(0), m_size(0)
73 m_size = other.m_size;
74 PB_DS_ASSERT_VALID(other)
75 m_p_root = recursive_copy_node(other.m_p_root);
76 m_size = other.m_size;
83 swap(PB_DS_CLASS_C_DEC& other)
86 PB_DS_ASSERT_VALID(other)
87 value_swap(other);
88 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binary_heap_/
point_const_iterator.hpp 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer;
71 typedef typename _Alloc::template rebind<value_type>::other::pointer
76 typename _Alloc::template rebind<value_type>::other::const_pointer
81 typename _Alloc::template rebind<value_type>::other::reference
86 typename _Alloc::template rebind<value_type>::other::const_reference
99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other)
100 : m_p_e(other.m_p_e)
121 operator==(const binary_heap_point_const_iterator_& other) const
122 { return m_p_e == other.m_p_e; }
126 operator!=(const binary_heap_point_const_iterator_& other) cons
    [all...]
constructors_destructor_fn_imps.hpp 84 binary_heap(const PB_DS_CLASS_C_DEC& other)
85 : entry_cmp(other), resize_policy(other), m_size(0),
86 m_actual_size(other.m_actual_size),
89 PB_DS_ASSERT_VALID(other)
90 _GLIBCXX_DEBUG_ASSERT(m_a_entries != other.m_a_entries);
94 copy_from_range(other.begin(), other.end());
110 swap(PB_DS_CLASS_C_DEC& other)
113 PB_DS_ASSERT_VALID(other)
    [all...]
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
60 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd);
81 for (size_type i = 0; i < other.m_size; ++i)
82 erase_at(other.m_a_entries, i, s_no_throw_copies_ind);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
92 other.m_actual_size = other_actual_size;
95 other.m_size = ersd;
98 other.m_a_entries = a_other_entries;
101 other.make_heap()
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
point_const_iterator.hpp 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer;
79 value_type>::other::pointer
85 value_type>::other::const_pointer
91 value_type>::other::reference
97 value_type>::other::const_reference
111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd)
132 operator==(const PB_DS_CLASS_C_DEC& other) const
133 { return m_p_nd == other.m_p_nd; }
137 operator!=(const PB_DS_CLASS_C_DEC& other) cons
    [all...]
constructors_destructor_fn_imps.hpp 70 left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other)
71 : Cmp_Fn(other), m_p_root(0), m_size(0)
73 m_size = other.m_size;
74 PB_DS_ASSERT_VALID(other)
75 m_p_root = recursive_copy_node(other.m_p_root);
76 m_size = other.m_size;
83 swap(PB_DS_CLASS_C_DEC& other)
86 PB_DS_ASSERT_VALID(other)
87 value_swap(other);
88 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
    [all...]
  /cts/tools/dasm/src/java_cup/
symbol_part.java 61 public boolean equals(symbol_part other)
63 return other != null && super.equals(other) &&
64 the_symbol().equals(other.the_symbol());
70 public boolean equals(Object other)
72 if (!(other instanceof symbol_part))
75 return equals((symbol_part)other);
lalr_item_set.java 33 * @param other indicates set we should copy from.
35 public lalr_item_set(lalr_item_set other)
38 not_null(other);
39 _all = (Hashtable)other._all.clone();
84 * @param other the other set in question.
86 public boolean is_subset_of(lalr_item_set other) throws internal_error
88 not_null(other);
90 /* walk down our set and make sure every element is in the other */
92 if (!other.contains((lalr_item)e.nextElement())
119 lalr_item other; local
    [all...]
  /external/icu/icu4c/source/i18n/
tmunit.cpp 100 TimeUnit::TimeUnit(const TimeUnit& other)
101 : MeasureUnit(other), fTimeUnitField(other.fTimeUnitField) {
110 TimeUnit::operator=(const TimeUnit& other) {
111 if (this == &other) {
114 MeasureUnit::operator=(other);
115 fTimeUnitField = other.fTimeUnitField;
  /external/libchrome/base/profiler/
tracked_time.h 30 Duration& operator+=(const Duration& other);
31 Duration operator+(const Duration& other) const;
33 bool operator==(const Duration& other) const;
34 bool operator!=(const Duration& other) const;
35 bool operator>(const Duration& other) const;
55 Duration operator-(const TrackedTime& other) const;
56 TrackedTime operator+(const Duration& other) const;
  /external/proguard/src/proguard/evaluation/value/
IdentifiedArrayReferenceValue.java 55 public ReferenceValue generalize(ReferenceValue other)
57 return other.generalize(this);
61 public int equal(ReferenceValue other)
63 return other.equal(this);
70 // public ReferenceValue generalize(IdentifiedReferenceValue other)
72 // return generalize((TypedReferenceValue)other);
76 // public int equal(IdentifiedReferenceValue other)
78 // return equal((TypedReferenceValue)other);
85 // public ReferenceValue generalize(ArrayReferenceValue other)
87 // return generalize((TypedReferenceValue)other);
    [all...]
IdentifiedReferenceValue.java 55 public ReferenceValue generalize(ReferenceValue other)
57 return other.generalize(this);
61 public int equal(ReferenceValue other)
63 return other.equal(this);
70 // public ReferenceValue generalize(IdentifiedReferenceValue other)
72 // return generalize((TypedReferenceValue)other);
76 public int equal(IdentifiedReferenceValue other)
78 return this.equals(other) ? ALWAYS :
79 this.equal((TypedReferenceValue)other);
86 // public ReferenceValue generalize(ArrayReferenceValue other)
    [all...]
  /frameworks/base/libs/hwui/
FloatColor.h 42 bool operator==(const FloatColor& other) const {
43 return MathUtils::areEqual(r, other.r)
44 && MathUtils::areEqual(g, other.g)
45 && MathUtils::areEqual(b, other.b)
46 && MathUtils::areEqual(a, other.a);
49 bool operator!=(const FloatColor& other) const {
50 return !(*this == other);
  /frameworks/base/core/java/android/os/
BatteryProperties.java 39 public void set(BatteryProperties other) {
40 chargerAcOnline = other.chargerAcOnline;
41 chargerUsbOnline = other.chargerUsbOnline;
42 chargerWirelessOnline = other.chargerWirelessOnline;
43 maxChargingCurrent = other.maxChargingCurrent;
44 maxChargingVoltage = other.maxChargingVoltage;
45 batteryStatus = other.batteryStatus;
46 batteryHealth = other.batteryHealth;
47 batteryPresent = other.batteryPresent;
48 batteryLevel = other.batteryLevel
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/left_child_next_sibling_heap_/
constructors_destructor_fn_imps.hpp 70 left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other)
71 : Cmp_Fn(other), m_p_root(0), m_size(0)
73 m_size = other.m_size;
74 PB_DS_ASSERT_VALID(other)
75 m_p_root = recursive_copy_node(other.m_p_root);
76 m_size = other.m_size;
83 swap(PB_DS_CLASS_C_DEC& other)
86 PB_DS_ASSERT_VALID(other)
87 value_swap(other);
88 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )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/left_child_next_sibling_heap_/
constructors_destructor_fn_imps.hpp 70 left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other)
71 : Cmp_Fn(other), m_p_root(0), m_size(0)
73 m_size = other.m_size;
74 PB_DS_ASSERT_VALID(other)
75 m_p_root = recursive_copy_node(other.m_p_root);
76 m_size = other.m_size;
83 swap(PB_DS_CLASS_C_DEC& other)
86 PB_DS_ASSERT_VALID(other)
87 value_swap(other);
88 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )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/binary_heap_/
constructors_destructor_fn_imps.hpp 84 binary_heap(const PB_DS_CLASS_C_DEC& other)
85 : entry_cmp(other), resize_policy(other), m_size(0),
86 m_actual_size(other.m_actual_size),
89 PB_DS_ASSERT_VALID(other)
90 _GLIBCXX_DEBUG_ASSERT(m_a_entries != other.m_a_entries);
94 copy_from_range(other.begin(), other.end());
110 swap(PB_DS_CLASS_C_DEC& other)
113 PB_DS_ASSERT_VALID(other)
    [all...]
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
60 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd);
81 for (size_type i = 0; i < other.m_size; ++i)
82 erase_at(other.m_a_entries, i, s_no_throw_copies_ind);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
92 other.m_actual_size = other_actual_size;
95 other.m_size = ersd;
98 other.m_a_entries = a_other_entries;
101 other.make_heap()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/
constructors_destructor_fn_imps.hpp 84 binary_heap(const PB_DS_CLASS_C_DEC& other)
85 : entry_cmp(other), resize_policy(other), m_size(0),
86 m_actual_size(other.m_actual_size),
89 PB_DS_ASSERT_VALID(other)
90 _GLIBCXX_DEBUG_ASSERT(m_a_entries != other.m_a_entries);
94 copy_from_range(other.begin(), other.end());
110 swap(PB_DS_CLASS_C_DEC& other)
113 PB_DS_ASSERT_VALID(other)
    [all...]
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
60 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd);
81 for (size_type i = 0; i < other.m_size; ++i)
82 erase_at(other.m_a_entries, i, s_no_throw_copies_ind);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
92 other.m_actual_size = other_actual_size;
95 other.m_size = ersd;
98 other.m_a_entries = a_other_entries;
101 other.make_heap()
    [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/binary_heap_/
constructors_destructor_fn_imps.hpp 84 binary_heap(const PB_DS_CLASS_C_DEC& other)
85 : entry_cmp(other), resize_policy(other), m_size(0),
86 m_actual_size(other.m_actual_size),
89 PB_DS_ASSERT_VALID(other)
90 _GLIBCXX_DEBUG_ASSERT(m_a_entries != other.m_a_entries);
94 copy_from_range(other.begin(), other.end());
110 swap(PB_DS_CLASS_C_DEC& other)
113 PB_DS_ASSERT_VALID(other)
    [all...]
split_join_fn_imps.hpp 45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
60 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd);
81 for (size_type i = 0; i < other.m_size; ++i)
82 erase_at(other.m_a_entries, i, s_no_throw_copies_ind);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
92 other.m_actual_size = other_actual_size;
95 other.m_size = ersd;
98 other.m_a_entries = a_other_entries;
101 other.make_heap()
    [all...]
  /frameworks/av/include/media/
Modulo.h 65 // or equal to the rank of the type of the other operand, the operand with signed
81 // Other libraries do exist for safe integer operations which can detect the
102 Modulo<T> operator +=(const Modulo<S> &other) {
104 mValue += other.unsignedValue();
110 Modulo<T> operator -=(const Modulo<S> &other) {
112 mValue -= other.unsignedValue();
120 const Modulo<T> operator +(const Modulo<S> &other) const {
122 return Modulo<T>(mValue + other.unsignedValue());
127 const Modulo<T> operator -(const Modulo<S> &other) const {
129 return Modulo<T>(mValue - other.unsignedValue())
    [all...]
  /external/eigen/Eigen/src/Core/
CommaInitializer.h 40 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other)
41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
43 m_xpr.block(0, 0, other.rows(), other.cols()) = other;
77 CommaInitializer& operator,(const DenseBase<OtherDerived>& other)
79 if(other.cols()==0 || other.rows()==0)
85 m_currentBlockRows = other.rows()
    [all...]

Completed in 630 milliseconds

<<11121314151617181920>>