Searched refs:rhs (Results 226 - 250 of 1313) sorted by relevance

1234567891011>>

/external/chromium_org/base/android/
H A Djni_weak_ref.h24 void operator=(const JavaObjectWeakGlobalRef& rhs);
33 void Assign(const JavaObjectWeakGlobalRef& rhs);
/external/chromium_org/extensions/common/permissions/
H A Dmedia_galleries_permission_data.h36 bool operator<(const MediaGalleriesPermissionData& rhs) const;
37 bool operator==(const MediaGalleriesPermissionData& rhs) const;
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dfpositer.h86 * @param rhs The FieldPositionIterator to be compared for inequality
90 UBool operator!=(const FieldPositionIterator& rhs) const { return !operator==(rhs); }
/external/chromium_org/v8/src/base/
H A Dbits.h119 // SignedAddOverflow32(lhs,rhs,val) performs a signed summation of |lhs| and
120 // |rhs| and stores the result into the variable pointed to by |val| and
122 inline bool SignedAddOverflow32(int32_t lhs, int32_t rhs, int32_t* val) { argument
124 return __builtin_sadd_overflow(lhs, rhs, val);
126 uint32_t res = static_cast<uint32_t>(lhs) + static_cast<uint32_t>(rhs);
128 return ((res ^ lhs) & (res ^ rhs) & (1U << 31)) != 0;
133 // SignedSubOverflow32(lhs,rhs,val) performs a signed subtraction of |lhs| and
134 // |rhs| and stores the result into the variable pointed to by |val| and
136 inline bool SignedSubOverflow32(int32_t lhs, int32_t rhs, int32_t* val) { argument
138 return __builtin_ssub_overflow(lhs, rhs, va
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dfpositer.h86 * @param rhs The FieldPositionIterator to be compared for inequality
90 UBool operator!=(const FieldPositionIterator& rhs) const { return !operator==(rhs); }
/external/lldb/include/lldb/API/
H A DSBStringList.h23 SBStringList (const lldb::SBStringList &rhs);
26 operator = (const SBStringList &rhs);
/external/lldb/scripts/Python/interface/
H A DSBSourceManager.i41 SBSourceManager (const lldb::SBSourceManager &rhs);
H A DSBStringList.i18 SBStringList (const lldb::SBStringList &rhs);
H A DSBTypeSummary.i31 SBTypeSummary (const lldb::SBTypeSummary &rhs);
39 IsEqualTo (lldb::SBTypeSummary &rhs);
73 operator == (lldb::SBTypeSummary &rhs);
76 operator != (lldb::SBTypeSummary &rhs);
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.h22 CFCMutableArray(const CFCMutableArray& rhs); // This will copy the array contents into a new array
23 CFCMutableArray& operator=(const CFCMutableArray& rhs); // This will re-use the same array and just bump the ref count
/external/llvm/lib/Target/Sparc/
H A DSparcMachineFunctionInfo.h51 void setLeafProc(bool rhs) { IsLeafProc = rhs; } argument
/external/eigen/Eigen/src/Core/products/
H A DCoeffBasedProduct.h148 inline CoeffBasedProduct(const Lhs& lhs, const Rhs& rhs) argument
149 : m_lhs(lhs), m_rhs(rhs)
155 eigen_assert(lhs.cols() == rhs.rows()
201 const _RhsNested& rhs() const { return m_rhs; } function in class:Eigen::CoeffBasedProduct
242 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res) argument
244 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
245 res += lhs.coeff(row, UnrollingIndex) * rhs.coeff(UnrollingIndex, col);
253 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res) argument
255 res = lhs.coeff(row, 0) * rhs.coeff(0, col);
263 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScala argument
281 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres) argument
292 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres) argument
304 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res) argument
317 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
329 run(Index , Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
339 run(Index row, Index , const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
349 run(Index , Index , const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
359 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
373 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
384 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
395 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
405 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
415 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet& res) argument
428 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet& res) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dimplicit_schur_complement_test.cc73 Vector* rhs,
95 rhs->resize(num_schur_rows);
97 eliminator->Eliminate(A_.get(), b_.get(), D, &blhs, rhs->data());
112 schur_solution = lhs->selfadjointView<Eigen::Upper>().llt().solve(*rhs);
119 Vector rhs; local
121 ReducedLinearSystemAndSolution(D, &lhs, &rhs, &reference_solution);
152 // Compare the rhs of the reduced linear system
153 if ((isc.rhs() - rhs).norm() > kEpsilon) {
156 << "rhs
71 ReducedLinearSystemAndSolution(double* D, Matrix* lhs, Vector* rhs, Vector* solution) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcursor_selection.js180 * @param {!cvox.CursorSelection} rhs The CursorSelection to compare against.
183 cvox.CursorSelection.prototype.equals = function(rhs) {
184 return this.start.equals(rhs.start) && this.end.equals(rhs.end);
189 * @param {!cvox.CursorSelection} rhs The CursorSelection to compare against.
192 cvox.CursorSelection.prototype.absEquals = function(rhs) {
193 return ((this.start.equals(rhs.start) && this.end.equals(rhs.end)) ||
194 (this.end.equals(rhs.start) && this.start.equals(rhs
[all...]
/external/chromium_org/printing/
H A Dimage.cc83 double Image::PercentageDifferent(const Image& rhs) const {
85 rhs.size_.width() == 0 || rhs.size_.height() == 0)
88 int width = std::min(size_.width(), rhs.size_.width());
89 int height = std::min(size_.height(), rhs.size_.height());
95 uint32 rhs_pixel = rhs.pixel_at(x, y);
107 // Look for extra right rhs pixels. They should be white.
108 for (int x = width; x < rhs.size_.width(); ++x) {
109 uint32 rhs_pixel = rhs.pixel_at(x, y);
124 // Look for extra bottom rhs pixel
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dquad_f.h71 void operator+=(const Vector2dF& rhs);
74 void operator-=(const Vector2dF& rhs);
92 inline bool operator==(const QuadF& lhs, const QuadF& rhs) { argument
94 lhs.p1() == rhs.p1() && lhs.p2() == rhs.p2() &&
95 lhs.p3() == rhs.p3() && lhs.p4() == rhs.p4();
98 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) { argument
99 return !(lhs == rhs);
103 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs);
[all...]
/external/lldb/include/lldb/Core/
H A DAddress.h112 /// Makes a copy of the another Address object \a rhs.
114 /// @param[in] rhs
117 Address (const Address& rhs) : argument
118 m_section_wp (rhs.m_section_wp),
119 m_offset(rhs.m_offset.load())
163 /// Copies the address value from another Address object \a rhs
166 /// @param[in] rhs
174 operator= (const Address& rhs);
195 /// @param[in] rhs
199 /// @li -1 if lhs < rhs
[all...]
/external/lldb/source/API/
H A DSBDeclaration.cpp27 SBDeclaration::SBDeclaration (const SBDeclaration &rhs) : argument
30 if (rhs.IsValid())
31 ref() = rhs.ref();
42 SBDeclaration::operator = (const SBDeclaration &rhs) argument
44 if (this != &rhs)
46 if (rhs.IsValid())
47 ref() = rhs.ref();
140 SBDeclaration::operator == (const SBDeclaration &rhs) const
143 lldb_private::Declaration *rhs_ptr = rhs.m_opaque_ap.get();
152 SBDeclaration::operator != (const SBDeclaration &rhs) cons
[all...]
H A DSBType.cpp52 SBType::SBType (const SBType &rhs) : argument
55 if (this != &rhs)
57 m_opaque_sp = rhs.m_opaque_sp;
67 SBType::operator == (SBType &rhs) argument
70 return !rhs.IsValid();
72 return (rhs.m_opaque_sp->GetASTContext() == m_opaque_sp->GetASTContext()) &&
73 (rhs.m_opaque_sp->GetOpaqueQualType() == m_opaque_sp->GetOpaqueQualType());
77 SBType::operator != (SBType &rhs) argument
80 return rhs.IsValid();
82 return (rhs
100 operator =(const SBType &rhs) argument
456 SBTypeList(const SBTypeList& rhs) argument
470 operator =(const SBTypeList& rhs) argument
515 SBTypeMember(const SBTypeMember& rhs) argument
526 operator =(const lldb::SBTypeMember& rhs) argument
[all...]
/external/lldb/source/DataFormatters/
H A DFormatCache.cpp31 FormatCache::Entry::Entry (const Entry& rhs) : argument
32 m_summary_cached(rhs.m_summary_cached),
33 m_synthetic_cached(rhs.m_synthetic_cached),
34 m_summary_sp(rhs.m_summary_sp),
35 m_synthetic_sp(rhs.m_synthetic_sp)
58 FormatCache::Entry& FormatCache::Entry::operator= (const Entry& rhs) argument
60 if (this == &rhs)
63 m_summary_cached = rhs.m_summary_cached;
64 m_synthetic_cached = rhs.m_synthetic_cached;
65 m_summary_sp = rhs
[all...]
/external/chromium_org/v8/src/compiler/
H A Dsimplified-operator.cc28 bool operator==(ElementAccess const& lhs, ElementAccess const& rhs) { argument
29 return lhs.base_is_tagged == rhs.base_is_tagged &&
30 lhs.header_size == rhs.header_size && lhs.type == rhs.type &&
31 lhs.machine_type == rhs.machine_type;
35 bool operator!=(ElementAccess const& lhs, ElementAccess const& rhs) { argument
36 return !(lhs == rhs);
73 static bool Equals(const FieldAccess& lhs, const FieldAccess& rhs) { argument
74 return lhs.base_is_tagged == rhs.base_is_tagged &&
75 lhs.offset == rhs
90 Equals(const ElementAccess& lhs, const ElementAccess& rhs) argument
[all...]
/external/chromium_org/third_party/protobuf/python/
H A Dmox.py314 def __eq__(self, rhs):
317 return (isinstance(rhs, MockAnything) and
318 self._replay_mode == rhs._replay_mode and
319 self._expected_calls_queue == rhs._expected_calls_queue)
321 def __ne__(self, rhs):
324 return not self == rhs
419 def __eq__(self, rhs):
422 return (isinstance(rhs, MockObject) and
423 self._class_to_mock == rhs._class_to_mock and
424 self._replay_mode == rhs
[all...]
/external/protobuf/python/
H A Dmox.py314 def __eq__(self, rhs):
317 return (isinstance(rhs, MockAnything) and
318 self._replay_mode == rhs._replay_mode and
319 self._expected_calls_queue == rhs._expected_calls_queue)
321 def __ne__(self, rhs):
324 return not self == rhs
419 def __eq__(self, rhs):
422 return (isinstance(rhs, MockObject) and
423 self._class_to_mock == rhs._class_to_mock and
424 self._replay_mode == rhs
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Djitter_estimator.cc55 VCMJitterEstimator::operator=(const VCMJitterEstimator& rhs) argument
57 if (this != &rhs)
59 memcpy(_thetaCov, rhs._thetaCov, sizeof(_thetaCov));
60 memcpy(_Qcov, rhs._Qcov, sizeof(_Qcov));
62 _vcmId = rhs._vcmId;
63 _receiverId = rhs._receiverId;
64 _avgFrameSize = rhs._avgFrameSize;
65 _varFrameSize = rhs._varFrameSize;
66 _maxFrameSize = rhs._maxFrameSize;
67 _fsSum = rhs
[all...]
/external/chromium_org/components/invalidation/
H A Dinvalidation_util.cc20 const invalidation::ObjectId& rhs) const {
21 return (lhs.source() < rhs.source()) ||
22 (lhs.source() == rhs.source() && lhs.name() < rhs.name());

Completed in 4376 milliseconds

1234567891011>>