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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
blocks-seq.c 5 // RUN: grep '%6 = call i32 (...)\* @rhs()' %t | count 1
8 // RUN: grep '%10 = call i32 (...)\* @rhs()' %t | count 1
12 int rhs();
16 i = rhs();
17 i += rhs();
  /abi/cpp/src/
type_info.cc 47 type_info::operator==(const type_info& rhs) const
52 return strcmp(this->__type_name, rhs.__type_name) == 0;
54 return this == &rhs;
59 type_info::operator!=(const type_info& rhs) const
61 return !this->operator==(rhs);
65 type_info::before(const type_info& rhs) const
70 return strcmp(this->__type_name, rhs.__type_name) < 0;
72 return this < &rhs;
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 47 type_info::operator==(const type_info& rhs) const
52 return strcmp(this->__type_name, rhs.__type_name) == 0;
54 return this == &rhs;
59 type_info::operator!=(const type_info& rhs) const
61 return !this->operator==(rhs);
65 type_info::before(const type_info& rhs) const
70 return strcmp(this->__type_name, rhs.__type_name) < 0;
72 return this < &rhs;
  /external/oprofile/libpp/
symbol_functors.cpp 15 symbol_entry const & rhs) const
17 if (lhs.image_name != rhs.image_name)
18 return lhs.image_name < rhs.image_name;
20 if (lhs.app_name != rhs.app_name)
21 return lhs.app_name < rhs.app_name;
23 if (lhs.name != rhs.name)
24 return lhs.name < rhs.name;
26 if (lhs.sample.vma != rhs.sample.vma)
27 return lhs.sample.vma < rhs.sample.vma;
29 return lhs.size < rhs.size
    [all...]
