Searched refs:rhs (Results 276 - 300 of 1313) sorted by relevance

<<11121314151617181920>>

/external/lldb/source/API/
H A DSBModuleSpec.cpp27 SBModuleSpec::SBModuleSpec(const SBModuleSpec &rhs) : argument
28 m_opaque_ap (new lldb_private::ModuleSpec(*rhs.m_opaque_ap))
33 SBModuleSpec::operator = (const SBModuleSpec &rhs) argument
35 if (this != &rhs)
36 *m_opaque_ap = *(rhs.m_opaque_ap);
153 SBModuleSpecList::SBModuleSpecList (const SBModuleSpecList &rhs) : argument
154 m_opaque_ap(new ModuleSpecList(*rhs.m_opaque_ap))
160 SBModuleSpecList::operator = (const SBModuleSpecList &rhs) argument
162 if (this != &rhs)
163 *m_opaque_ap = *rhs
[all...]
H A DSBInstructionList.cpp25 SBInstructionList::SBInstructionList(const SBInstructionList &rhs) : argument
26 m_opaque_sp (rhs.m_opaque_sp)
31 SBInstructionList::operator = (const SBInstructionList &rhs) argument
33 if (this != &rhs)
34 m_opaque_sp = rhs.m_opaque_sp;
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp120 const String & String::operator=( const String &rhs )
122 if ( this == &rhs )
125 if ( rhs._length > _length )
128 getBuffer( rhs._length );
132 _length = rhs._length;
133 strcpy( _buffer, rhs._buffer );
167 int String::operator==( const String &rhs ) const
169 return ( _length == rhs._length && strcmp( _buffer, rhs._buffer ) == 0 );
172 int String::operator!=( const String &rhs ) cons
[all...]
/external/ltrace/
H A Dexpr.h65 struct value *rhs,
70 struct expr_node *rhs; member in struct:expr_node::__anon26622::__anon26625
99 struct expr_node *rhs, int own_rhs);
119 struct value *lhs, struct value *rhs,
123 struct expr_node *rhs, int own_rhs, void *data);
/external/chromium_org/components/rappor/
H A Dbyte_vector_utils.cc81 ByteVector* ByteVectorAnd(const ByteVector& lhs, ByteVector* rhs) { argument
82 DCHECK_EQ(lhs.size(), rhs->size());
84 (*rhs)[i] = lhs[i] & (*rhs)[i];
86 return rhs;
89 ByteVector* ByteVectorOr(const ByteVector& lhs, ByteVector* rhs) { argument
90 DCHECK_EQ(lhs.size(), rhs->size());
92 (*rhs)[i] = lhs[i] | (*rhs)[i];
94 return rhs;
97 ByteVectorMerge(const ByteVector& mask, const ByteVector& lhs, ByteVector* rhs) argument
[all...]
H A Dbyte_vector_utils_unittest.cc32 ByteVector rhs(2);
33 rhs[1] = 0x03;
35 EXPECT_EQ(0x02, (*ByteVectorAnd(lhs, &rhs))[1]);
41 ByteVector rhs(2);
42 rhs[1] = 0x03;
44 EXPECT_EQ(0x13, (*ByteVectorOr(lhs, &rhs))[1]);
50 ByteVector rhs(2);
51 rhs[1] = 0x55;
55 EXPECT_EQ(0x35, (*ByteVectorMerge(mask, lhs, &rhs))[1]);
/external/chromium_org/extensions/common/permissions/
H A Dset_disjunction_permission.h50 virtual bool Contains(const APIPermission* rhs) const OVERRIDE {
51 CHECK(rhs->info() == info());
53 static_cast<const SetDisjunctionPermission*>(rhs);
58 virtual bool Equal(const APIPermission* rhs) const OVERRIDE {
59 CHECK(rhs->info() == info());
61 static_cast<const SetDisjunctionPermission*>(rhs);
71 virtual APIPermission* Diff(const APIPermission* rhs) const OVERRIDE {
72 CHECK(rhs->info() == info());
74 static_cast<const SetDisjunctionPermission*>(rhs);
81 virtual APIPermission* Union(const APIPermission* rhs) cons
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c171 /* rhs -- right hand side (operand, of an operation) */
252 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag);
301 #define SPECIALARG (rhs->bits & DECSPECIAL)
302 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)
748 /* rhs is A */
757 U_CAPI decNumber * U_EXPORT2 uprv_decNumberAbs(decNumber *res, const decNumber *rhs, argument
763 if (decCheckOperands(res, DECUNUSED, rhs, set)) return res;
767 dzero.exponent=rhs->exponent; /* [no coefficient expansion] */
768 decAddOp(res, &dzero, rhs, set, (uByte)(rhs
789 uprv_decNumberAdd(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
815 uprv_decNumberAnd(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
883 uprv_decNumberCompare(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
903 uprv_decNumberCompareSignal(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
924 uprv_decNumberCompareTotal(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
945 uprv_decNumberCompareTotalMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1010 uprv_decNumberDivide(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1033 uprv_decNumberDivideInteger(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1066 uprv_decNumberExp(decNumber *res, const decNumber *rhs, decContext *set) argument
1122 uprv_decNumberFMA(decNumber *res, const decNumber *lhs, const decNumber *rhs, const decNumber *fhs, decContext *set) argument
1213 uprv_decNumberInvert(decNumber *res, const decNumber *rhs, decContext *set) argument
1286 uprv_decNumberLn(decNumber *res, const decNumber *rhs, decContext *set) argument
1352 uprv_decNumberLogB(decNumber *res, const decNumber *rhs, decContext *set) argument
1412 uprv_decNumberLog10(decNumber *res, const decNumber *rhs, decContext *set) argument
1563 uprv_decNumberMax(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1586 uprv_decNumberMaxMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1609 uprv_decNumberMin(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1632 uprv_decNumberMinMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1657 uprv_decNumberMinus(decNumber *res, const decNumber *rhs, decContext *set) argument
1687 uprv_decNumberNextMinus(decNumber *res, const decNumber *rhs, decContext *set) argument
1723 uprv_decNumberNextPlus(decNumber *res, const decNumber *rhs, decContext *set) argument
1763 uprv_decNumberNextToward(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1831 uprv_decNumberOr(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1901 uprv_decNumberPlus(decNumber *res, const decNumber *rhs, decContext *set) argument
1931 uprv_decNumberMultiply(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1968 uprv_decNumberPower(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2313 uprv_decNumberQuantize(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2333 uprv_decNumberNormalize(decNumber *res, const decNumber *rhs, decContext *set) argument
2338 uprv_decNumberReduce(decNumber *res, const decNumber *rhs, decContext *set) argument
2402 uprv_decNumberRescale(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2422 uprv_decNumberRemainder(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2445 uprv_decNumberRemainderNear(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2481 uprv_decNumberRotate(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2602 uprv_decNumberSameQuantum(decNumber *res, const decNumber *lhs, const decNumber *rhs) argument
2637 uprv_decNumberScaleB(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2694 uprv_decNumberShift(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2827 uprv_decNumberSquareRoot(decNumber *res, const decNumber *rhs, decContext *set) argument
3172 uprv_decNumberSubtract(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
3205 uprv_decNumberToIntegralExact(decNumber *res, const decNumber *rhs, decContext *set) argument
3235 uprv_decNumberToIntegralValue(decNumber *res, const decNumber *rhs, decContext *set) argument
3261 uprv_decNumberXor(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
3419 uprv_decNumberCopyAbs(decNumber *res, const decNumber *rhs) argument
3440 uprv_decNumberCopyNegate(decNumber *res, const decNumber *rhs) argument
3461 uprv_decNumberCopySign(decNumber *res, const decNumber *lhs, const decNumber *rhs) argument
3830 decAddOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uByte negate, uInt *status) argument
4246 decDivideOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag op, uInt *status) argument
4866 decMultiplyOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uInt *status) argument
5260 decExpOp(decNumber *res, const decNumber *rhs, decContext *set, uInt *status) argument
5624 decLnOp(decNumber *res, const decNumber *rhs, decContext *set, uInt *status) argument
5871 decQuantizeOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag quant, uInt *status) argument
6044 decCompareOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag op, uInt *status) argument
6209 decCompare(const decNumber *lhs, const decNumber *rhs, Flag abs_c) argument
7555 decCheckMath(const decNumber *rhs, decContext *set, uInt *status) argument
7731 decNaNs(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uInt *status) argument
7951 decCheckOperands(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
[all...]
/external/icu/icu4c/source/i18n/
H A DdecNumber.c171 /* rhs -- right hand side (operand, of an operation) */
254 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag);
303 #define SPECIALARG (rhs->bits & DECSPECIAL)
304 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)
750 /* rhs is A */
759 U_CAPI decNumber * U_EXPORT2 uprv_decNumberAbs(decNumber *res, const decNumber *rhs, argument
765 if (decCheckOperands(res, DECUNUSED, rhs, set)) return res;
769 dzero.exponent=rhs->exponent; /* [no coefficient expansion] */
770 decAddOp(res, &dzero, rhs, set, (uByte)(rhs
791 uprv_decNumberAdd(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
817 uprv_decNumberAnd(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
885 uprv_decNumberCompare(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
905 uprv_decNumberCompareSignal(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
926 uprv_decNumberCompareTotal(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
947 uprv_decNumberCompareTotalMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1012 uprv_decNumberDivide(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1035 uprv_decNumberDivideInteger(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1068 uprv_decNumberExp(decNumber *res, const decNumber *rhs, decContext *set) argument
1124 uprv_decNumberFMA(decNumber *res, const decNumber *lhs, const decNumber *rhs, const decNumber *fhs, decContext *set) argument
1215 uprv_decNumberInvert(decNumber *res, const decNumber *rhs, decContext *set) argument
1288 uprv_decNumberLn(decNumber *res, const decNumber *rhs, decContext *set) argument
1354 uprv_decNumberLogB(decNumber *res, const decNumber *rhs, decContext *set) argument
1414 uprv_decNumberLog10(decNumber *res, const decNumber *rhs, decContext *set) argument
1565 uprv_decNumberMax(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1588 uprv_decNumberMaxMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1611 uprv_decNumberMin(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1634 uprv_decNumberMinMag(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1659 uprv_decNumberMinus(decNumber *res, const decNumber *rhs, decContext *set) argument
1689 uprv_decNumberNextMinus(decNumber *res, const decNumber *rhs, decContext *set) argument
1725 uprv_decNumberNextPlus(decNumber *res, const decNumber *rhs, decContext *set) argument
1765 uprv_decNumberNextToward(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1833 uprv_decNumberOr(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1903 uprv_decNumberPlus(decNumber *res, const decNumber *rhs, decContext *set) argument
1933 uprv_decNumberMultiply(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
1970 uprv_decNumberPower(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2315 uprv_decNumberQuantize(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2335 uprv_decNumberNormalize(decNumber *res, const decNumber *rhs, decContext *set) argument
2340 uprv_decNumberReduce(decNumber *res, const decNumber *rhs, decContext *set) argument
2404 uprv_decNumberRescale(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2424 uprv_decNumberRemainder(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2447 uprv_decNumberRemainderNear(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2483 uprv_decNumberRotate(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2604 uprv_decNumberSameQuantum(decNumber *res, const decNumber *lhs, const decNumber *rhs) argument
2639 uprv_decNumberScaleB(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2696 uprv_decNumberShift(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
2829 uprv_decNumberSquareRoot(decNumber *res, const decNumber *rhs, decContext *set) argument
3174 uprv_decNumberSubtract(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
3207 uprv_decNumberToIntegralExact(decNumber *res, const decNumber *rhs, decContext *set) argument
3237 uprv_decNumberToIntegralValue(decNumber *res, const decNumber *rhs, decContext *set) argument
3263 uprv_decNumberXor(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
3421 uprv_decNumberCopyAbs(decNumber *res, const decNumber *rhs) argument
3442 uprv_decNumberCopyNegate(decNumber *res, const decNumber *rhs) argument
3463 uprv_decNumberCopySign(decNumber *res, const decNumber *lhs, const decNumber *rhs) argument
3832 decAddOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uByte negate, uInt *status) argument
4248 decDivideOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag op, uInt *status) argument
4868 decMultiplyOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uInt *status) argument
5262 decExpOp(decNumber *res, const decNumber *rhs, decContext *set, uInt *status) argument
5626 decLnOp(decNumber *res, const decNumber *rhs, decContext *set, uInt *status) argument
5873 decQuantizeOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag quant, uInt *status) argument
6046 decCompareOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, Flag op, uInt *status) argument
6211 decCompare(const decNumber *lhs, const decNumber *rhs, Flag abs_c) argument
7557 decCheckMath(const decNumber *rhs, decContext *set, uInt *status) argument
7733 decNaNs(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uInt *status) argument
7953 decCheckOperands(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseDenseProduct.h93 EIGEN_STRONG_INLINE SparseDenseOuterProduct(const Lhs& lhs, const Rhs& rhs) argument
94 : m_lhs(lhs), m_rhs(rhs)
99 EIGEN_STRONG_INLINE SparseDenseOuterProduct(const Rhs& rhs, const Lhs& lhs) argument
100 : m_lhs(lhs), m_rhs(rhs)
109 EIGEN_STRONG_INLINE const _RhsNested& rhs() const { return m_rhs; } function in class:Eigen::SparseDenseOuterProduct
123 : Base(prod.lhs(), 0), m_outer(outer), m_factor(get(prod.rhs(), outer, typename internal::traits<Rhs>::StorageKind() ))
133 static Scalar get(const _RhsNested &rhs, Index outer, Dense = Dense()) argument
135 return rhs.coeff(outer);
138 static Scalar get(const _RhsNested &rhs, Index outer, Sparse = Sparse()) argument
140 typename Traits::_RhsNested::InnerIterator it(rhs, oute
173 run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
197 run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
219 run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
238 run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
250 sparse_time_dense_product(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const AlphaType& alpha) argument
264 SparseTimeDenseProduct(const Lhs& lhs, const Rhs& rhs) argument
294 DenseTimeSparseProduct(const Lhs& lhs, const Rhs& rhs) argument
[all...]
H A DSparseSparseProductWithPruning.h20 static void sparse_sparse_product_with_pruning_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res, const typename ResultType::RealScalar& tolerance) argument
22 // return sparse_sparse_product_with_pruning_impl2(lhs,rhs,res);
29 Index cols = rhs.outerSize();
31 eigen_assert(lhs.outerSize() == rhs.innerSize());
37 // given a rhs column containing Y non zeros, we assume that the respective Y columns
39 // the product of a rhs column with the lhs is X+Y where X is the average number of non zero
41 // Therefore, we have nnz(lhs*rhs) = nnz(lhs) + nnz(rhs)
42 Index estimated_nnz_prod = lhs.nonZeros() + rhs.nonZeros();
51 double ratioColRes = double(estimated_nnz_prod)/double(lhs.rows()*rhs
88 run(const Lhs& lhs, const Rhs& rhs, ResultType& res, const RealScalar& tolerance) argument
100 run(const Lhs& lhs, const Rhs& rhs, ResultType& res, const RealScalar& tolerance) argument
114 run(const Lhs& lhs, const Rhs& rhs, ResultType& res, const RealScalar& tolerance) argument
127 run(const Lhs& lhs, const Rhs& rhs, ResultType& res, const RealScalar& tolerance) argument
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_url.cc161 const FileSystemURL& rhs) const {
162 DCHECK(lhs.is_valid_ && rhs.is_valid_);
163 if (lhs.origin_ != rhs.origin_)
164 return lhs.origin_ < rhs.origin_;
165 if (lhs.type_ != rhs.type_)
166 return lhs.type_ < rhs.type_;
167 if (lhs.filesystem_id_ != rhs.filesystem_id_)
168 return lhs.filesystem_id_ < rhs.filesystem_id_;
169 return lhs.path_ < rhs.path_;
/external/chromium_org/ui/gfx/geometry/
H A Drect.h79 inline bool operator==(const Rect& lhs, const Rect& rhs) { argument
80 return lhs.origin() == rhs.origin() && lhs.size() == rhs.size();
83 inline bool operator!=(const Rect& lhs, const Rect& rhs) { argument
84 return !(lhs == rhs);
87 GFX_EXPORT Rect operator+(const Rect& lhs, const Vector2d& rhs);
88 GFX_EXPORT Rect operator-(const Rect& lhs, const Vector2d& rhs);
90 inline Rect operator+(const Vector2d& lhs, const Rect& rhs) { argument
91 return rhs + lhs;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTypeResolver.java81 PExpression rhs = node.getRight();
82 if (isNumeric(lhs) || isNumeric(rhs)) {
83 node.replaceBy(new ANumericAddExpression(lhs, rhs));
91 PExpression rhs = node.getRight();
92 if (isNumeric(lhs) || isNumeric(rhs)) {
93 node.replaceBy(new ANumericEqExpression(lhs, rhs));
101 PExpression rhs = node.getRight();
102 if (isNumeric(lhs) || isNumeric(rhs)) {
103 node.replaceBy(new ANumericNeExpression(lhs, rhs));
/external/lldb/include/lldb/Core/
H A DStreamTee.h53 StreamTee (const StreamTee &rhs) : argument
54 Stream (rhs),
56 m_streams() // Don't copy until we lock down "rhs"
58 Mutex::Locker locker (rhs.m_streams_mutex);
59 m_streams = rhs.m_streams;
68 operator = (const StreamTee &rhs) argument
70 if (this != &rhs) {
71 Stream::operator=(rhs);
73 Mutex::Locker rhs_locker (rhs.m_streams_mutex);
74 m_streams = rhs
[all...]
/external/lldb/source/Core/
H A DRegularExpression.cpp56 RegularExpression::RegularExpression(const RegularExpression &rhs) argument
59 Compile(rhs.GetText(), rhs.GetCompileFlags());
63 RegularExpression::operator= (const RegularExpression &rhs) argument
65 if (&rhs != this)
67 Compile (rhs.GetText(), rhs.GetCompileFlags());
275 RegularExpression::operator < (const RegularExpression& rhs) const
277 return (m_re < rhs.m_re);
/external/chromium_org/base/memory/
H A Dref_counted.h348 bool operator==(const scoped_refptr<U>& rhs) const {
349 return ptr_ == rhs.get();
353 bool operator!=(const scoped_refptr<U>& rhs) const {
354 return !operator==(rhs);
358 bool operator<(const scoped_refptr<U>& rhs) const {
359 return ptr_ < rhs.get();
377 bool operator==(const scoped_refptr<T>& lhs, const U* rhs) { argument
378 return lhs.get() == rhs;
382 bool operator==(const T* lhs, const scoped_refptr<U>& rhs) { argument
383 return lhs == rhs
387 operator !=(const scoped_refptr<T>& lhs, const U* rhs) argument
392 operator !=(const T* lhs, const scoped_refptr<U>& rhs) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp168 bool operator==(const LinearTimingFunction& lhs, const TimingFunction& rhs) argument
170 return rhs.type() == TimingFunction::LinearFunction;
173 bool operator==(const CubicBezierTimingFunction& lhs, const TimingFunction& rhs) argument
175 if (rhs.type() != TimingFunction::CubicBezierFunction)
178 const CubicBezierTimingFunction& ctf = toCubicBezierTimingFunction(rhs);
185 bool operator==(const StepsTimingFunction& lhs, const TimingFunction& rhs) argument
187 if (rhs.type() != TimingFunction::StepsFunction)
190 const StepsTimingFunction& stf = toStepsTimingFunction(rhs);
196 bool operator==(const TimingFunction& lhs, const TimingFunction& rhs) argument
201 return (linear == rhs);
218 operator !=(const TimingFunction& lhs, const TimingFunction& rhs) argument
[all...]
/external/chromium_org/ui/base/accelerators/
H A Daccelerator.cc64 bool Accelerator::operator <(const Accelerator& rhs) const {
65 if (key_code_ != rhs.key_code_)
66 return key_code_ < rhs.key_code_;
67 if (type_ != rhs.type_)
68 return type_ < rhs.type_;
69 return modifiers_ < rhs.modifiers_;
72 bool Accelerator::operator ==(const Accelerator& rhs) const {
73 if ((key_code_ == rhs.key_code_) && (type_ == rhs.type_) &&
74 (modifiers_ == rhs
[all...]
/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverVector.h20 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs) argument
25 >::run(size, _lhs, lhsStride, rhs);
29 // forward and backward substitution, row-major, rhs is a vector
36 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs) argument
64 rhs + startCol, 1,
65 rhs + startRow, 1,
74 rhs[i] -= (cjLhs.row(i).segment(s,k).transpose().cwiseProduct(Map<const Matrix<RhsScalar,Dynamic,1> >(rhs+s,k))).sum();
77 rhs[i] /= cjLhs(i,i);
83 // forward and backward substitution, column-major, rhs i
90 run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs) argument
[all...]
/external/chromium_org/net/base/
H A Dint128.h94 inline bool operator==(const uint128& lhs, const uint128& rhs) { argument
95 return (Uint128Low64(lhs) == Uint128Low64(rhs) &&
96 Uint128High64(lhs) == Uint128High64(rhs));
98 inline bool operator!=(const uint128& lhs, const uint128& rhs) { argument
99 return !(lhs == rhs);
126 inline bool operator op(const uint128& lhs, const uint128& rhs) { \
127 return (Uint128High64(lhs) == Uint128High64(rhs)) ? \
128 (Uint128Low64(lhs) op Uint128Low64(rhs)) : \
129 (Uint128High64(lhs) op Uint128High64(rhs)); \
162 inline uint128 operator op(const uint128& lhs, const uint128& rhs) { \
256 operator +(const uint128& lhs, const uint128& rhs) argument
260 operator -(const uint128& lhs, const uint128& rhs) argument
264 operator *(const uint128& lhs, const uint128& rhs) argument
[all...]
/external/lldb/source/Target/
H A DExecutionContext.cpp29 ExecutionContext::ExecutionContext (const ExecutionContext &rhs) : argument
30 m_target_sp(rhs.m_target_sp),
31 m_process_sp(rhs.m_process_sp),
32 m_thread_sp(rhs.m_thread_sp),
33 m_frame_sp(rhs.m_frame_sp)
458 ExecutionContext::operator =(const ExecutionContext &rhs) argument
460 if (this != &rhs)
462 m_target_sp = rhs.m_target_sp;
463 m_process_sp = rhs.m_process_sp;
464 m_thread_sp = rhs
567 ExecutionContextRef(const ExecutionContextRef &rhs) argument
577 operator =(const ExecutionContextRef &rhs) argument
[all...]
/external/chromium_org/chrome/browser/ui/zoom/
H A Dzoom_controller_browsertest.cc26 const ZoomController::ZoomChangedEventData& rhs) {
27 return lhs.web_contents == rhs.web_contents &&
28 lhs.old_zoom_level == rhs.old_zoom_level &&
29 lhs.new_zoom_level == rhs.new_zoom_level &&
30 lhs.zoom_mode == rhs.zoom_mode &&
31 lhs.can_show_bubble == rhs.can_show_bubble;
25 operator ==(const ZoomController::ZoomChangedEventData& lhs, const ZoomController::ZoomChangedEventData& rhs) argument
/external/chromium_org/components/history/core/common/
H A Dthumbnail_score.cc66 bool ThumbnailScore::Equals(const ThumbnailScore& rhs) const {
67 return boring_score == rhs.boring_score &&
68 good_clipping == rhs.good_clipping && at_top == rhs.at_top &&
69 time_at_snapshot == rhs.time_at_snapshot &&
70 redirect_hops_from_dest == rhs.redirect_hops_from_dest;
/external/chromium_org/media/cast/net/
H A Dcast_transport_config.h177 inline bool operator==(RtcpSenderInfo lhs, RtcpSenderInfo rhs) { argument
178 return lhs.ntp_seconds == rhs.ntp_seconds &&
179 lhs.ntp_fraction == rhs.ntp_fraction &&
180 lhs.rtp_timestamp == rhs.rtp_timestamp &&
181 lhs.send_packet_count == rhs.send_packet_count &&
182 lhs.send_octet_count == rhs.send_octet_count;

Completed in 3412 milliseconds

<<11121314151617181920>>