OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:startOfWord
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleUnits.cpp
629
VisiblePosition
startOfWord
(const VisiblePosition &c, EWordSide side)
635
// at paragraph end, the
startofWord
is the current position
709
return p.isNotNull() && p ==
startOfWord
(p, RightWordIfOnBoundary);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp
124
int32_t
startOfWord
= boundary->first();
125
for (endOfWord = boundary->next(); endOfWord != TextBreakDone;
startOfWord
= endOfWord, endOfWord = boundary->next()) {
126
if (
startOfWord
) // Ignore first char of previous string
127
result.append(input[
startOfWord
- 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[
startOfWord
]));
128
for (int i =
startOfWord
+ 1; i < endOfWord; i++)
[
all
...]
Completed in 636 milliseconds