Searched refs:rhs (Results 51 - 75 of 1313) sorted by relevance

1234567891011>>

/external/oprofile/libpp/
H A Dfilename_spec.cpp35 bool filename_spec::match(filename_spec const & rhs, argument
38 if (!tid.match(rhs.tid) || !cpu.match(rhs.cpu) ||
39 !tgid.match(rhs.tgid) || count != rhs.count ||
40 unitmask != rhs.unitmask || event != rhs.event) {
45 return image == rhs.image && lib_image == rhs.lib_image;
49 if (!rhs
[all...]
/external/stlport/test/eh/
H A DSortClass.h39 bool operator<( const TestClass& rhs ) const
42 return (const TestClass&)*this < ( rhs );
45 bool operator==( const TestClass& rhs ) const
48 return (const TestClass&)*this == ( rhs );
58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) {
59 return rhs < lhs;
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) {
63 return !(rhs < lhs);
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) {
67 return !(lhs < rhs);
[all...]
H A DTestClass.h37 inline TestClass( const TestClass& rhs );
40 inline TestClass& operator=( const TestClass& rhs );
45 bool operator==( const TestClass& rhs ) const
47 return value() == rhs.value();
50 bool operator<( const TestClass& rhs ) const {
51 return value() < rhs.value();
97 inline TestClass::TestClass( const TestClass& rhs )
99 Init( rhs.value() );
111 inline TestClass& TestClass::operator=( const TestClass& rhs )
114 int *newP = new int( rhs
[all...]
/external/lldb/source/API/
H A DSBTypeFormat.cpp32 SBTypeFormat::SBTypeFormat (const lldb::SBTypeFormat &rhs) : argument
33 m_opaque_sp(rhs.m_opaque_sp)
91 SBTypeFormat::operator = (const lldb::SBTypeFormat &rhs) argument
93 if (this != &rhs)
95 m_opaque_sp = rhs.m_opaque_sp;
101 SBTypeFormat::operator == (lldb::SBTypeFormat &rhs) argument
104 return !rhs.IsValid();
105 return m_opaque_sp == rhs.m_opaque_sp;
109 SBTypeFormat::IsEqualTo (lldb::SBTypeFormat &rhs) argument
112 return !rhs
121 operator !=(lldb::SBTypeFormat &rhs) argument
[all...]
H A DSBTypeSynthetic.cpp44 SBTypeSynthetic::SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs) : argument
45 m_opaque_sp(rhs.m_opaque_sp)
131 SBTypeSynthetic::operator = (const lldb::SBTypeSynthetic &rhs) argument
133 if (this != &rhs)
135 m_opaque_sp = rhs.m_opaque_sp;
141 SBTypeSynthetic::operator == (lldb::SBTypeSynthetic &rhs) argument
144 return !rhs.IsValid();
145 return m_opaque_sp == rhs.m_opaque_sp;
149 SBTypeSynthetic::IsEqualTo (lldb::SBTypeSynthetic &rhs) argument
152 return !rhs
168 operator !=(lldb::SBTypeSynthetic &rhs) argument
[all...]
/external/chromium_org/media/base/
H A Dstream_parser_buffer.h24 DecodeTimestamp(const DecodeTimestamp& rhs) : ts_(rhs.ts_) { } argument
25 DecodeTimestamp& operator=(const DecodeTimestamp& rhs) { argument
26 if (&rhs != this)
27 ts_ = rhs.ts_;
33 bool operator<(const DecodeTimestamp& rhs) const { return ts_ < rhs.ts_; }
34 bool operator>(const DecodeTimestamp& rhs) const { return ts_ > rhs.ts_; }
35 bool operator==(const DecodeTimestamp& rhs) cons
44 operator +=(const base::TimeDelta& rhs) argument
49 operator -=(const base::TimeDelta& rhs) argument
[all...]
/external/clang/test/PCH/
H A Dcxx-typeid.h13 bool operator==(const type_info& rhs) const;
14 bool operator!=(const type_info& rhs) const;
16 bool before(const type_info& rhs) const;
20 type_info(const type_info& rhs);
21 type_info& operator=(const type_info& rhs);
/external/chromium_org/third_party/icu/source/i18n/
H A Dfpositer.cpp31 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
34 if (rhs.data) {
37 data->assign(*rhs.data, status);
46 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
47 if (&rhs == this) {
50 if (pos != rhs.pos) {
54 return rhs.data == NULL;
56 return rhs
[all...]
/external/icu/icu4c/source/i18n/
H A Dfpositer.cpp31 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
34 if (rhs.data) {
37 data->assign(*rhs.data, status);
46 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
47 if (&rhs == this) {
50 if (pos != rhs.pos) {
54 return rhs.data == NULL;
56 return rhs
[all...]
/external/chromium_org/net/quic/
H A Dquic_time.h105 friend bool operator==(QuicTime lhs, QuicTime rhs);
106 friend bool operator<(QuicTime lhs, QuicTime rhs);
156 inline bool operator==(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
157 return lhs.ToMicroseconds() == rhs.ToMicroseconds();
159 inline bool operator!=(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
160 return !(lhs == rhs);
162 inline bool operator<(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
163 return lhs.ToMicroseconds() < rhs.ToMicroseconds();
165 inline bool operator>(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
166 return rhs < lh
168 operator <=(QuicTime::Delta lhs, QuicTime::Delta rhs) argument
171 operator >=(QuicTime::Delta lhs, QuicTime::Delta rhs) argument
175 operator ==(QuicTime lhs, QuicTime rhs) argument
178 operator !=(QuicTime lhs, QuicTime rhs) argument
181 operator <(QuicTime lhs, QuicTime rhs) argument
184 operator >(QuicTime lhs, QuicTime rhs) argument
187 operator <=(QuicTime lhs, QuicTime rhs) argument
190 operator >=(QuicTime lhs, QuicTime rhs) argument
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DMemoryGauge.cpp29 MemoryStats::MemoryStats (const MemoryStats& rhs) : argument
30 m_virtual_size (rhs.m_virtual_size),
31 m_resident_size (rhs.m_resident_size),
32 m_max_resident_size (rhs.m_max_resident_size)
38 MemoryStats::operator = (const MemoryStats& rhs) argument
40 if (this != &rhs)
42 m_virtual_size = rhs.m_virtual_size;
43 m_resident_size = rhs.m_resident_size;
44 m_max_resident_size = rhs.m_max_resident_size;
50 MemoryStats::operator += (const MemoryStats& rhs) argument
59 operator -(const MemoryStats& rhs) argument
67 operator +(const MemoryStats& rhs) argument
85 operator *(const MemoryStats& rhs) argument
[all...]
/external/libcxx/src/
H A Dios.cpp305 ios_base::copyfmt(const ios_base& rhs) argument
313 if (__event_cap_ < rhs.__event_size_)
315 size_t newesize = sizeof(event_callback) * rhs.__event_size_;
322 size_t newisize = sizeof(int) * rhs.__event_size_;
329 if (__iarray_cap_ < rhs.__iarray_size_)
331 size_t newsize = sizeof(long) * rhs.__iarray_size_;
338 if (__parray_cap_ < rhs.__parray_size_)
340 size_t newsize = sizeof(void*) * rhs.__parray_size_;
348 __fmtflags_ = rhs.__fmtflags_;
349 __precision_ = rhs
386 move(ios_base& rhs) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIconURL.cpp52 bool operator==(const IconURL& lhs, const IconURL& rhs) argument
54 return lhs.m_iconType == rhs.m_iconType
55 && lhs.m_isDefaultIcon == rhs.m_isDefaultIcon
56 && lhs.m_iconURL == rhs.m_iconURL
57 && lhs.m_sizes == rhs.m_sizes
58 && lhs.m_mimeType == rhs.m_mimeType;
/external/chromium_org/v8/src/base/
H A Dflags.h69 Type::flag_type rhs)ALLOW_UNUSED WARN_UNUSED_RESULT; \
70 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
71 return Type(lhs) & rhs; \
74 const Type& rhs)ALLOW_UNUSED WARN_UNUSED_RESULT; \
75 inline Type operator&(Type::flag_type lhs, const Type& rhs) { \
76 return rhs & lhs; \
78 inline void operator&(Type::flag_type lhs, Type::mask_type rhs)ALLOW_UNUSED; \
79 inline void operator&(Type::flag_type lhs, Type::mask_type rhs) {} \
80 inline Type operator|(Type::flag_type lhs, Type::flag_type rhs) \
82 inline Type operator|(Type::flag_type lhs, Type::flag_type rhs) { \
[all...]
/external/clang/test/CodeGen/
H A Darm64_neon_high_half.c6 int16x8_t test_vaddw_high_s8(int16x8_t lhs, int8x16_t rhs) { argument
8 return vaddw_high_s8(lhs, rhs);
11 int32x4_t test_vaddw_high_s16(int32x4_t lhs, int16x8_t rhs) { argument
13 return vaddw_high_s16(lhs, rhs);
16 int64x2_t test_vaddw_high_s32(int64x2_t lhs, int32x4_t rhs) { argument
18 return vaddw_high_s32(lhs, rhs);
21 uint16x8_t test_vaddw_high_u8(uint16x8_t lhs, uint8x16_t rhs) { argument
23 return vaddw_high_u8(lhs, rhs);
26 uint32x4_t test_vaddw_high_u16(uint32x4_t lhs, uint16x8_t rhs) { argument
28 return vaddw_high_u16(lhs, rhs);
31 test_vaddw_high_u32(uint64x2_t lhs, uint32x4_t rhs) argument
36 test_vsubw_high_s8(int16x8_t lhs, int8x16_t rhs) argument
41 test_vsubw_high_s16(int32x4_t lhs, int16x8_t rhs) argument
46 test_vsubw_high_s32(int64x2_t lhs, int32x4_t rhs) argument
51 test_vsubw_high_u8(uint16x8_t lhs, uint8x16_t rhs) argument
56 test_vsubw_high_u16(uint32x4_t lhs, uint16x8_t rhs) argument
61 test_vsubw_high_u32(uint64x2_t lhs, uint32x4_t rhs) argument
66 test_vabdl_high_s8(int8x16_t lhs, int8x16_t rhs) argument
71 test_vabdl_high_s16(int16x8_t lhs, int16x8_t rhs) argument
76 test_vabdl_high_s32(int32x4_t lhs, int32x4_t rhs) argument
81 test_vabdl_high_u8(uint8x16_t lhs, uint8x16_t rhs) argument
86 test_vabdl_high_u16(uint16x8_t lhs, uint16x8_t rhs) argument
91 test_vabdl_high_u32(uint32x4_t lhs, uint32x4_t rhs) argument
96 test_vabal_high_s8(int16x8_t accum, int8x16_t lhs, int8x16_t rhs) argument
101 test_vabal_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
106 test_vabal_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
111 test_vabal_high_u8(uint16x8_t accum, uint8x16_t lhs, uint8x16_t rhs) argument
116 test_vabal_high_u16(uint32x4_t accum, uint16x8_t lhs, uint16x8_t rhs) argument
121 test_vabal_high_u32(uint64x2_t accum, uint32x4_t lhs, uint32x4_t rhs) argument
126 test_vqdmlal_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
131 test_vqdmlal_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
136 test_vqdmlsl_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
141 test_vqdmlsl_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
146 test_vqdmull_high_s16(int16x8_t lhs, int16x8_t rhs) argument
151 test_vqdmull_high_s32(int32x4_t lhs, int32x4_t rhs) argument
216 test_vsubl_high_s8(int8x16_t lhs, int8x16_t rhs) argument
221 test_vsubl_high_s16(int16x8_t lhs, int16x8_t rhs) argument
226 test_vsubl_high_s32(int32x4_t lhs, int32x4_t rhs) argument
231 test_vsubl_high_u8(uint8x16_t lhs, uint8x16_t rhs) argument
236 test_vsubl_high_u16(uint16x8_t lhs, uint16x8_t rhs) argument
241 test_vsubl_high_u32(uint32x4_t lhs, uint32x4_t rhs) argument
396 test_vaddhn_high_s16(int8x8_t lowpart, int16x8_t lhs, int16x8_t rhs) argument
401 test_vaddhn_high_s32(int16x4_t lowpart, int32x4_t lhs, int32x4_t rhs) argument
406 test_vaddhn_high_s64(int32x2_t lowpart, int64x2_t lhs, int64x2_t rhs) argument
411 test_vaddhn_high_u16(uint8x8_t lowpart, uint16x8_t lhs, uint16x8_t rhs) argument
416 test_vaddhn_high_u32(uint16x4_t lowpart, uint32x4_t lhs, uint32x4_t rhs) argument
421 test_vaddhn_high_u64(uint32x2_t lowpart, uint64x2_t lhs, uint64x2_t rhs) argument
426 test_vraddhn_high_s16(int8x8_t lowpart, int16x8_t lhs, int16x8_t rhs) argument
431 test_vraddhn_high_s32(int16x4_t lowpart, int32x4_t lhs, int32x4_t rhs) argument
436 test_vraddhn_high_s64(int32x2_t lowpart, int64x2_t lhs, int64x2_t rhs) argument
441 test_vraddhn_high_u16(uint8x8_t lowpart, uint16x8_t lhs, uint16x8_t rhs) argument
446 test_vraddhn_high_u32(uint16x4_t lowpart, uint32x4_t lhs, uint32x4_t rhs) argument
451 test_vraddhn_high_u64(uint32x2_t lowpart, uint64x2_t lhs, uint64x2_t rhs) argument
[all...]
/external/libcxx/test/numerics/complex.number/complex.ops/
H A Dcomplex_minus_complex.pass.cpp14 // operator-(const complex<T>& lhs, const complex<T>& rhs);
21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs - rhs == x);
32 std::complex<T> rhs(3.5, 4.5);
34 test(lhs, rhs, x);
38 std::complex<T> rhs(-3.5, 4.5);
40 test(lhs, rhs, x);
H A Dcomplex_plus_complex.pass.cpp14 // operator+(const complex<T>& lhs, const complex<T>& rhs);
21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs + rhs == x);
32 std::complex<T> rhs(3.5, 4.5);
34 test(lhs, rhs, x);
38 std::complex<T> rhs(-3.5, 4.5);
40 test(lhs, rhs, x);
/external/lldb/include/lldb/Core/
H A DUserID.h96 operator () (const UserID& rhs) const { return m_uid == rhs.GetID(); }
113 inline bool operator== (const UserID& lhs, const UserID& rhs) argument
115 return lhs.GetID() == rhs.GetID();
118 inline bool operator!= (const UserID& lhs, const UserID& rhs) argument
120 return lhs.GetID() != rhs.GetID();
H A DConstString.h53 /// Copies the string value in \a rhs into this object.
55 /// @param[in] rhs
58 ConstString (const ConstString& rhs) : argument
59 m_string (rhs.m_string)
127 /// the C string value in \a rhs, \b false otherwise.
129 bool operator()(const char* lhs, const char* rhs) const
131 return lhs == rhs;
159 /// Assigns the string in this object with the value from \a rhs.
161 /// @param[in] rhs
168 operator = (const ConstString& rhs) argument
[all...]
/external/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h33 ClangNamespaceDecl (const ClangNamespaceDecl &rhs) : argument
34 m_ast (rhs.m_ast),
35 m_namespace_decl (rhs.m_namespace_decl)
40 operator = (const ClangNamespaceDecl &rhs) argument
42 m_ast = rhs.m_ast;
43 m_namespace_decl = rhs.m_namespace_decl;
/external/chromium_org/base/i18n/
H A Dstring_compare.cc17 const string16& rhs) {
22 static_cast<const UChar*>(rhs.c_str()), static_cast<int>(rhs.length()),
15 CompareString16WithCollator(const icu::Collator* collator, const string16& lhs, const string16& rhs) argument
/external/chromium_org/ui/gfx/geometry/
H A Dpoint.h59 inline bool operator==(const Point& lhs, const Point& rhs) { argument
60 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
63 inline bool operator!=(const Point& lhs, const Point& rhs) { argument
64 return !(lhs == rhs);
67 inline Point operator+(const Point& lhs, const Vector2d& rhs) { argument
69 result += rhs;
73 inline Point operator-(const Point& lhs, const Vector2d& rhs) { argument
75 result -= rhs;
79 inline Vector2d operator-(const Point& lhs, const Point& rhs) { argument
[all...]
H A Dpoint_f.h36 inline bool operator==(const PointF& lhs, const PointF& rhs) { argument
37 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
40 inline bool operator!=(const PointF& lhs, const PointF& rhs) { argument
41 return !(lhs == rhs);
44 inline PointF operator+(const PointF& lhs, const Vector2dF& rhs) { argument
46 result += rhs;
50 inline PointF operator-(const PointF& lhs, const Vector2dF& rhs) { argument
52 result -= rhs;
56 inline Vector2dF operator-(const PointF& lhs, const PointF& rhs) { argument
[all...]
/external/eigen/doc/snippets/
H A DJacobiSVD_basic.cpp7 Vector3f rhs(1, 0, 0);
8 cout << "Now consider this rhs vector:" << endl << rhs << endl;
9 cout << "A least-squares solution of m*x = rhs is:" << endl << svd.solve(rhs) << endl;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcursor.js52 * @param {!cvox.Cursor} rhs The cursor to compare against.
55 cvox.Cursor.prototype.equals = function(rhs) {
56 return this.node == rhs.node &&
57 this.index == rhs.index &&
58 this.text == rhs.text;

Completed in 588 milliseconds

1234567891011>>