symbol_functors.h 20 sample_entry const * rhs) const {
21 return lhs->file_loc < rhs->file_loc;
25 symbol_entry const * rhs) const {
26 return lhs->sample.file_loc < rhs->sample.file_loc;
35 symbol_entry const & rhs) const;
filename_spec.cpp 35 bool filename_spec::match(filename_spec const & rhs,
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.lib_image.empty())
    [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 37 Region(const Region& rhs);
38 explicit Region(const Rect& rhs);
42 Region& operator = (const Region& rhs);
57 Region& orSelf(const Rect& rhs);
58 Region& andSelf(const Rect& rhs);
59 Region& subtractSelf(const Rect& rhs);
62 Region& orSelf(const Region& rhs);
63 Region& andSelf(const Region& rhs);
64 Region& subtractSelf(const Region& rhs);
67 const Region merge(const Rect& rhs) const
    [all...]
Rect.h 63 inline void set(const Rect& rhs) {
64 operator = (rhs);
102 inline bool operator == (const Rect& rhs) const {
103 return (left == rhs.left) && (top == rhs.top) &&
104 (right == rhs.right) && (bottom == rhs.bottom);
107 inline bool operator != (const Rect& rhs) const {
108 return !operator == (rhs);
113 bool operator < (const Rect& rhs) const
    [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/webrtc/src/system_wrappers/interface/
atomic32_wrapper.h 31 Atomic32Wrapper& operator=(const Atomic32Wrapper& rhs);
32 Atomic32Wrapper& operator=(WebRtc_Word32 rhs);
34 WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
35 WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
44 Atomic32Wrapper operator+(const Atomic32Wrapper& rhs);
45 Atomic32Wrapper operator-(const Atomic32Wrapper& rhs);
  /frameworks/base/libs/hwui/utils/
Compare.h 30 if (a < rhs.a) return true; \
31 if (a == rhs.a)
37 if (a < rhs.a) return true; \
38 if (a == rhs.a)
  /external/webrtc/src/system_wrappers/source/
atomic32.cc 48 Atomic32Wrapper& Atomic32Wrapper::operator=(const Atomic32Wrapper& rhs)
50 if(this == &rhs)
54 _impl = rhs._impl;
58 Atomic32Wrapper& Atomic32Wrapper::operator=(WebRtc_Word32 rhs)
60 _impl = rhs;
64 WebRtc_Word32 Atomic32Wrapper::operator+=(WebRtc_Word32 rhs)
66 return _impl += rhs;
69 WebRtc_Word32 Atomic32Wrapper::operator-=(WebRtc_Word32 rhs)
71 return _impl -= rhs;
atomic32_linux.h 32 inline Atomic32Impl& operator=(const Atomic32Impl& rhs);
33 inline Atomic32Impl& operator=(WebRtc_Word32 rhs);
34 inline WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
35 inline WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
81 inline Atomic32Impl& Atomic32Impl::operator=(const Atomic32Impl& rhs)
83 *_value = *rhs._value;
87 inline Atomic32Impl& Atomic32Impl::operator=(WebRtc_Word32 rhs)
89 *_value = rhs;
93 inline WebRtc_Word32 Atomic32Impl::operator+=(WebRtc_Word32 rhs)
95 WebRtc_Word32 returnValue = __sync_fetch_and_add(_value,rhs);
    [all...]
atomic32_mac.h 31 inline Atomic32Impl& operator=(const Atomic32Impl& rhs);
32 inline Atomic32Impl& operator=(WebRtc_Word32 rhs);
33 inline WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
34 inline WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
79 inline Atomic32Impl& Atomic32Impl::operator=(const Atomic32Impl& rhs)
81 *_value = *rhs._value;
85 inline Atomic32Impl& Atomic32Impl::operator=(WebRtc_Word32 rhs)
87 *_value = rhs;
91 inline WebRtc_Word32 Atomic32Impl::operator+=(WebRtc_Word32 rhs)
93 return OSAtomicAdd32Barrier(rhs,
    [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...]
ios_pos_types.h 73 operator==(const fpos& lhs, const fpos& rhs)
74 { return streamoff(lhs) == streamoff(rhs); }
77 operator!=(const fpos& lhs, const fpos& rhs)
78 { return streamoff(lhs) != streamoff(rhs); }
  /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...]
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_vector4.h 43 #define VECTOR4_OP_UNARY(op,rhs) { \
44 x op rhs.x; \
45 y op rhs.y; \
46 z op rhs.z; \
47 w op rhs.w; }
49 #define VECTOR4_OP_UNARY_SCALAR(op,rhs) { \
50 x op rhs; \
51 y op rhs; \
52 z op rhs; \
53 w op rhs; }
    [all...]
  /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;
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
SmartPtr.h 40 SmartPtr<T,threadSafe>(const SmartPtr<T,false>& rhs) {
47 m_pRefCount = rhs.m_pRefCount;
48 m_ptr = rhs.m_ptr;
52 SmartPtr<T,threadSafe>(SmartPtr<T,true>& rhs) {
59 if (rhs.m_lock) mutex_lock(rhs.m_lock);
60 m_pRefCount = rhs.m_pRefCount;
61 m_ptr = rhs.m_ptr;
63 if (rhs.m_lock) mutex_unlock(rhs.m_lock)
    [all...]
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
SmartPtr.h 40 SmartPtr<T,threadSafe>(const SmartPtr<T,false>& rhs) {
47 m_pRefCount = rhs.m_pRefCount;
48 m_ptr = rhs.m_ptr;
52 SmartPtr<T,threadSafe>(SmartPtr<T,true>& rhs) {
59 if (rhs.m_lock) mutex_lock(rhs.m_lock);
60 m_pRefCount = rhs.m_pRefCount;
61 m_ptr = rhs.m_ptr;
63 if (rhs.m_lock) mutex_unlock(rhs.m_lock)
    [all...]
  /external/v8/src/
smart-pointer.h 51 inline SmartPointer(const SmartPointer<T>& rhs) : p(rhs.p) {
52 const_cast<SmartPointer<T>&>(rhs).p = NULL;
89 inline SmartPointer& operator=(const SmartPointer<T>& rhs) {
91 T* tmp = rhs.p; // swap to handle self-assignment
92 const_cast<SmartPointer<T>&>(rhs).p = NULL;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
CollatorDefault.cpp 54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const
58 while (l < lmin && *lhs == *rhs) {
60 rhs++;
65 return (*lhs > *rhs) ? Greater : Less;

Completed in 1343 milliseconds

1 2 3 4 5 6 7 8 91011>>