Home
last modified time | relevance | path

Searched refs:_Right (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTString.h65 CPVRTString(const CPVRTString& _Right, size_t _Roff = 0, size_t _Count = npos);
762 CPVRTString& operator+=(const CPVRTString& _Right);
783 CPVRTString& operator=(const CPVRTString& _Right);
805 friend CPVRTString operator+ (const CPVRTString& _Left, const CPVRTString& _Right);
813 friend CPVRTString operator+ (const CPVRTString& _Left, const char* _Right);
821 friend CPVRTString operator+ (const CPVRTString& _Left, const char _Right);
829 friend CPVRTString operator+ (const char* _Left, const CPVRTString& _Right);
838 friend CPVRTString operator+ (const char _Left, const CPVRTString& _Right);
DPVRTString.cpp66 CPVRTString::CPVRTString(const CPVRTString& _Right, size_t _Roff, size_t _Count) : in CPVRTString() argument
69 assign(_Right, _Roff, _Count); in CPVRTString()
1672 CPVRTString& CPVRTString::operator+=(const CPVRTString& _Right) in operator +=() argument
1674 return append(_Right); in operator +=()
1705 CPVRTString& CPVRTString::operator=(const CPVRTString& _Right) in operator =() argument
1707 return assign(_Right); in operator =()
1739 CPVRTString operator+ (const CPVRTString& _Left, const CPVRTString& _Right) in operator +() argument
1741 return CPVRTString(_Left).append(_Right); in operator +()
1751 CPVRTString operator+ (const CPVRTString& _Left, const char* _Right) in operator +() argument
1753 return CPVRTString(_Left).append(_Right); in operator +()
[all …]
DPVRTStringHash.cpp37 CPVRTStringHash::CPVRTStringHash(const CPVRTString& _Right) : in CPVRTStringHash() argument
38 m_String(_Right) in CPVRTStringHash()
DPVRTStringHash.h34 explicit CPVRTStringHash(const CPVRTString& _Right);
/external/libcxx/test/support/
Dcoroutine_types.h43 bool operator==(iterator const &_Right) const {
44 return _Done == _Right._Done;
47 bool operator!=(iterator const &_Right) const { return !(*this == _Right); }