Searched refs:selectionStart (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorGradientEditingController.js211 var selectionStart = this._angleInput.selectionStart;
213 this._angleInput.selectionStart = selectionStart;
214 this._angleInput.selectionEnd = selectionStart;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCodeMirrorAdditions.js317 var selectionStart = this.getCursor("start");
390 if (selectionStart.line === from.line && selectionStart.ch > from.ch)
391 selectionStart.ch += newLength - previousLength;
397 this.setSelection(selectionStart, selectionEnd);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DWebPageMac.mm572 VisiblePosition selectionStart = selection.visibleStart();
576 VisiblePosition paragraphStart = startOfParagraph(selectionStart);
579 int lengthToSelectionStart = TextIterator::rangeLength(makeRange(paragraphStart, selectionStart).get());
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DDOMHTMLClasses.cpp1261 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::selectionStart( function in class:DOMHTMLInputElement
1266 *start = inputElement->selectionStart();
1349 *start = inputElement->selectionStart();
H A DDOMHTMLClasses.h1992 virtual HRESULT STDMETHODCALLTYPE selectionStart(
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DDOMHTML.idl796 // attribute long selectionStart;
798 HRESULT selectionStart([out, retval] long* start);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebPage.h578 void setComposition(const String& text, const Vector<WebCore::CompositionUnderline>& underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeLength);
579 void confirmComposition(const String& text, int64_t selectionStart, int64_t selectionLength);
H A DWebPage.cpp4264 void WebPage::confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength) argument
4274 if (selectionStart == -1) {
4280 RefPtr<Range> selectionRange = TextIterator::rangeFromLocationAndLength(scope, selectionStart, selectionLength);
4281 ASSERT_WITH_MESSAGE(selectionRange, "Invalid selection: [%lld:%lld] in text of length %d", static_cast<long long>(selectionStart), static_cast<long long>(selectionLength), scope->innerText().length());
4290 void WebPage::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, uint64_t selectionStart, uint64_t selectionLength, uint64_t replacementStart, uint64_t replacementLength) argument
4309 targetFrame->editor().setComposition(text, underlines, selectionStart, selectionStart + selectionLength);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebPageProxy.h464 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
465 void confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength);
H A DWebPageProxy.cpp4997 void WebPageProxy::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd) argument
5003 process().send(Messages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeStart, replacementRangeEnd), m_pageID);
5006 void WebPageProxy::confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength) argument
5011 process().send(Messages::WebPage::ConfirmComposition(compositionString, selectionStart, selectionLength), m_pageID);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm964 VisiblePosition selectionStart = frame->selection().selection().visibleStart();
965 bool wouldFlip = position <= selectionStart;
968 result = selectionStart.next();
971 range = Range::create(*frame->document(), selectionStart, result);
/macosx-10.10.1/vim-55/runtime/autoload/
H A Djavascriptcomplete.vim343 \ 'tabIndex', 'type', 'value', 'selectionStart', 'selectionEnd']
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.js2434 var start = d.input.selectionStart, end = d.input.selectionEnd;
2436 d.input.selectionStart = start;
3174 if (display.input.selectionStart != null) {
3178 display.input.selectionStart = 1; display.input.selectionEnd = extval.length;
3191 if (display.input.selectionStart != null) {
3194 if (display.selForContextMenu == cm.doc.sel && display.input.selectionStart == 0)
7045 selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };
7281 try { return te.selectionStart != te.selectionEnd; }
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.js2434 var start = d.input.selectionStart, end = d.input.selectionEnd;
2436 d.input.selectionStart = start;
3174 if (display.input.selectionStart != null) {
3178 display.input.selectionStart = 1; display.input.selectionEnd = extval.length;
3191 if (display.input.selectionStart != null) {
3194 if (display.selForContextMenu == cm.doc.sel && display.input.selectionStart == 0)
7045 selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };
7281 try { return te.selectionStart != te.selectionEnd; }

Completed in 196 milliseconds