Lines Matching defs:index
137 // returns character at "index" position
139 char operator[](int index) const;
143 char& operator[](int index);
160 int index;
165 index = temp.pos("%");
166 if(index == last_char)
168 temp = substr(index,last_char);
171 temp = to_string(substr(0,index+f_len-1).c_str(),t);
172 return (*this) = temp + substr(index+f_len,last_char);
181 // remove "count" characters from "index"
183 sc_string_old& remove(unsigned index, unsigned length);
185 // insert "substring" before "index"
187 sc_string_old& insert(const sc_string_old& sub_string, unsigned index);
189 // returns true if the character at byte index in this string matches
192 bool is_delimiter(const sc_string_old& str, unsigned index)const;
209 void set( int index, char c );