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

<<11121314151617181920>>

  /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/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/
MeshPart.java 33 * In other words: Regardless whether the mesh is indexed or not, when {@link #primitiveType} is not a strip, then {@link #size}
60 /** The location, relative to {@link #center}, of the corner of the axis aligned bounding box of the shape. Or, in other words:
90 /** Set this MeshPart to be a copy of the other MeshPart
91 * @param other The MeshPart from which to copy the values
93 public MeshPart set (final MeshPart other) {
94 this.id = other.id;
95 this.mesh = other.mesh;
96 this.offset = other.offset;
97 this.size = other.size;
98 this.primitiveType = other.primitiveType;
    [all...]
  /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;
  /external/webrtc/webrtc/modules/video_capture/
video_capture_defines.h 50 bool operator!=(const VideoCaptureCapability &other) const
52 if (width != other.width)
54 if (height != other.height)
56 if (maxFPS != other.maxFPS)
58 if (rawType != other.rawType)
60 if (codecType != other.codecType)
62 if (interlaced != other.interlaced)
66 bool operator==(const VideoCaptureCapability &other) const
68 return !operator!=(other);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresultsitem.h 18 bool operator< (const QTreeWidgetItem &other) const;
  /frameworks/base/core/java/android/security/net/config/
Domain.java 46 public boolean equals(Object other) {
47 if (other == this) {
50 if (!(other instanceof Domain)) {
53 Domain otherDomain = (Domain) other;
  /frameworks/rs/cpp/util/
StrongPointer.h 68 sp(T* other);
69 sp(const sp<T>& other);
70 template<typename U> sp(U* other);
71 template<typename U> sp(const sp<U>& other);
77 sp& operator = (T* other);
78 sp& operator = (const sp<T>& other);
80 template<typename U> sp& operator = (const sp<U>& other);
81 template<typename U> sp& operator = (U* other);
84 void force_set(T* other);
121 sp<T>::sp(T* other)
    [all...]
  /frameworks/rs/server/
StrongPointer.h 67 sp(T* other);
68 sp(const sp<T>& other);
69 template<typename U> sp(U* other);
70 template<typename U> sp(const sp<U>& other);
76 sp& operator = (T* other);
77 sp& operator = (const sp<T>& other);
79 template<typename U> sp& operator = (const sp<U>& other);
80 template<typename U> sp& operator = (U* other);
83 void force_set(T* other);
120 sp<T>::sp(T* 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/hash_fn/
linear_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
quadratic_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_policy/
sample_update_policy.hpp 57 swap(sample_update_policy& other);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
constructors_destructor_fn_imps.hpp 65 pairing_heap(const PB_DS_CLASS_C_DEC& other)
66 : base_type(other)
72 swap(PB_DS_CLASS_C_DEC& other)
75 base_type::swap(other);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
linear_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
quadratic_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_policy/
sample_update_policy.hpp 57 swap(sample_update_policy& other);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
constructors_destructor_fn_imps.hpp 65 pairing_heap(const PB_DS_CLASS_C_DEC& other)
66 : base_type(other)
72 swap(PB_DS_CLASS_C_DEC& other)
75 base_type::swap(other);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/hash_fn/
linear_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
quadratic_probe_fn_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_policy/
sample_update_policy.hpp 57 swap(sample_update_policy& other);

Completed in 263 milliseconds

<<11121314151617181920>>