Searched refs:other (Results 126 - 150 of 1751) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/Core/
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());
129 /** replaces \c *this by \c *this * \a other.
136 MatrixBase<Derived>::operator*=(const EigenBase<OtherDerived> &other) argument
145 applyOnTheRight(const EigenBase<OtherDerived> &other) argument
153 applyOnTheLeft(const EigenBase<OtherDerived> &other) argument
[all...]
/external/harfbuzz_ng/src/
H A Dhb-set.cc151 const hb_set_t *other)
153 return set->is_equal (other);
158 const hb_set_t *other)
160 set->set (other);
165 const hb_set_t *other)
167 set->union_ (other);
172 const hb_set_t *other)
174 set->intersect (other);
179 const hb_set_t *other)
181 set->subtract (other);
150 hb_set_is_equal(const hb_set_t *set, const hb_set_t *other) argument
157 hb_set_set(hb_set_t *set, const hb_set_t *other) argument
164 hb_set_union(hb_set_t *set, const hb_set_t *other) argument
171 hb_set_intersect(hb_set_t *set, const hb_set_t *other) argument
178 hb_set_subtract(hb_set_t *set, const hb_set_t *other) argument
185 hb_set_symmetric_difference(hb_set_t *set, const hb_set_t *other) argument
[all...]
/external/icu4c/i18n/unicode/
H A Dcurrunit.h51 CurrencyUnit(const CurrencyUnit& other);
57 CurrencyUnit& operator=(const CurrencyUnit& other);
77 UBool operator==(const UObject& other) const;
83 * class have the same class ID. Objects of other classes have
H A Dmeasure.h64 Measure(const Measure& other);
70 Measure& operator=(const Measure& other);
90 UBool operator==(const UObject& other) const;
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DSRVRecord.java36 * @throws IllegalArgumentException fqdn is null or any other field is not in valid range (0-65535).
64 public int compareTo(SRVRecord other) { argument
68 int res = other.priority - this.priority;
70 res = this.weight - other.weight;
/external/chromium/chrome/browser/history/
H A Dhistory_types.cc35 URLRow& URLRow::operator=(const URLRow& other) { argument
36 id_ = other.id_;
37 url_ = other.url_;
38 title_ = other.title_;
39 visit_count_ = other.visit_count_;
40 typed_count_ = other.typed_count_;
41 last_visit_ = other.last_visit_;
42 hidden_ = other.hidden_;
46 void URLRow::Swap(URLRow* other) { argument
47 std::swap(id_, other
114 Swap(StarredEntry* other) argument
146 SwapResult(URLResult* other) argument
180 Swap(QueryResults* other) argument
195 AppendResultsBySwapping(QueryResults* other, bool remove_dupes) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java36 PemHeader other = (PemHeader)o;
38 return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value));
/external/chromium/net/spdy/
H A Dspdy_io_buffer.h40 bool operator<(const SpdyIOBuffer& other) const {
41 if (priority_ != other.priority_)
42 return priority_ > other.priority_;
43 return position_ > other.position_;
/external/clang/test/CodeGenCXX/
H A Dcxx0x-delegating-ctors.cpp70 void other();
77 virtual void squawk() { other(); }
87 virtual void squawk() { other(); }
96 Foo::Foo() : Foo(__null) { other(); }
/external/clang/test/SemaTemplate/
H A Dcopy-ctor-assign.cpp10 X(const X<U>& other) argument
11 : value(other.value + 1) { } // expected-error{{binary expression}}
14 X& operator=(const X<U>& other) { argument
15 value = other.value + 1; // expected-error{{binary expression}}
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java47 * Merges {@code other} into this set, so this set becomes the
50 * @param other {@code non-null;} other set to merge with.
52 void merge(IntSet other); argument
/external/eigen/Eigen/src/Eigen2Support/
H A DLazy.h54 EvalBeforeAssigningBit>& other)
56 other._expression().derived().addTo(derived()); return derived();
64 EvalBeforeAssigningBit>& other)
66 other._expression().derived().subTo(derived()); return derived();
53 operator +=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument
63 operator -=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument
H A DTriangularSolver.h28 Flagged<ExpressionType,Added,Removed>::solveTriangular(const MatrixBase<OtherDerived>& other) const
30 return m_matrix.template triangularView<Added>().solve(other.derived());
35 void Flagged<ExpressionType,Added,Removed>::solveTriangularInPlace(const MatrixBase<OtherDerived>& other) const
37 m_matrix.template triangularView<Added>().solveInPlace(other.derived());
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseBinaryOps.h1 /** \returns an expression of the coefficient wise product of \c *this and \a other
7 operator*(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
9 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(Derived,OtherDerived)(derived(), other.derived());
12 /** \returns an expression of the coefficient wise quotient of \c *this and \a other
18 operator/(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
20 return CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
23 /** \returns an expression of the coefficient-wise min of \c *this and \a other
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
37 (min)(const Scalar &other) const
39 return (min)(Derived::PlainObject::Constant(rows(), cols(), other));
141 operator +(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other) argument
160 operator -(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DMaxForwards.java110 public boolean equals(Object other) { argument
111 if (this==other) return true;
112 if (other instanceof MaxForwardsHeader) {
113 final MaxForwardsHeader o = (MaxForwardsHeader) other;
/external/replicaisland/src/com/replica/replicaisland/
H A DInventoryComponent.java75 public void add(UpdateRecord other) { argument
76 rubyCount += other.rubyCount;
77 coinCount += other.coinCount;
78 diaryCount += other.diaryCount;
/external/v8/src/
H A Ddiy-fp.cc10 // disclaimer in the documentation and/or other materials provided
36 void DiyFp::Multiply(const DiyFp& other) { argument
44 uint64_t c = other.f_ >> 32;
45 uint64_t d = other.f_ & kM32;
55 e_ += other.e_ + 64;
/external/webkit/Source/WebCore/platform/text/
H A DSegmentedString.cpp25 SegmentedString::SegmentedString(const SegmentedString& other) argument
26 : m_pushedChar1(other.m_pushedChar1)
27 , m_pushedChar2(other.m_pushedChar2)
28 , m_currentString(other.m_currentString)
29 , m_substrings(other.m_substrings)
30 , m_closed(other.m_closed)
32 if (other.m_currentChar == &other.m_pushedChar1)
34 else if (other.m_currentChar == &other
40 operator =(const SegmentedString& other) argument
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextMetrics.h48 bool operator==(const Glyph& other) argument
50 return isValid == other.isValid
51 && name == other.name
52 && unicodeString == other.unicodeString;
/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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHPrivateKeyParameters.java37 DHPrivateKeyParameters other = (DHPrivateKeyParameters)obj;
39 return other.getX().equals(this.x) && super.equals(obj);
H A DDHPublicKeyParameters.java37 DHPublicKeyParameters other = (DHPublicKeyParameters)obj;
39 return other.getY().equals(y) && super.equals(obj);
/external/chromium/chrome/common/
H A Dnative_window_notification_source.h21 explicit Source(const NotificationSource& other) argument
22 : NotificationSource(other) {}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp32 function(const function& other) : invoker(0) { argument
33 if (other.invoker)
34 invoker = other.invoker->clone();
46 function& operator=(const function& other) { argument
47 function(other).swap(*this);
57 void swap(function& other) { argument
59 invoker = other.invoker;
60 other.invoker = tmp;
/external/clang/test/PCH/
H A Dcxx11-constexpr.cpp26 constexpr T plus_seven(T other) { argument
27 return value + other;

Completed in 751 milliseconds

1234567891011>>