OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resultRange
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
PlainTextRange.cpp
74
RefPtrWillBeRawPtr<Range>
resultRange
= scope.document().createRange();
89
resultRange
->setStart(it.startContainer(), 0, ASSERT_NO_EXCEPTION);
90
resultRange
->setEnd(it.startContainer(), 0, ASSERT_NO_EXCEPTION);
91
return
resultRange
.release();
125
resultRange
->setStart(textRunStartPosition.containerNode(), offset + textRunStartPosition.offsetInContainerNode(), IGNORE_EXCEPTION);
128
resultRange
->setStart(textRunStartPosition.containerNode(), textRunStartPosition.offsetInContainerNode(), IGNORE_EXCEPTION);
130
resultRange
->setStart(textRunEndPosition.containerNode(), textRunEndPosition.offsetInContainerNode(), IGNORE_EXCEPTION);
137
resultRange
->setEnd(textRunStartPosition.containerNode(), offset + textRunStartPosition.offsetInContainerNode(), IGNORE_EXCEPTION);
140
resultRange
->setEnd(textRunStartPosition.containerNode(), textRunStartPosition.offsetInContainerNode(), IGNORE_EXCEPTION);
142
resultRange
->setEnd(textRunEndPosition.containerNode(), textRunEndPosition.offsetInContainerNode(), IGNORE_EXC (…)
[
all
...]
Editor.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
TextFinder.cpp
270
RefPtrWillBeRawPtr<Range>
resultRange
= Range::create(*resultStart.document(), resultStart, resultEnd);
271
if (
resultRange
->collapsed()) {
272
//
resultRange
will be collapsed if the matched text spans over multiple TreeScopes.
283
IntRect resultBounds =
resultRange
->boundingBox();
311
addMarker(
resultRange
.get(), foundActiveMatch);
313
m_findMatchesCache.append(FindMatch(
resultRange
.get(), m_lastMatchCount + matchCount));
Completed in 497 milliseconds