Searched refs:selectionLength (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTextAreaElement.cpp307 // selectionLength represents the selection length of this text field to be
312 unsigned selectionLength = focused() ? computeLengthForSubmission(plainText(document()->frame()->selection()->selection().toNormalizedRange().get())) : 0; local
313 ASSERT(currentLength >= selectionLength);
314 unsigned baseLength = currentLength - selectionLength;
H A DTextFieldInputType.cpp376 // selectionLength represents the selection length of this text field to be
381 unsigned selectionLength = element()->focused() ? numGraphemeClusters(plainText(element()->document()->frame()->selection()->selection().toNormalizedRange().get())) : 0; local
382 ASSERT(oldLength >= selectionLength);
385 unsigned baseLength = oldLength - selectionLength;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebPageEventHandler.cpp357 int selectionLength = 0; local
362 selectionLength = attr.length;
365 ASSERT(selectionLength >= 0);
370 m_webPageProxy->confirmComposition(commit, selectionStart, selectionLength);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebPage.h457 void confirmComposition(const String& text, int64_t selectionStart, int64_t selectionLength);
H A DWebPage.cpp3945 void WebPage::confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength) argument
3961 RefPtr<Range> selectionRange = TextIterator::rangeFromLocationAndLength(scope, selectionStart, selectionLength);
3962 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());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKView.mm1528 uint64_t selectionLength;
1529 _data->_page->getSelectedRange(selectionStart, selectionLength);
1531 NSRange result = NSMakeRange(selectionStart, selectionLength);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebPageProxy.h382 void confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength);
H A DWebPageProxy.cpp4488 void WebPageProxy::confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength) argument
4493 process()->send(Messages::WebPage::ConfirmComposition(compositionString, selectionStart, selectionLength), m_pageID);

Completed in 211 milliseconds