Home
last modified time | relevance | path

Searched refs:stringWithPrevious (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp110 StringBuffer<UChar> stringWithPrevious(length + 1); in makeCapitalized() local
111 stringWithPrevious[0] = previous == noBreakSpace ? space : previous; in makeCapitalized()
115 stringWithPrevious[i] = space; in makeCapitalized()
117 stringWithPrevious[i] = input[i - 1]; in makeCapitalized()
120 TextBreakIterator* boundary = wordBreakIterator(stringWithPrevious.characters(), length + 1); in makeCapitalized()
131 …nput[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]… in makeCapitalized()