Home | History | Annotate | Download | only in rendering

Lines Matching defs:startOfWord

116     int32_t startOfWord = textBreakFirst(boundary);
117 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
118 if (startOfWord != 0) // Ignore first char of previous string
119 data[startOfWord - 1] = characters[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]);
120 for (int i = startOfWord + 1; i < endOfWord; i++)