Searched refs:other (Results 76 - 100 of 1751) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/Core/
H A DNoAlias.h37 /** Behaves like MatrixBase::lazyAssign(other)
40 EIGEN_STRONG_INLINE ExpressionType& operator=(const StorageBase<OtherDerived>& other) argument
41 { return internal::assign_selector<ExpressionType,OtherDerived,false>::run(m_expression,other.derived()); }
45 EIGEN_STRONG_INLINE ExpressionType& operator+=(const StorageBase<OtherDerived>& other) argument
51 internal::assign_selector<SelfAdder,_OtherDerivedNested,false>::run(tmp,OtherDerivedNested(other.derived()));
57 EIGEN_STRONG_INLINE ExpressionType& operator-=(const StorageBase<OtherDerived>& other) argument
63 internal::assign_selector<SelfAdder,_OtherDerivedNested,false>::run(tmp,OtherDerivedNested(other.derived()));
69 EIGEN_STRONG_INLINE ExpressionType& operator+=(const ProductBase<ProductDerived, Lhs,Rhs>& other) argument
70 { other.derived().addTo(m_expression); return m_expression; }
73 EIGEN_STRONG_INLINE ExpressionType& operator-=(const ProductBase<ProductDerived, Lhs,Rhs>& other) argument
77 operator +=(const CoeffBasedProduct<Lhs,Rhs,NestingFlags>& other) argument
81 operator -=(const CoeffBasedProduct<Lhs,Rhs,NestingFlags>& other) argument
[all...]
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...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DBaseComparable.java37 @Override public boolean equals(Object other) { argument
38 if (other == null) {
40 } else if (other instanceof BaseComparable) {
41 return s.equals(((BaseComparable) other).s);
/external/icu4c/i18n/
H A Dcurramt.cpp30 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) : argument
31 Measure(other) {
34 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) { argument
35 Measure::operator=(other);
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptprogram.h34 QScriptProgram(const QScriptProgram& other);
37 QScriptProgram& operator=(const QScriptProgram& other);
45 bool operator==(const QScriptProgram& other) const;
46 bool operator!=(const QScriptProgram& other) const;
H A Dqscriptstring.h33 QScriptString(const QScriptString& other);
36 QScriptString& operator=(const QScriptString& other);
40 bool operator==(const QScriptString& other) const;
41 bool operator!=(const QScriptString& other) const;
/external/webkit/Source/WebCore/bindings/v8/
H A DRetainedDOMInfo.cpp12 * in the documentation and/or other materials provided with the
53 bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other) argument
55 ASSERT(other);
56 return other == this || static_cast<WebCore::RetainedObjectInfo*>(other)->GetEquivalenceClass() == this->GetEquivalenceClass();
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpluginfactory.cpp95 Returns true if this mimetype is the same as the \a other mime type.
97 bool QWebPluginFactory::MimeType::operator==(const MimeType& other) const
99 return name == other.name
100 && description == other.description
101 && fileExtensions == other.fileExtensions;
105 \fn bool QWebPluginFactory::MimeType::operator!=(const MimeType& other) const
107 Returns true if this mimetype is different from the \a other mime type.
/external/chromium/net/tools/flip_server/
H A Dsimple_buffer.h64 void Swap(SimpleBuffer* other) { argument
66 storage_ = other->storage_;
67 other->storage_ = tmp;
70 write_idx_ = other->write_idx_;
71 other->write_idx_ = tmp_int;
74 read_idx_ = other->read_idx_;
75 other->read_idx_ = tmp_int;
78 storage_size_ = other->storage_size_;
79 other->storage_size_ = tmp_int;
/external/proguard/src/proguard/
H A DMemberSpecification.java96 MemberSpecification other = (MemberSpecification)object;
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/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffVector.h72 inline AutoDiffVector(const AutoDiffVector<OtherValueType, OtherJacobianType>& other) argument
73 : m_values(other.values()), m_jacobian(other.jacobian())
76 inline AutoDiffVector(const AutoDiffVector& other) argument
77 : m_values(other.values()), m_jacobian(other.jacobian())
81 inline AutoDiffVector& operator=(const AutoDiffVector<OtherValueType, OtherJacobianType>& other) argument
83 m_values = other.values();
84 m_jacobian = other.jacobian();
88 inline AutoDiffVector& operator=(const AutoDiffVector& other) argument
116 operator +=(const AutoDiffVector<OtherValueType,OtherJacobianType>& other) argument
138 operator -=(const AutoDiffVector<OtherValueType,OtherJacobianType>& other) argument
172 operator *(const Scalar& other, const AutoDiffVector& v) argument
198 operator *=(const Scalar& other) argument
206 operator *=(const AutoDiffVector<OtherValueType,OtherJacobianType>& other) argument
[all...]
/external/v8/src/
H A Ddata-flow.h10 // disclaimer in the documentation and/or other materials provided
96 BitVector(const BitVector& other, Zone* zone) argument
97 : length_(other.length()),
100 CopyFrom(other);
112 void CopyFrom(const BitVector& other) { argument
113 ASSERT(other.length() <= length());
114 for (int i = 0; i < other.data_length_; i++) {
115 data_[i] = other.data_[i];
117 for (int i = other.data_length_; i < data_length_; i++) {
138 void Union(const BitVector& other) { argument
145 UnionIsChanged(const BitVector& other) argument
156 Intersect(const BitVector& other) argument
163 Subtract(const BitVector& other) argument
183 Equals(const BitVector& other) argument
[all...]
/external/clang/test/SemaCXX/
H A Dreturn-noreturn.cpp12 struct other { ~other() {} }; struct
46 other o;
50 other o;
54 other o;
58 other o;
62 other o;
66 other o;
70 other o;
77 other
[all...]
/external/clang/include/clang/Basic/
H A DVisibility.h88 void mergeLinkage(LinkageInfo other) { argument
89 mergeLinkage(other.getLinkage());
109 void mergeVisibility(LinkageInfo other) { argument
110 mergeVisibility(other.getVisibility(), other.isVisibilityExplicit());
114 void merge(LinkageInfo other) { argument
115 mergeLinkage(other);
116 mergeVisibility(other);
120 void mergeMaybeWithVisibility(LinkageInfo other, bool withVis) { argument
121 mergeLinkage(other);
[all...]
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp18 OtherClass(const OtherClass &other) : MyCls(other), value(value) { } argument
/external/doclava/src/com/google/doclava/
H A DSorter.java28 public int compareTo(Object other) { argument
29 return label.compareToIgnoreCase(((Sorter) other).label);
/external/icu4c/layout/
H A DCharSubstitutionFilter.h38 CharSubstitutionFilter(const CharSubstitutionFilter &other); // forbid copying of this class
45 CharSubstitutionFilter &operator=(const CharSubstitutionFilter &other); // forbid copying of this class
H A DGDEFMarkFilter.h26 GDEFMarkFilter(const GDEFMarkFilter &other); // forbid copying of this class
27 GDEFMarkFilter &operator=(const GDEFMarkFilter &other); // forbid copying of this class
/external/webkit/Source/WebCore/dom/
H A DViewportArguments.h89 bool operator==(const ViewportArguments& other) const
91 return initialScale == other.initialScale
92 && minimumScale == other.minimumScale
93 && maximumScale == other.maximumScale
94 && width == other.width
95 && height == other.height
96 && targetDensityDpi == other.targetDensityDpi
97 && userScalable == other.userScalable;
/external/webkit/Tools/DumpRenderTree/mac/
H A DAccessibilityTextMarkerMac.mm11 * documentation and/or other materials provided with the distribution.
47 bool AccessibilityTextMarker::isEqual(AccessibilityTextMarker* other)
49 return [(id)platformTextMarker() isEqual:(id)other->platformTextMarker()];
73 bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange* other)
75 return [(id)platformTextMarkerRange() isEqual:(id)other->platformTextMarkerRange()];
/external/replicaisland/src/com/replica/replicaisland/
H A DAABoxCollisionVolume.java20 * An Axis-Aligned rectangular collision volume. This code treats other volumes as if they are
66 * volumes intersect. This test treats the other volume as an AABox.
68 * @param other The volume to test for intersections.
69 * @param otherPosition The world position of the other volume.
73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
80 final float otherLeft = other.getMinXPosition(otherFlip) + otherPosition.x;
81 final float otherRight = other.getMaxXPosition(otherFlip) + otherPosition.x;
82 final float otherBottom = other.getMinYPosition(otherFlip) + otherPosition.y;
83 final float otherTop = other.getMaxYPosition(otherFlip) + otherPosition.y;
103 public void growBy(CollisionVolume other) { argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DTransition.java13 * documentation and/or other materials provided with the distribution.
71 Transition other = (Transition)o;
72 return this.label.equals(other.label) &&
73 this.target.equals(other.target);
77 Transition other = (Transition)o;
78 return this.label.compareTo(other.label);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstAnnotation.java45 public boolean equals(Object other) { argument
46 if (! (other instanceof CstAnnotation)) {
50 return annotation.equals(((CstAnnotation) other).annotation);
61 protected int compareTo0(Constant other) { argument
62 return annotation.compareTo(((CstAnnotation) other).annotation);
/external/icu4c/common/unicode/
H A Ddtintrv.h85 * other classes have different class IDs.
95 DateInterval(const DateInterval& other);
108 virtual UBool operator==(const DateInterval& other) const;
115 UBool operator!=(const DateInterval& other) const;
151 DateInterval::operator!=(const DateInterval& other) const {
152 return ( !operator==(other) );
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DContentLength.java144 public boolean match(Object other) {
145 if (other instanceof ContentLength)
151 public boolean equals(Object other) {
152 if (other instanceof ContentLengthHeader) {
153 final ContentLengthHeader o = (ContentLengthHeader) other;
143 match(Object other) argument
150 equals(Object other) argument

Completed in 3774 milliseconds

1234567891011>>