Lines Matching refs:stringIndex
5968 ssize_t stringIndex = 0; in _FilterDisallowedChars() local
5974 while (stringIndex < runArray->runs[i].offset in _FilterDisallowedChars()
5975 && stringIndex < length) { in _FilterDisallowedChars()
5977 reinterpret_cast<void*>(text[stringIndex]))) { in _FilterDisallowedChars()
5978 memmove(text + stringIndex, text + stringIndex + 1, in _FilterDisallowedChars()
5979 length - stringIndex - 1); in _FilterDisallowedChars()
5984 stringIndex++; in _FilterDisallowedChars()
5989 while (stringIndex < length) { in _FilterDisallowedChars()
5991 reinterpret_cast<void*>(text[stringIndex]))) { in _FilterDisallowedChars()
5992 memmove(text + stringIndex, text + stringIndex + 1, in _FilterDisallowedChars()
5993 length - stringIndex - 1); in _FilterDisallowedChars()
5996 stringIndex++; in _FilterDisallowedChars()