Lines Matching refs:Simstr

38 Simstr::Simstr(const char * s_)  in Simstr()  function in Simstr
54 Simstr::Simstr(const char * anybytes, int nrOfBytes) in Simstr() function in Simstr
74 Simstr::Simstr(char c, int anzahl) in Simstr() function in Simstr
91 Simstr::Simstr( const char * anybytes, in Simstr() function in Simstr
115 Simstr::Simstr(const Simstr & S) in Simstr() function in Simstr
122 Simstr & Simstr::operator=(const Simstr & S) in operator =()
136 Simstr::~Simstr() in ~Simstr()
142 Simstr::ch(int n) in ch()
152 const Simstr &
153 Simstr::null_() in null_()
155 static Simstr aNull_; in null_()
160 Simstr
161 Simstr::operator+(const Simstr & S) const in operator +()
163 Simstr ret = sz; in operator +()
168 Simstr &
169 Simstr::operator+=(const Simstr & S) in operator +=()
175 Simstr &
176 Simstr::operator+=(const char * s_) in operator +=()
178 Simstr a(s_); in operator +=()
187 Simstr::operator==(const Simstr & S) const in operator ==()
191 Simstr::operator!=(const Simstr & S) const in operator !=()
195 Simstr::operator<(const Simstr & S) const in operator <()
199 Simstr::operator>(const Simstr & S) const in operator >()
203 Simstr::operator<=(const Simstr & S) const in operator <=()
207 Simstr::operator>=(const Simstr & S) const in operator >=()
219 Simstr::get(int n) const { return (n >= len || n < 0) ? 0 : sz[n]; } in get()
222 Simstr::get_front() const { return sz[0]; } in get_front()
225 Simstr::get_back() const { return len ? sz[len-1] : 0; } in get_back()
227 Simstr
228 Simstr::get(int startPos, int anzahl) const in get()
235 Simstr ret(' ',anz); in get()
240 Simstr
241 Simstr::get_front(int anzahl) const in get_front()
247 Simstr ret(' ',anz); in get_front()
252 Simstr
253 Simstr::get_back(int anzahl) const in get_back()
260 Simstr ret(' ',anz); in get_back()
265 Simstr
266 Simstr::get_first_token(char c) const in get_first_token()
275 Simstr
276 Simstr::get_last_token(char c) const in get_last_token()
290 Simstr::insert(int pos, char c) in insert()
307 Simstr::push_front(char c) in push_front()
320 Simstr::push_back(char c) in push_back()
334 Simstr::insert(int pos, const Simstr & S) in insert()
351 Simstr::push_front(const Simstr & S) in push_front()
364 Simstr::push_back(const Simstr & S) in push_back()
380 Simstr::remove(int pos, int anzahl) in remove()
398 Simstr::remove_trailing_blanks() in remove_trailing_blanks()
408 Simstr::pop_front(int anzahl) in pop_front()
424 Simstr::pop_back(int anzahl) in pop_back()
442 Simstr::rem_back_from(int removeStartPos) in rem_back_from()
449 Simstr::remove_all(char c) in remove_all()
468 Simstr::remove_all(const Simstr & S) in remove_all()
476 Simstr::strip(char c) in strip()
511 Simstr::empty() in empty()
522 Simstr
523 Simstr::take_first_token(char c) in take_first_token()
525 Simstr ret; in take_first_token()
544 Simstr
545 Simstr::take_last_token(char c) in take_last_token()
547 Simstr ret; in take_last_token()
571 Simstr::pos_first(char c) const in pos_first()
582 Simstr::pos_first_after( char c, in pos_first_after()
597 Simstr::pos_last(char c) const in pos_last()
608 Simstr::pos_first(const Simstr & S) const in pos_first()
618 Simstr::pos_last(const Simstr & S) const in pos_last()
620 Simstr vgl; in pos_last()
635 Simstr::count(char c) const in count()
645 Simstr::is_no_text() const in is_no_text()
660 Simstr::replace(int pos, char c) in replace()
669 Simstr::replace(int startPos, int anzahl, const Simstr & S) in replace()
688 Simstr::replace_all(char oldCh, char newCh) in replace_all()
696 Simstr::replace_all(const Simstr & oldS, const Simstr & newS) in replace_all()
698 Simstr vgl; in replace_all()
714 Simstr::to_lower() in to_lower()
723 Simstr
724 operator+(const char * str, const Simstr & S) in operator +()
726 Simstr ret = S; in operator +()
731 Simstr
732 operator+(const Simstr & S, const char * str) in operator +()
734 Simstr ret = S; in operator +()
739 Simstr
740 operator+(char c, const Simstr & S) in operator +()
742 Simstr ret = S; in operator +()
747 Simstr
748 operator+(const Simstr & S, char c) in operator +()
750 Simstr ret = S; in operator +()
758 operator==(const Simstr & S, const char * str) in operator ==()
764 operator!=(const Simstr & S, const char * str) in operator !=()
770 operator<(const Simstr & S, const char * str) in operator <()
776 operator>(const Simstr & S, const char * str) in operator >()
782 operator<=(const Simstr & S, const char * str) in operator <=()
788 operator>=(const Simstr & S, const char * str) in operator >=()
794 operator==(const char * str, const Simstr & S) in operator ==()
800 operator!=(const char * str, const Simstr & S) in operator !=()
806 operator<(const char * str, const Simstr & S) in operator <()
812 operator>(const char * str, const Simstr & S) in operator >()
818 operator<=(const char * str, const Simstr & S) in operator <=()
824 operator>=(const char * str, const Simstr & S) in operator >=()