HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 26 - 50 of 11059) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libchrome/base/task_scheduler/
sequence_sort_key.h 22 bool operator<(const SequenceSortKey& other) const;
23 bool operator>(const SequenceSortKey& other) const { return other < *this; }
25 bool operator==(const SequenceSortKey& other) const {
26 return priority_ == other.priority_ &&
27 next_task_sequenced_time_ == other.next_task_sequenced_time_;
29 bool operator!=(const SequenceSortKey& other) const {
30 return !(other == *this);
  /external/proguard/src/proguard/evaluation/value/
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...]
ParticularDoubleValue.java 75 public DoubleValue generalize(DoubleValue other)
77 return other.generalize(this);
80 public DoubleValue add(DoubleValue other)
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public DoubleValue subtract(DoubleValue other)
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this)
    [all...]
ParticularFloatValue.java 75 public FloatValue generalize(FloatValue other)
77 return other.generalize(this);
80 public FloatValue add(FloatValue other)
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public FloatValue subtract(FloatValue other)
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(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...]
LongValue.java 68 * Returns the generalization of this LongValue and the given other
71 public LongValue generalize(LongValue other)
73 return other.generalize(this);
79 public LongValue add(LongValue other)
81 return other.add(this);
87 public LongValue subtract(LongValue other)
89 return other.subtractFrom(this);
95 public LongValue subtractFrom(LongValue other)
97 return other.subtract(this);
103 public LongValue multiply(LongValue other)
    [all...]
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...]
  /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);
  /system/libvintf/include/vintf/
Version.h 38 inline bool operator==(const Version &other) const {
39 return majorVer == other.majorVer && minorVer == other.minorVer;
41 inline bool operator!=(const Version &other) const {
42 return !((*this) == other);
44 inline bool operator<(const Version &other) const {
45 if (majorVer < other.majorVer)
47 if (majorVer > other.majorVer)
49 return minorVer < other.minorVer;
51 inline bool operator>(const Version &other) const
    [all...]
  /external/icu/icu4c/source/common/
dtintrv.cpp 34 DateInterval::DateInterval(const DateInterval& other)
35 : UObject(other) {
36 *this = other;
41 DateInterval::operator=(const DateInterval& other) {
42 if ( this != &other ) {
43 fromDate = other.fromDate;
44 toDate = other.toDate;
57 DateInterval::operator==(const DateInterval& other) const {
58 return ( fromDate == other.fromDate && toDate == other.toDate )
    [all...]
  /external/libmojo/mojo/edk/system/ports/
port_ref.cc 22 PortRef::PortRef(const PortRef& other)
23 : name_(other.name_), port_(other.port_) {
26 PortRef& PortRef::operator=(const PortRef& other) {
27 if (&other != this) {
28 name_ = other.name_;
29 port_ = other.port_;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/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/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...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/internal/
DisplayConfig.java 260 public DisplayConfig(DisplayConfig other) {
261 copyFrom(other);
264 public DisplayConfig(DisplayInfo other) {
265 layerStack = other.layerStack;
266 flags = other.flags;
267 type = other.type;
268 address = other.address;
269 name = other.name;
271 uniqueId = other.uniqueId;
273 appWidth = other.appWidth
    [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/perfetto/include/perfetto/ipc/
client_info.h 35 bool operator==(const ClientInfo& other) const {
36 return (client_id_ == other.client_id_ && uid_ == other.uid_);
38 bool operator!=(const ClientInfo& other) const { return !(*this == other); }
40 // For map<> and other sorted containers.
41 bool operator<(const ClientInfo& other) const {
42 PERFETTO_DCHECK(client_id_ != other.client_id_ || *this == other);
43 return client_id_ < other.client_id_
    [all...]
  /frameworks/av/camera/include/camera/camera2/
OutputConfiguration.h 70 bool operator == (const OutputConfiguration& other) const {
71 return ( mRotation == other.mRotation &&
72 mSurfaceSetID == other.mSurfaceSetID &&
73 mSurfaceType == other.mSurfaceType &&
74 mWidth == other.mWidth &&
75 mHeight == other.mHeight &&
76 mIsDeferred == other.mIsDeferred &&
77 mIsShared == other.mIsShared &&
78 gbpsEqual(other) &&
79 mPhysicalCameraId == other.mPhysicalCameraId )
    [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.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...]
  /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...]

Completed in 802 milliseconds

12 3 4 5 6 7 8 91011>>