HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 451 - 475 of 8492) sorted by null

<<11121314151617181920>>

  /external/fio/lib/
rbtree.c 139 struct rb_node *other; local
145 other = parent->rb_right;
146 if (rb_is_red(other))
148 rb_set_black(other);
151 other = parent->rb_right;
153 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
154 (!other->rb_right || rb_is_black(other->rb_right)))
156 rb_set_red(other);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
numbers.py 73 def __add__(self, other):
74 """self + other"""
78 def __radd__(self, other):
79 """other + self"""
92 def __sub__(self, other):
93 """self - other"""
94 return self + -other
96 def __rsub__(self, other):
97 """other - self"""
98 return -self + other
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
numbers.py 73 def __add__(self, other):
74 """self + other"""
78 def __radd__(self, other):
79 """other + self"""
92 def __sub__(self, other):
93 """self - other"""
94 return self + -other
96 def __rsub__(self, other):
97 """other - self"""
98 return -self + other
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 73 def __add__(self, other):
74 """self + other"""
78 def __radd__(self, other):
79 """other + self"""
92 def __sub__(self, other):
93 """self - other"""
94 return self + -other
96 def __rsub__(self, other):
97 """other - self"""
98 return -self + other
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 73 def __add__(self, other):
74 """self + other"""
78 def __radd__(self, other):
79 """other + self"""
92 def __sub__(self, other):
93 """self - other"""
94 return self + -other
96 def __rsub__(self, other):
97 """other - self"""
98 return -self + other
    [all...]
  /art/compiler/utils/arm/
