Lines Matching refs:Simstr

43 Simstr::Simstr(const char * str_)  in Simstr()  function in Simstr
59 Simstr::Simstr( const char * anybytes, in Simstr() function in Simstr
83 Simstr::Simstr(const Simstr & S) in Simstr() function in Simstr
90 Simstr & Simstr::operator=(const Simstr & S) in operator =()
104 Simstr::~Simstr() in ~Simstr()
109 Simstr
110 Simstr::operator+(const Simstr & S) const in operator +()
112 Simstr ret = sz; in operator +()
117 Simstr &
118 Simstr::operator+=(const Simstr & S) in operator +=()
128 Simstr::operator==(const Simstr & S) const in operator ==()
132 Simstr::operator!=(const Simstr & S) const in operator !=()
136 Simstr::operator<(const Simstr & S) const in operator <()
140 Simstr::operator>(const Simstr & S) const in operator >()
144 Simstr::operator<=(const Simstr & S) const in operator <=()
148 Simstr::operator>=(const Simstr & S) const in operator >=()
159 Simstr::push_front(char c) in push_front()
172 Simstr::push_back(char c) in push_back()
186 Simstr::push_front(const Simstr & S) in push_front()
199 Simstr::push_back(const Simstr & S) in push_back()
215 Simstr::remove(int pos, int anzahl) in remove()
233 Simstr::remove_trailing_blanks() in remove_trailing_blanks()
245 Simstr::pos_first(char c) const in pos_first()
256 Simstr::pos_last(char c) const in pos_last()
267 Simstr::is_no_text() const in is_no_text()
282 Simstr::replace_all(char oldCh, char newCh) in replace_all()
290 Simstr
291 operator+(const char * str, const Simstr & S) in operator +()
293 Simstr ret = S; in operator +()
298 Simstr
299 operator+(const Simstr & S, const char * str) in operator +()
301 Simstr ret = S; in operator +()
306 Simstr
307 operator+(char c, const Simstr & S) in operator +()
309 Simstr ret = S; in operator +()
314 Simstr
315 operator+(const Simstr & S, char c) in operator +()
317 Simstr ret = S; in operator +()
325 operator==(const Simstr & S, const char * str) in operator ==()
331 operator!=(const Simstr & S, const char * str) in operator !=()
337 operator<(const Simstr & S, const char * str) in operator <()
343 operator>(const Simstr & S, const char * str) in operator >()
349 operator<=(const Simstr & S, const char * str) in operator <=()
355 operator>=(const Simstr & S, const char * str) in operator >=()
361 operator==(const char * str, const Simstr & S) in operator ==()
367 operator!=(const char * str, const Simstr & S) in operator !=()
373 operator<(const char * str, const Simstr & S) in operator <()
379 operator>(const char * str, const Simstr & S) in operator >()
385 operator<=(const char * str, const Simstr & S) in operator <=()
391 operator>=(const char * str, const Simstr & S) in operator >=()