Searched refs:textRange (Results 1 - 10 of 10) sorted by relevance

/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.cpp217 VisiblePositionRange textRange; local
221 textRange = m_object->visiblePositionRangeForRange(PlainTextRange(previousPos, 1));
224 textRange = m_object->positionOfLeftWord(currentPosition);
225 textRange = m_object->positionOfRightWord(leftWordPosition(textRange.start, true));
228 textRange.start = m_object->previousSentenceStartPosition(currentPosition);
229 textRange = m_object->sentenceForPosition(textRange.start);
230 if (isInRange(currentPosition, textRange))
231 textRange
285 VisiblePositionRange textRange; local
354 VisiblePositionRange textRange; local
462 VisiblePositionRange textRange = m_object->visiblePositionRangeForRange(PlainTextRange(startIndex, endIndex-startIndex)); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSourceFrame.js280 * @param {WebInspector.TextRange} textRange
282 setSelection: function(textRange)
284 this._selectionToSet = textRange;
654 * @param {WebInspector.TextRange} textRange
656 selectionChanged: function(textRange)
658 this._updateSourcePosition(textRange);
659 this.dispatchEventToListeners(WebInspector.SourceFrame.Events.SelectionChanged, textRange);
663 * @param {WebInspector.TextRange} textRange
665 _updateSourcePosition: function(textRange)
667 if (!textRange)
[all...]
H A DTextEditor.js196 * @param {WebInspector.TextRange} textRange
198 setSelection: function(textRange) { },
272 * @param {WebInspector.TextRange} textRange
274 selectionChanged: function(textRange) { },
H A DCodeMirrorTextEditor.js158 * @param {WebInspector.TextRange} textRange
161 copyRange: function(textRange)
163 var pos = this._toPos(textRange);
498 selection: function(textRange)
518 * @param {WebInspector.TextRange} textRange
520 setSelection: function(textRange)
524 this._lastSelection = textRange;
525 var pos = this._toPos(textRange);
H A DAceTextEditor.js351 * @param {WebInspector.TextRange} textRange
353 setSelection: function(textRange)
355 this._aceEditor.scrollToLine(textRange.startLine, true);
H A DTextPrompt.js398 _boxForAnchorAtStart: function(selection, textRange)
403 textRange.insertNode(anchorElement);
H A DDefaultTextEditor.js536 * @param {WebInspector.TextRange} textRange
538 setSelection: function(textRange)
540 this._mainPanel.setSelection(textRange);
1708 * @param {WebInspector.TextRange} textRange
1710 setSelection: function(textRange)
1712 this._lastSelection = textRange;
1714 this._restoreSelection(textRange);
2898 var textRange = this.selection();
2899 if (textRange)
2900 this._lastSelection = textRange;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm2239 PlainTextRange textRange = m_object->selectedTextRange();
2240 if (textRange.isNull())
2242 return [NSValue valueWithRange:NSMakeRange(textRange.start, textRange.length)];
3207 PlainTextRange textRange = PlainTextRange(range.location, range.length);
3208 VisiblePositionRange visiblePosRange = m_object->visiblePositionRangeForRange(textRange);
3246 PassRefPtr<Range> textRange = TextIterator::rangeFromLocationAndLength(document->documentElement(), textIndex, 0);
3247 if (!textRange || !textRange->boundaryPointsValid())
3250 VisiblePosition position(textRange
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceText.cpp838 PlainTextRange textRange(startOffset, endOffset - startOffset);
839 VisiblePositionRange range = coreObject->visiblePositionRangeForRange(textRange);
881 PlainTextRange textRange(offset, 0);
882 VisiblePositionRange range = coreObject->visiblePositionRangeForRange(textRange);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextIterator.cpp1078 RefPtr<Range> textRange = range(); local
1079 if (!textRange)
1082 Node* node = textRange->startContainer();
1088 return node->childNode(textRange->startOffset());

Completed in 157 milliseconds