Searched refs:_Str (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTStringHash.cpp | 70 CPVRTStringHash& CPVRTStringHash::append(const CPVRTString& _Str) in append() argument 72 m_String.append(_Str); in append() 96 CPVRTStringHash& CPVRTStringHash::assign(const CPVRTString& _Str) in assign() argument 98 m_String.assign(_Str); in assign() 109 bool CPVRTStringHash::operator==(const CPVRTStringHash& _Str) const in operator ==() 111 return (m_Hash == _Str.Hash()); in operator ==() 133 bool CPVRTStringHash::operator==(const char* _Str) const in operator ==() 135 return (m_String.compare(_Str) == 0); in operator ==() 146 bool CPVRTStringHash::operator==(const CPVRTString& _Str) const in operator ==() 148 return (m_String.compare(_Str) == 0); in operator ==() [all …]
|
D | PVRTString.cpp | 178 CPVRTString& CPVRTString::append(const CPVRTString& _Str) in append() argument 180 return append(_Str.m_pString,_Str.m_Size); in append() 191 CPVRTString& CPVRTString::append(const CPVRTString& _Str, size_t _Off, size_t _Count) in append() argument 193 if (_Str.length() < _Off + _Count) in append() 195 int i32NewCount = (signed)(_Str.length())-(signed)_Off; in append() 205 return append(_Str.m_pString+_Off,_Count); in append() 295 CPVRTString& CPVRTString::assign(const CPVRTString& _Str) in assign() argument 297 return assign(_Str.m_pString, _Str.m_Size); in assign() 308 CPVRTString& CPVRTString::assign(const CPVRTString& _Str, size_t _Off, size_t _Count) in assign() argument 312 _Count = _Str.m_Size - _Off; in assign() [all …]
|
D | PVRTString.h | 110 CPVRTString& append(const CPVRTString& _Str); 119 CPVRTString& append(const CPVRTString& _Str, size_t _Off, size_t _Count); 151 CPVRTString& assign(const CPVRTString& _Str); 160 CPVRTString& assign(const CPVRTString& _Str, size_t _Off, size_t _Count=npos); 200 int compare(const CPVRTString& _Str) const; 209 int compare(size_t _Pos1, size_t _Num1, const CPVRTString& _Str) const; 220 int compare(size_t _Pos1, size_t _Num1, const CPVRTString& _Str, size_t _Off, size_t _Count) const; 253 bool operator<(const CPVRTString & _Str) const; 260 bool operator==(const CPVRTString& _Str) const; 274 bool operator!=(const CPVRTString& _Str) const; [all …]
|
D | PVRTStringHash.h | 53 CPVRTStringHash& append(const CPVRTString& _Str); 67 CPVRTStringHash& assign(const CPVRTString& _Str); 75 bool operator==(const CPVRTStringHash& _Str) const; 84 bool operator==(const char* _Str) const; 93 bool operator==(const CPVRTString& _Str) const; 108 bool operator!=(const CPVRTStringHash& _Str) const;
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/ |
D | MCAsmLexer.h | 66 AsmToken(TokenKind _Kind, StringRef _Str, int64_t _IntVal = 0) 67 : Kind(_Kind), Str(_Str), IntVal(_IntVal) {} in Kind()
|
/external/libcxx/include/ |
D | filesystem | 575 using _Str = basic_string<_ECharT, _Traits, _Alloc>; 577 static _ECharT const* __range_begin(_Str const& __s) { return __s.data(); } 578 static _ECharT const* __range_end(_Str const& __s) { 581 static _ECharT __first_or_null(_Str const& __s) { 591 using _Str = basic_string_view<_ECharT, _Traits>; 593 static _ECharT const* __range_begin(_Str const& __s) { return __s.data(); } 594 static _ECharT const* __range_end(_Str const& __s) { 597 static _ECharT __first_or_null(_Str const& __s) { 990 using _Str = basic_string<_ECharT, _Traits, _Allocator>; 991 _Str __s(__a);
|
/external/python/cpython2/Demo/parser/ |
D | unparse.py | 312 def _Str(self, tree): member in Unparser
|
/external/python/cpython3/Tools/parser/ |
D | unparse.py | 335 def _Str(self, tree): member in Unparser
|