HomeSort by relevance Sort by last modified time
    Searched refs:HandleId (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebKit/android/nav/
SelectText.h 37 enum HandleId {
47 IntRect& caretRect(HandleId id) { return m_caretRects[id]; }
48 void setCaretRect(HandleId id, const IntRect& rect) { m_caretRects[id] = rect; }
49 IntRect& textRect(HandleId id) { return m_textRects[id]; }
50 void setTextRect(HandleId id, const IntRect& rect) { m_textRects[id] = rect; }
51 int caretLayerId(HandleId id) { return m_caretLayerId[id]; }
52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; }
56 HandleType getHandleType(HandleId id) { return m_handleType[id]; }
57 void setHandleType(HandleId id, HandleType type) { m_handleType[id] = type; }
WebView.cpp 591 int getHandleLayerId(SelectText::HandleId handleId, SkIPoint& cursorPoint,
596 int layerId = selectText->caretLayerId(handleId);
597 IntRect cursorRect = selectText->caretRect(handleId);
598 IntRect textRect = selectText->textRect(handleId);
734 bool isHandleLeft(SelectText::HandleId handleId)
738 return (handleId == SelectText::BaseHandle);
740 return (selectText->getHandleType(handleId) == SelectText::LeftHandle);
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.h 575 void selectText(SelectText::HandleId handleId, int x, int y);
723 SelectText::HandleId handleId, SelectText::HandleType handleType,
    [all...]
WebViewCore.cpp     [all...]

Completed in 1006 milliseconds