final LineText lineText = (LineText) lineContent;
final CharSequence text = lineText.inlineText();
if (text.length() < 1) {
return -1;
}
if (lineText.inlineIsFauxSmallCaps()) {
/* If this is small caps, break the text up into pieces,
* starting a new piece when the case of the text changes. */
int subsetStart = start;
this.setInLowerCase(isLowerCase(text.charAt(start)));
for (int i = start; i < end; i++) {