Home
last modified time | relevance | path

Searched refs:HandleId (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/android/nav/
DSelectText.h37 enum HandleId { enum
47 IntRect& caretRect(HandleId id) { return m_caretRects[id]; } in caretRect()
48 void setCaretRect(HandleId id, const IntRect& rect) { m_caretRects[id] = rect; } in setCaretRect()
49 IntRect& textRect(HandleId id) { return m_textRects[id]; } in textRect()
50 void setTextRect(HandleId id, const IntRect& rect) { m_textRects[id] = rect; } in setTextRect()
51 int caretLayerId(HandleId id) { return m_caretLayerId[id]; } in caretLayerId()
52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; } in setCaretLayerId()
56 HandleType getHandleType(HandleId id) { return m_handleType[id]; } in getHandleType()
57 void setHandleType(HandleId id, HandleType type) { m_handleType[id] = type; } in setHandleType()
DWebView.cpp591 int getHandleLayerId(SelectText::HandleId handleId, SkIPoint& cursorPoint, in getHandleLayerId()
734 bool isHandleLeft(SelectText::HandleId handleId) in isHandleLeft()
1301 int layerId = webview->getHandleLayerId((SelectText::HandleId) handleIndex, in nativeGetHandleLayerId()
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.cpp1560 SelectText::HandleId handleId, SelectText::HandleType handleType, in setSelectionCaretInfo()
1756 void WebViewCore::selectText(SelectText::HandleId handleId, int x, int y) in selectText()
5018 viewImpl->selectText(static_cast<SelectText::HandleId>(handleId), x, y); in SelectText()