Home | History | Annotate | Download | only in Common

Lines Matching refs:pos

495     int pos  = 0;

496 while (pos < Length())
498 pos = Find(oldChar, pos);
499 if (pos < 0)
501 _chars[pos] = newChar;
502 pos++;
516 int pos = 0;
517 while (pos < _length)
519 pos = Find(oldString, pos);
520 if (pos < 0)
522 Delete(pos, oldStringLength);
523 Insert(pos, newString);
524 pos += newStringLength;