Searched defs:other (Results 151 - 175 of 929) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchHandlerList.java136 public int compareTo(CatchHandlerList other) { argument
137 if (this == other) {
143 int otherSize = other.size();
148 Entry otherEntry = other.get(i);
201 public boolean equals(Object other) { argument
202 if (other instanceof Entry) {
203 return (compareTo((Entry) other) == 0);
210 public int compareTo(Entry other) { argument
211 if (handler < other.handler) {
213 } else if (handler > other
[all...]
H A DCatchTable.java64 public int compareTo(CatchTable other) { argument
65 if (this == other) {
71 int otherSize = other.size();
76 Entry otherEntry = other.get(i);
140 public boolean equals(Object other) { argument
141 if (other instanceof Entry) {
142 return (compareTo((Entry) other) == 0);
149 public int compareTo(Entry other) { argument
150 if (start < other.start) {
152 } else if (start > other
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetItem.java96 protected int compareTo0(OffsettedItem other) { argument
97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
H A DEncodedArrayItem.java73 protected int compareTo0(OffsettedItem other) { argument
74 EncodedArrayItem otherArray = (EncodedArrayItem) other;
H A DEncodedField.java63 public boolean equals(Object other) { argument
64 if (! (other instanceof EncodedField)) {
68 return compareTo((EncodedField) other) == 0;
79 public int compareTo(EncodedField other) { argument
80 return field.compareTo(other.field);
H A DEncodedMethod.java73 public boolean equals(Object other) { argument
74 if (! (other instanceof EncodedMethod)) {
78 return compareTo((EncodedMethod) other) == 0;
89 public int compareTo(EncodedMethod other) { argument
90 return method.compareTo(other.method);
H A DOffsettedItem.java91 public final boolean equals(Object other) { argument
92 if (this == other) {
96 OffsettedItem otherItem = (OffsettedItem) other;
114 public final int compareTo(OffsettedItem other) { argument
115 if (this == other) {
120 ItemType otherType = other.itemType();
126 return compareTo0(other);
281 * @param other {@code non-null;} instance to compare to
283 * on the sort order of this instance and the other
285 protected int compareTo0(OffsettedItem other) { argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotation.java67 public boolean equals(Object other) { argument
68 if (! (other instanceof Annotation)) {
72 Annotation otherAnnotation = (Annotation) other;
91 public int compareTo(Annotation other) { argument
92 int result = type.compareTo(other.type);
98 result = visibility.compareTo(other.visibility);
105 Iterator<NameValuePair> otherIter = other.elements.values().iterator();
H A DAnnotations.java48 * @param a2 {@code non-null;} the other instance
98 public boolean equals(Object other) { argument
99 if (! (other instanceof Annotations)) {
103 Annotations otherAnnotations = (Annotations) other;
109 public int compareTo(Annotations other) { argument
111 Iterator<Annotation> otherIter = other.annotations.values().iterator();
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstArray.java23 * Constant type to represent a fixed array of other constants.
46 public boolean equals(Object other) { argument
47 if (! (other instanceof CstArray)) {
51 return list.equals(((CstArray) other).list);
62 protected int compareTo0(Constant other) { argument
63 return list.compareTo(((CstArray) other).list);
114 public int compareTo(List other) { argument
116 int otherSize = other.size();
121 Constant otherItem = (Constant) other.get0(i);
H A DCstNat.java61 public boolean equals(Object other) { argument
62 if (!(other instanceof CstNat)) {
66 CstNat otherNat = (CstNat) other;
79 protected int compareTo0(Constant other) { argument
80 CstNat otherNat = (CstNat) other;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFixedSizeList.java47 public boolean equals(Object other) { argument
48 if (this == other) {
53 if ((other == null) || (getClass() != other.getClass())) {
58 FixedSizeList list = (FixedSizeList) other;
/external/eigen/Eigen/src/Core/
H A DArray.h72 EIGEN_STRONG_INLINE Array& operator=(const EigenBase<OtherDerived> &other) argument
74 return Base::operator=(other);
77 /** Copies the value of the expression \a other into \c *this with automatic resizing.
79 * *this might be resized to match the dimensions of \a other. If *this was a null matrix (not already initialized),
87 EIGEN_STRONG_INLINE Array& operator=(const ArrayBase<OtherDerived>& other) argument
89 return Base::_set(other);
95 EIGEN_STRONG_INLINE Array& operator=(const Array& other) argument
97 return Base::_set(other);
183 /** Constructor copying the value of the expression \a other */
185 EIGEN_STRONG_INLINE Array(const ArrayBase<OtherDerived>& other) argument
192 Array(const Array& other) argument
200 Array(const ReturnByValue<OtherDerived>& other) argument
209 Array(const EigenBase<OtherDerived> &other) argument
221 swap(ArrayBase<OtherDerived> const & other) argument
[all...]
H A DArrayBase.h121 Derived& operator=(const ArrayBase& other) argument
123 return internal::assign_selector<Derived,Derived>::run(derived(), other.derived());
132 Derived& operator+=(const ArrayBase<OtherDerived>& other);
134 Derived& operator-=(const ArrayBase<OtherDerived>& other);
137 Derived& operator*=(const ArrayBase<OtherDerived>& other);
140 Derived& operator/=(const ArrayBase<OtherDerived>& other);
170 /** replaces \c *this by \c *this - \a other.
177 ArrayBase<Derived>::operator-=(const ArrayBase<OtherDerived> &other) argument
180 tmp = other.derived();
184 /** replaces \c *this by \c *this + \a other
191 operator +=(const ArrayBase<OtherDerived>& other) argument
205 operator *=(const ArrayBase<OtherDerived>& other) argument
219 operator /=(const ArrayBase<OtherDerived>& other) argument
[all...]
H A DDenseStorage.h129 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); } argument
175 inline void swap(DenseStorage& other) argument
176 { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); std::swap(m_cols,other.m_cols); }
195 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); } argument
214 inline void swap(DenseStorage& other) { st argument
237 swap(DenseStorage& other) argument
276 swap(DenseStorage& other) argument
312 swap(DenseStorage& other) argument
[all...]
H A DDot.h50 /** \returns the dot product of *this with other.
63 MatrixBase<Derived>::dot(const MatrixBase<OtherDerived>& other) const
71 eigen_assert(size() == other.size());
73 return internal::dot_nocheck<Derived,OtherDerived>::run(*this, other);
77 /** \returns the dot product of *this with other, with the Eigen2 convention that the dot product is linear in the first variable
89 MatrixBase<Derived>::eigen2_dot(const MatrixBase<OtherDerived>& other) const
97 eigen_assert(size() == other.size());
99 return internal::dot_nocheck<OtherDerived,Derived>::run(other,*this);
159 //---------- implementation of other norms ----------
219 /** \returns true if *this is approximately orthogonal to \a other,
227 isOrthogonal(const MatrixBase<OtherDerived>& other, const RealScalar& prec) const argument
[all...]
H A DEigenBase.h18 * In other words, an EigenBase object is an object that can be copied into a MatrixBase.
97 /** \brief Copies the generic expression \a other into *this.
107 Derived& DenseBase<Derived>::operator=(const EigenBase<OtherDerived> &other) argument
109 other.derived().evalTo(derived());
115 Derived& DenseBase<Derived>::operator+=(const EigenBase<OtherDerived> &other) argument
117 other.derived().addTo(derived());
123 Derived& DenseBase<Derived>::operator-=(const EigenBase<OtherDerived> &other) argument
125 other.derived().subTo(derived());
H A DSwap.h73 void copyCoeff(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
75 OtherDerived& _other = other.const_cast_derived();
84 void copyCoeff(Index index, const DenseBase<OtherDerived>& other) argument
86 OtherDerived& _other = other.const_cast_derived();
94 void copyPacket(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
96 OtherDerived& _other = other.const_cast_derived();
107 void copyPacket(Index index, const DenseBase<OtherDerived>& other) argument
109 OtherDerived& _other = other.const_cast_derived();
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointProduct.h53 static void run(MatrixType& mat, const OtherType& other, const typename MatrixType::Scalar& alpha) argument
60 typename internal::add_const_on_value_type<ActualOtherType>::type actualOther = OtherBlasTraits::extract(other.derived());
62 Scalar actualAlpha = alpha * OtherBlasTraits::extractScalarFactor(other.derived());
70 ei_declare_aligned_stack_constructed_variable(Scalar, actualOtherPtr, other.size(),
79 ::run(other.size(), mat.data(), mat.outerStride(), actualOtherPtr, actualOtherPtr, actualAlpha);
86 static void run(MatrixType& mat, const OtherType& other, const typename MatrixType::Scalar& alpha) argument
93 typename internal::add_const_on_value_type<ActualOtherType>::type actualOther = OtherBlasTraits::extract(other.derived());
95 Scalar actualAlpha = alpha * OtherBlasTraits::extractScalarFactor(other.derived());
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h102 inline explicit ParametrizedLine(const ParametrizedLine<OtherScalarType,AmbientDimAtCompileTime>& other) argument
104 m_origin = other.origin().template cast<Scalar>();
105 m_direction = other.direction().template cast<Scalar>();
108 /** \returns \c true if \c *this is approximately equal to \a other, within the precision
112 bool isApprox(const ParametrizedLine& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const argument
113 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
H A DRotation2D.h69 inline Rotation2D operator*(const Rotation2D& other) const
70 { return m_angle + other.m_angle; }
73 inline Rotation2D& operator*=(const Rotation2D& other) argument
74 { return m_angle += other.m_angle; return *this; }
84 /** \returns the spherical interpolation between \c *this and \a other using
87 inline Rotation2D slerp(Scalar t, const Rotation2D& other) const
88 { return m_angle * (1-t) + other.angle() * t; }
101 inline explicit Rotation2D(const Rotation2D<OtherScalarType>& other) argument
103 m_angle = Scalar(other.angle());
106 /** \returns \c true if \c *this is approximately equal to \a other, withi
110 isApprox(const Rotation2D& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const argument
[all...]
H A DScaling.h78 inline Scaling operator* (const Scaling& other) const
79 { return Scaling(coeffs().cwise() * other.coeffs()); }
89 inline LinearMatrixType operator* (const LinearMatrixType& other) const
90 { return coeffs().asDiagonal() * other; }
94 friend inline LinearMatrixType operator* (const LinearMatrixType& other, const Scaling& s) argument
95 { return other * s.coeffs().asDiagonal(); }
102 inline VectorType operator* (const VectorType& other) const
103 { return coeffs().asDiagonal() * other; }
109 inline Scaling& operator=(const Scaling& other) argument
111 m_coeffs = other
126 Scaling(const Scaling<OtherScalarType,Dim>& other) argument
133 isApprox(const Scaling& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const argument
[all...]
H A DTranslation.h76 inline Translation operator* (const Translation& other) const
77 { return Translation(m_coeffs + other.m_coeffs); }
80 inline TransformType operator* (const ScalingType& other) const;
106 inline VectorType operator* (const VectorType& other) const
107 { return m_coeffs + other; }
112 Translation& operator=(const Translation& other) argument
114 m_coeffs = other.m_coeffs;
129 inline explicit Translation(const Translation<OtherScalarType,Dim>& other) argument
130 { m_coeffs = other.vector().template cast<Scalar>(); }
132 /** \returns \c true if \c *this is approximately equal to \a other, withi
136 isApprox(const Translation& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const argument
[all...]
/external/eigen/Eigen/src/Geometry/
H A DScaling.h54 inline UniformScaling operator* (const UniformScaling& other) const
55 { return UniformScaling(m_factor * other.factor()); }
73 inline typename internal::plain_matrix_type<Derived>::type operator* (const MatrixBase<Derived>& other) const
74 { return other * m_factor; }
95 inline explicit UniformScaling(const UniformScaling<OtherScalarType>& other) argument
96 { m_factor = Scalar(other.factor()); }
98 /** \returns \c true if \c *this is approximately equal to \a other, within the precision
102 bool isApprox(const UniformScaling& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const argument
103 { return internal::isApprox(m_factor, other.factor(), prec); }
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h51 JacobiRotation operator*(const JacobiRotation& other) argument
54 return JacobiRotation(m_c * other.m_c - conj(m_s) * other.m_s,
55 conj(m_c * conj(other.m_s) + conj(m_s) * conj(other.m_c)));

Completed in 316 milliseconds

1234567891011>>