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

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 44 join_prep(PB_DS_CLASS_C_DEC& other)
47 PB_DS_ASSERT_VALID(other)
48 if (other.m_size == 0)
53 value_swap(other);
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
69 value_swap(other);
71 m_size += other.m_size;
72 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
79 join_finish(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 44 join_prep(PB_DS_CLASS_C_DEC& other)
47 PB_DS_ASSERT_VALID(other)
48 if (other.m_size == 0)
53 value_swap(other);
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
69 value_swap(other);
71 m_size += other.m_size;
72 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
79 join_finish(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 44 join_prep(PB_DS_CLASS_C_DEC& other)
47 PB_DS_ASSERT_VALID(other)
48 if (other.m_size == 0)
53 value_swap(other);
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
69 value_swap(other);
71 m_size += other.m_size;
72 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
79 join_finish(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 44 join_prep(PB_DS_CLASS_C_DEC& other)
47 PB_DS_ASSERT_VALID(other)
48 if (other.m_size == 0)
53 value_swap(other);
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
69 value_swap(other);
71 m_size += other.m_size;
72 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);)
79 join_finish(PB_DS_CLASS_C_DEC& other)
    [all...]
  /system/libvintf/include/vintf/
Version.h 36 inline bool operator==(const Version &other) const {
37 return majorVer == other.majorVer && minorVer == other.minorVer;
39 inline bool operator!=(const Version &other) const {
40 return !((*this) == other);
42 inline bool operator<(const Version &other) const {
43 if (majorVer < other.majorVer)
45 if (majorVer > other.majorVer)
47 return minorVer < other.minorVer;
49 inline bool operator>(const Version &other) const
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Interval.java 13 * documentation and/or other materials provided with the distribution.
68 Interval other = (Interval)o; local
69 return this.a==other.a && this.b==other.b;
72 /** Does this start completely before other? Disjoint */
73 public boolean startsBeforeDisjoint(Interval other) {
74 return this.a<other.a && this.b<other.a;
77 /** Does this start at or before other? Nondisjoint */
78 public boolean startsBeforeNonDisjoint(Interval other) {
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
associated_group.cc 13 AssociatedGroup::AssociatedGroup(const AssociatedGroup& other)
14 : controller_(other.controller_) {}
18 AssociatedGroup& AssociatedGroup::operator=(const AssociatedGroup& other) {
19 if (this == &other)
22 controller_ = other.controller_;
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 133 * Returns the generalization of this ReferenceValue and the given other
136 public abstract ReferenceValue generalize(ReferenceValue other);
140 * Returns whether this ReferenceValue is equal to the given other
144 public abstract int equal(ReferenceValue other);
165 public final int notEqual(ReferenceValue other)
167 return -equal(other);
174 * Returns the generalization of this ReferenceValue and the given other
177 public ReferenceValue generalize(TypedReferenceValue other)
179 return generalize((ReferenceValue)other);
184 * Returns whether this ReferenceValue is equal to the given other
    [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...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresultsitem.cpp 11 bool ScanResultsItem::operator< (const QTreeWidgetItem &other) const
15 return text(sortCol).toInt() < other.text(sortCol).toInt();
17 return text(sortCol) < other.text(sortCol);
  /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_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { 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_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { 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_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { return m_p_value != other.m_p_value;
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/unordered_iterator/
point_const_iterator.hpp 80 point_const_iterator_(const point_const_iterator_& other)
81 : m_p_value(other.m_p_value)
86 point_const_iterator_(const point_iterator_& other)
87 : m_p_value(other.m_p_value)
108 operator==(const point_iterator_& other) const
109 { return m_p_value == other.m_p_value; }
113 operator==(const point_const_iterator_& other) const
114 { return m_p_value == other.m_p_value; }
118 operator!=(const point_iterator_& other) const
119 { return m_p_value != other.m_p_value;
    [all...]
  /libcore/ojluni/src/main/java/java/util/function/
DoublePredicate.java 55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default DoublePredicate and(DoublePredicate other) {
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicate will not be evaluated
    [all...]
IntPredicate.java 55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default IntPredicate and(IntPredicate other) {
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicate will not be evaluated
    [all...]
LongPredicate.java 55 * predicate, if this predicate is {@code false}, then the {@code other}
60 * {@code other} predicate will not be evaluated.
62 * @param other a predicate that will be logically-ANDed with this
65 * AND of this predicate and the {@code other} predicate
66 * @throws NullPointerException if other is null
68 default LongPredicate and(LongPredicate other) {
69 Objects.requireNonNull(other);
70 return (value) -> test(value) && other.test(value);
87 * predicate, if this predicate is {@code true}, then the {@code other}
92 * {@code other} predicate will not be evaluated
    [all...]
  /external/llvm/include/llvm/Support/
Watchdog.h 32 Watchdog(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
33 Watchdog &operator=(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
  /external/markdown/tests/misc/
headers.txt 15 Some other text
  /external/webrtc/webrtc/libjingle/xmllite/
qname.h 31 bool operator==(const QName& other) const;
32 bool operator!=(const QName& other) const;
49 int Compare(const StaticQName& other) const;
50 int Compare(const QName& other) const;
52 bool operator==(const StaticQName& other) const {
53 return Compare(other) == 0;
55 bool operator==(const QName& other) const {
56 return Compare(other) == 0;
58 bool operator!=(const StaticQName& other) const {
59 return Compare(other) != 0
    [all...]
  /frameworks/av/camera/ndk/impl/
ACaptureRequest.h 27 bool operator == (const ACameraOutputTarget& other) const {
28 return mWindow == other.mWindow;
30 bool operator != (const ACameraOutputTarget& other) const {
31 return mWindow != other.mWindow;
33 bool operator < (const ACameraOutputTarget& other) const {
34 return mWindow < other.mWindow;
36 bool operator > (const ACameraOutputTarget& other) const {
37 return mWindow > other.mWindow;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
cmp_fn_imps.hpp 46 operator==(const Other_HT_Map_Type& other) const
47 { return cmp_with_other(other); }
53 cmp_with_other(const Other_Map_Type& other) const
55 if (size() != other.size())
58 for (typename Other_Map_Type::const_iterator it = other.begin();
59 it != other.end(); ++it)
82 operator!=(const Other_HT_Map_Type& other) const
83 { return !operator==(other); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
split_join_fn_imps.hpp 44 join(PB_DS_CLASS_C_DEC& other)
47 PB_DS_ASSERT_VALID(other)
48 if (base_type::join_prep(other) == false)
51 PB_DS_ASSERT_VALID(other)
55 node_pointer p_target_r = other.leftmost(other.m_p_head);
57 other.splay(p_target_r);
59 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent);
71 base_type::join_finish(other);
74 PB_DS_ASSERT_VALID(other)
    [all...]

Completed in 521 milliseconds

1 23 4 5 6 7 8 91011>>