Home
last modified time | relevance | path

Searched refs:handleId (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/android/nav/
DWebView.cpp591 int getHandleLayerId(SelectText::HandleId handleId, SkIPoint& cursorPoint, in getHandleLayerId() argument
596 int layerId = selectText->caretLayerId(handleId); in getHandleLayerId()
597 IntRect cursorRect = selectText->caretRect(handleId); in getHandleLayerId()
598 IntRect textRect = selectText->textRect(handleId); in getHandleLayerId()
734 bool isHandleLeft(SelectText::HandleId handleId) in isHandleLeft() argument
738 return (handleId == SelectText::BaseHandle); in isHandleLeft()
740 return (selectText->getHandleType(handleId) == SelectText::LeftHandle); in isHandleLeft()
1338 jint handleId) in nativeIsHandleLeft() argument
1341 return webview->isHandleLeft(static_cast<SelectText::HandleId>(handleId)); in nativeIsHandleLeft()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.h575 void selectText(SelectText::HandleId handleId, int x, int y);
723 SelectText::HandleId handleId, SelectText::HandleType handleType,
DWebViewCore.cpp1558 SelectText::HandleId handleId, SelectText::HandleType handleType, in setSelectionCaretInfo() argument
1564 selectTextContainer->setCaretLayerId(handleId, layerId); in setSelectionCaretInfo()
1576 selectTextContainer->setCaretRect(handleId, caretRect); in setSelectionCaretInfo()
1577 selectTextContainer->setHandleType(handleId, handleType); in setSelectionCaretInfo()
1578 selectTextContainer->setTextRect(handleId, in setSelectionCaretInfo()
1754 void WebViewCore::selectText(SelectText::HandleId handleId, int x, int y) in selectText() argument
1765 bool draggingBase = (handleId == SelectText::BaseHandle); in selectText()
5005 jint handleId, jint x, jint y) in SelectText() argument
5008 viewImpl->selectText(static_cast<SelectText::HandleId>(handleId), x, y); in SelectText()