HomeSort by relevance Sort by last modified time
    Searched full:rhs (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencore/oscl/oscl/osclutil/src/
oscl_str_ptr_len.h 91 StrPtrLen(const StrPtrLen& rhs)
92 : ptr(rhs.ptr), len(rhs.len)
116 c_bool isCIEquivalentTo(const StrPtrLen& rhs) const
118 if (len != rhs.len)
123 return isCIPrefixOf(rhs);
126 c_bool isCIPrefixOf(const StrPtrLen& rhs) const
128 if (len > rhs.len)
135 if (ptr[ii] != rhs.ptr[ii])
138 (OSCL_ASCII_CASE_MAGIC_BIT != ((ptr[ii] ^ rhs.ptr[ii]) | OSCL_ASCII_CASE_MAGIC_BIT))
    [all...]
  /frameworks/base/include/ui/
Point.h 39 inline bool operator == (const Point& rhs) const {
40 return (x == rhs.x) && (y == rhs.y);
42 inline bool operator != (const Point& rhs) const {
43 return !operator == (rhs);
52 bool operator < (const Point& rhs) const {
53 return y<rhs.y || (y==rhs.y && x<rhs.x);
62 inline Point& operator += (const Point& rhs) {
    [all...]
Region.h 39 Region(const Region& rhs);
40 explicit Region(const Rect& rhs);
44 Region& operator = (const Region& rhs);
59 Region& orSelf(const Rect& rhs);
60 Region& andSelf(const Rect& rhs);
61 Region& subtractSelf(const Rect& rhs);
64 Region& orSelf(const Region& rhs);
65 Region& andSelf(const Region& rhs);
66 Region& subtractSelf(const Region& rhs);
69 const Region merge(const Rect& rhs) const
    [all...]
Rect.h 66 inline void set(const Rect& rhs) {
67 operator = (rhs);
105 inline bool operator == (const Rect& rhs) const {
106 return (left == rhs.left) && (top == rhs.top) &&
107 (right == rhs.right) && (bottom == rhs.bottom);
110 inline bool operator != (const Rect& rhs) const {
111 return !operator == (rhs);
116 bool operator < (const Rect& rhs) const
    [all...]
  /frameworks/base/libs/ui/
Rect.cpp 36 bool Rect::operator < (const Rect& rhs) const
38 if (top<rhs.top) {
40 } else if (top == rhs.top) {
41 if (left < rhs.left) {
43 } else if (left == rhs.left) {
44 if (bottom<rhs.bottom) {
46 } else if (bottom == rhs.bottom) {
47 if (right<rhs.right) {
74 const Rect Rect::operator + (const Point& rhs) const
76 const Rect result(left+rhs.x, top+rhs.y, right+rhs.x, bottom+rhs.y)
    [all...]
Region.cpp 56 Region::Region(const Region& rhs)
57 : mBounds(rhs.mBounds), mStorage(rhs.mStorage)
61 Region::Region(const Rect& rhs)
62 : mBounds(rhs)
76 Region& Region::operator = (const Region& rhs)
79 validate(rhs, "operator=");
81 mBounds = rhs.mBounds;
82 mStorage = rhs.mStorage;
139 Region& Region::orSelf(const Region& rhs) {
    [all...]
  /external/stlport/test/eh/
SortClass.h 39 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...]
TestClass.h 37 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.value() )
    [all...]
  /external/opencore/oscl/unit_test/test/src/
point.h 46 point(const t_point & rhs): x(rhs.x), y(rhs.y)
54 bool operator == (const t_point & rhs) const
56 return ((x == rhs.x) && (y == rhs.y));
59 bool operator != (const t_point & rhs) const
61 return !((*this) == rhs);
64 t_point & operator += (const t_point & rhs)
66 x += rhs.x
    [all...]
  /external/icu4c/test/intltest/
icusvtst.h 38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
43 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs);
44 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs);
45 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs);
47 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs);
48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
49 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs);
  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /frameworks/base/include/private/ui/
RegionHelper.h 41 static const uint32_t RHS = 0x6; // 0b110
43 op_nand = LHS & ~RHS,
44 op_and = LHS & RHS,
45 op_or = LHS | RHS,
46 op_xor = LHS ^ RHS
54 inline region(const region& rhs)
55 : rects(rhs.rects), count(rhs.count), dx(rhs.dx), dy(rhs.dy) {
157 region rhs; member in class:android::region_operator::Spanner
214 region rhs; member in class:android::region_operator::SpannerInner
    [all...]
  /external/webkit/WebCore/xml/
XPathPredicate.cpp 70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs)
74 addSubExpression(rhs);
80 Value rhs(subExpr(1)->evaluate());
83 double rightVal = rhs.toNumber();
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs)
105 addSubExpression(rhs);
108 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const
112 if (rhs.isNodeSet()) {
116 const NodeSet& rhsSet = rhs.toNodeSet();
123 if (rhs.isNumber())
235 Value rhs = subExpr(1)->evaluate(); local
    [all...]
  /external/astl/include/
char_traits.h 58 static void assign(char& lhs, const char& rhs) { lhs = rhs; }
60 static bool eq(const char& lhs, const char& rhs) { return lhs == rhs; }
62 static bool lt(const char& lhs, const char& rhs) { return lhs < rhs; }
64 static int compare(const char* lhs, const char* rhs, size_t n)
65 { return std::memcmp(lhs, rhs, n); }
72 static char* move(char* lhs, const char* rhs, size_t n)
73 { return static_cast<char*>(std::memmove(lhs, rhs, n));
    [all...]
  /external/opencore/oscl/unit_test/src/
test_problem.cpp 31 test_problem::test_problem(const test_problem& rhs) :
32 m_line_number(rhs.m_line_number),
33 m_filename(rhs.m_filename),
34 m_message(rhs.m_message)
40 test_problem::operator=(const test_problem & rhs)
42 m_line_number = rhs.m_line_number;
43 m_filename = rhs.m_filename;
44 m_message = rhs.m_message;
  /frameworks/base/include/utils/
CallStack.h 37 CallStack(const CallStack& rhs);
40 CallStack& operator = (const CallStack& rhs);
42 bool operator == (const CallStack& rhs) const;
43 bool operator != (const CallStack& rhs) const;
44 bool operator < (const CallStack& rhs) const;
45 bool operator >= (const CallStack& rhs) const;
46 bool operator > (const CallStack& rhs) const;
47 bool operator <= (const CallStack& rhs) const;
  /frameworks/base/libs/rs/scriptc/
rs_graphics.rsh 7 extern float3 float3Add(float3 lhs, float3 rhs);
8 extern float3 float3Sub(float3 lhs, float3 rhs);
9 extern float3 float3Cross(float3 lhs, float3 rhs);
10 extern float float3Dot(float3 lhs, float3 rhs);
13 extern float4 float4Add(float4 lhs, float4 rhs);
14 extern float4 float4Sub(float4 lhs, float4 rhs);
15 extern float4 float4Cross(float4 lhs, float4 rhs);
16 extern float float4Dot(float4 lhs, float4 rhs);
  /frameworks/base/libs/utils/
CallStack.cpp 215 CallStack::CallStack(const CallStack& rhs)
216 : mCount(rhs.mCount)
219 memcpy(mStack, rhs.mStack, mCount*sizeof(void*));
227 CallStack& CallStack::operator = (const CallStack& rhs)
229 mCount = rhs.mCount;
231 memcpy(mStack, rhs.mStack, mCount*sizeof(void*));
236 bool CallStack::operator == (const CallStack& rhs) const {
237 if (mCount != rhs.mCount)
239 return !mCount || (memcmp(mStack, rhs.mStack, mCount*sizeof(void*)) == 0);
242 bool CallStack::operator != (const CallStack& rhs) const
    [all...]
  /frameworks/base/tools/aapt/
SourcePos.cpp 22 bool operator<(const ErrorPos& rhs) const;
23 bool operator==(const ErrorPos& rhs) const;
24 ErrorPos& operator=(const ErrorPos& rhs);
57 ErrorPos::operator<(const ErrorPos& rhs) const
59 if (this->file < rhs.file) return true;
60 if (this->file == rhs.file) {
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
63 if (this->error < rhs.error) return true;
70 ErrorPos::operator==(const ErrorPos& rhs) cons
    [all...]
  /frameworks/base/tools/localize/
SourcePos.cpp 24 bool operator<(const ErrorPos& rhs) const;
25 bool operator==(const ErrorPos& rhs) const;
26 ErrorPos& operator=(const ErrorPos& rhs);
56 ErrorPos::operator<(const ErrorPos& rhs) const
58 if (this->file < rhs.file) return true;
59 if (this->file == rhs.file) {
60 if (this->line < rhs.line) return true;
61 if (this->line == rhs.line) {
62 if (this->error < rhs.error) return true;
69 ErrorPos::operator==(const ErrorPos& rhs) cons
    [all...]
  /bionic/libc/kernel/common/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })

Completed in 282 milliseconds

1 2 3 4 5 6 7 8 91011>>