managed_register_arm.cc 24 // Returns true if this managed-register overlaps the other managed-register.
25 bool ArmManagedRegister::Overlaps(const ArmManagedRegister& other) const {
26 if (IsNoRegister() || other.IsNoRegister()) return false;
27 if (Equals(other)) return true;
31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) ||
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
35 if (other.IsDRegister()) return Equals(other);
36 if (other.IsSRegister()) {
39 SRegister other_sreg = other.AsSRegister()
    [all...]
  /art/compiler/utils/
managed_register.h 50 ManagedRegister(const ManagedRegister& other) : id_(other.id_) { }
52 ManagedRegister& operator=(const ManagedRegister& other) {
53 id_ = other.id_;
65 bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
92 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset)
93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
95 explicit ManagedRegisterSpill(const ManagedRegister& other)
96 : ManagedRegister(other), size_(-1), spill_offset_(-1) {
    [all...]
  /art/runtime/base/
debug_stack.h 58 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
59 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
67 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
68 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
94 DebugStackReferenceImpl(const DebugStackReferenceImpl& other)
95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) {
97 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) {
98 CHECK(counter_ == other.counter_);
116 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other)
117 : ref_(other.ref_)
    [all...]
  /external/clang/test/CodeGenCXX/
2007-04-10-PackedUnion.cpp 31 L(const L& other);
38 L::L(const L& other)
40 fdata = other.fdata;
  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 112 SharedPtr (const SharedPtr<T>& other);
119 explicit SharedPtr (const SharedPtr<Y>& other);
122 explicit SharedPtr (const WeakPtr<Y>& other);
127 SharedPtr& operator= (const SharedPtr<Y>& other);
128 SharedPtr& operator= (const SharedPtr<T>& other);
131 SharedPtr& operator= (const WeakPtr<Y>& other);
139 void swap (SharedPtr<T>& other);
148 void acquireFromWeak (const WeakPtr<T>& other);
177 WeakPtr (const WeakPtr<T>& other);
179 explicit WeakPtr (const SharedPtr<T>& other);
    [all...]
  /external/guice/core/src/com/google/inject/matcher/
AbstractMatcher.java 28 public Matcher<T> and(final Matcher<? super T> other) {
29 return new AndMatcher<T>(this, other);
32 public Matcher<T> or(Matcher<? super T> other) {
33 return new OrMatcher<T>(this, other);
48 @Override public boolean equals(Object other) {
49 return other instanceof AndMatcher
50 && ((AndMatcher) other).a.equals(a)
51 && ((AndMatcher) other).b.equals(b);
77 @Override public boolean equals(Object other) {
78 return other instanceof OrMatche
    [all...]
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJScalingFactor.java 11 * and/or other materials provided with the distribution.
74 * <code>other</code> have the same numerator and denominator.
77 * <code>other</code> have the same numerator and denominator.
79 public boolean equals(TJScalingFactor other) {
80 return (this.num == other.num && this.denom == other.denom);
  /frameworks/base/core/java/android/accounts/
AccountAndUser.java 36 final AccountAndUser other = (AccountAndUser) o;
37 return this.account.equals(other.account)
38 && this.userId == other.userId;
  /frameworks/base/libs/hwui/utils/
Macros.h 27 bool operator==(const Type& other) const; \
29 bool operator!=(const Type& other) const { return !(*this == other); } \
  /art/compiler/utils/mips64/
managed_register_mips64.cc 24 bool Mips64ManagedRegister::Overlaps(const Mips64ManagedRegister& other) const {
25 if (IsNoRegister() || other.IsNoRegister()) return false;
27 CHECK(other.IsValidManagedRegister());
28 if (Equals(other)) return true;
  /art/test/075-verification-error/src2/other/
Mutant.java 17 package other; package
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-1.h 8 int *other = ptr; // shouldn't warn local
  /external/eigen/Eigen/src/Core/
NoAlias.h 37 /** Behaves like MatrixBase::lazyAssign(other)
40 EIGEN_STRONG_INLINE ExpressionType& operator=(const StorageBase<OtherDerived>& other)
41 { return internal::assign_selector<ExpressionType,OtherDerived,false>::run(m_expression,other.derived()); }
45 EIGEN_STRONG_INLINE ExpressionType& operator+=(const StorageBase<OtherDerived>& other)
51 internal::assign_selector<SelfAdder,_OtherDerivedNested,false>::run(tmp,OtherDerivedNested(other.derived()));
57 EIGEN_STRONG_INLINE ExpressionType& operator-=(const StorageBase<OtherDerived>& other)
63 internal::assign_selector<SelfAdder,_OtherDerivedNested,false>::run(tmp,OtherDerivedNested(other.derived()));
69 EIGEN_STRONG_INLINE ExpressionType& operator+=(const ProductBase<ProductDerived, Lhs,Rhs>& other)
70 { other.derived().addTo(m_expression); return m_expression; }
73 EIGEN_STRONG_INLINE ExpressionType& operator-=(const ProductBase<ProductDerived, Lhs,Rhs>& other)
    [all...]
  /external/eigen/Eigen/src/plugins/
MatrixCwiseBinaryOps.h 13 /** \returns an expression of the Schur product (coefficient wise product) of *this and \a other
22 cwiseProduct(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
24 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(Derived,OtherDerived)(derived(), other.derived());
27 /** \returns an expression of the coefficient-wise == operator of *this and \a other
41 cwiseEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
43 return CwiseBinaryOp<std::equal_to<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
46 /** \returns an expression of the coefficient-wise != operator of *this and \a other
60 cwiseNotEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
62 return CwiseBinaryOp<std::not_equal_to<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
65 /** \returns an expression of the coefficient-wise min of *this and \a other
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
BaseComparable.java 40 @Override public boolean equals(Object other) {
41 if (other == null) {
43 } else if (other instanceof BaseComparable) {
44 return s.equals(((BaseComparable) other).s);
  /external/icu/icu4c/source/i18n/
curramt.cpp 30 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) :
31 Measure(other) {
34 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) {
35 Measure::operator=(other);
  /external/proguard/src/proguard/
MemberSpecification.java 96 MemberSpecification other = (MemberSpecification)object; local
98 (this.requiredSetAccessFlags == other.requiredSetAccessFlags ) &&
99 (this.requiredUnsetAccessFlags == other.requiredUnsetAccessFlags ) &&
100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) &&
101 (this.name == null ? other.name == null : this.name.equals(other.name) ) &&
102 (this.descriptor == null ? other.descriptor == null : this.descriptor.equals(other.descriptor) );
  /external/skia/src/utils/
SkMD5.h 39 bool operator ==(Digest const& other) const {
40 return 0 == memcmp(data, other.data, sizeof(data));
42 bool operator !=(Digest const& other) const {
43 return 0 != memcmp(data, other.data, sizeof(data));
  /external/v8/src/
zone-allocator.h 26 typedef zone_allocator<O> other; typedef in struct:v8::internal::zone_allocator::rebind
30 explicit zone_allocator(const zone_allocator& other) throw()
31 : zone_(other.zone_) {}
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw()
33 : zone_(other.zone_) {}
53 bool operator==(zone_allocator const& other) const {
54 return zone_ == other.zone_;
56 bool operator!=(zone_allocator const& other) const {
57 return zone_ != other.zone_;
  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 49 bool BareEquals(const Jid& other) const;
51 bool operator==(const Jid& other) const;
52 bool operator!=(const Jid& other) const { return !operator==(other); }
54 bool operator<(const Jid& other) const { return Compare(other) < 0; };
55 bool operator>(const Jid& other) const { return Compare(other) > 0; };
57 int Compare(const Jid & other) const;

Completed in 611 milliseconds

<<11121314151617181920>>