HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 476 - 500 of 9229) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/evaluation/value/
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...]
  /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-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/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...]
  /frameworks/native/libs/vr/libpdx/private/pdx/
status.h 41 // Copy/move constructors. Move constructor leaves |other| object in empty
43 Status(const Status& other) = default; member in class:android::pdx::Status
44 Status(Status&& other)
45 : value_{std::move(other.value_)}, error_{other.error_} {
46 other.error_ = -1;
50 Status& operator=(const Status& other) = default; member in class:android::pdx::Status
51 Status& operator=(Status&& other) {
52 error_ = other.error_;
53 value_ = std::move(other.value_)
    [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...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/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...]
  /cts/tools/dasm/src/java_cup/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_weakrefset.py 118 def update(self, other):
121 for element in other:
124 def __ior__(self, other):
125 self.update(other)
128 def difference(self, other):
130 newset.difference_update(other)
134 def difference_update(self, other):
135 self.__isub__(other)
136 def __isub__(self, other):
139 if self is other:
    [all...]
  /frameworks/av/media/libmedia/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 41 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other)
42 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
44 m_xpr.block(0, 0, other.rows(), other.cols()) = other;
81 CommaInitializer& operator,(const DenseBase<OtherDerived>& other)
83 if (m_col==m_xpr.cols() && (other.cols()!=0 || other.rows()!=m_currentBlockRows))
87 m_currentBlockRows = other.rows()
    [all...]
  /external/eigen/test/
exceptions.cpp 30 ScalarWithExceptions(const ScalarWithExceptions& other) { init(); *v = *(other.v); }
41 ScalarWithExceptions operator+(const ScalarWithExceptions& other) const
46 return ScalarWithExceptions(*v+*other.v);
49 ScalarWithExceptions operator-(const ScalarWithExceptions& other) const
50 { return ScalarWithExceptions(*v-*other.v); }
52 ScalarWithExceptions operator*(const ScalarWithExceptions& other) const
53 { return ScalarWithExceptions((*v)*(*other.v)); }
55 ScalarWithExceptions& operator+=(const ScalarWithExceptions& other)
56 { *v+=*other.v; return *this;
    [all...]

Completed in 1454 milliseconds

<<11121314151617181920>>