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

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
CursorController.java 28 void beforeStartUpdatingPosition(HandleView handle);
33 void updatePosition(HandleView handle, int x, int y);
SelectionHandleController.java 25 private HandleView mStartHandle, mEndHandle;
82 public void updatePosition(HandleView handle, int x, int y) {
87 public void beforeStartUpdatingPosition(HandleView handle) {
88 HandleView fixedHandle = (handle == mStartHandle) ? mEndHandle : mStartHandle;
186 public HandleView getStartHandleViewForTest() {
191 public HandleView getEndHandleViewForTest() {
197 mStartHandle = new HandleView(this,
198 startDir == TEXT_DIRECTION_RTL ? HandleView.RIGHT : HandleView.LEFT, mParent,
202 mEndHandle = new HandleView(this
    [all...]
InsertionHandleController.java 29 private HandleView mHandle;
127 public HandleView getHandleViewForTest() {
152 public void beforeStartUpdatingPosition(HandleView handle) {}
155 public void updatePosition(HandleView handle, int x, int y) {
184 mHandle = new HandleView(this, HandleView.CENTER, mParent, mPositionObserver);
192 setHandleVisibility(HandleView.VISIBLE);
HandleView.java 32 * While a HandleView is logically a child of some other view, it does not exist in that View's
36 public class HandleView extends View {
97 HandleView(CursorController controller, int pos, View parent,
  /packages/apps/Launcher2/src/com/android/launcher2/
HandleView.java 29 public class HandleView extends ImageView {
35 public HandleView(Context context) {
39 public HandleView(Context context, AttributeSet attrs) {
43 public HandleView(Context context, AttributeSet attrs, int defStyle) {
46 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.HandleView, defStyle, 0);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HandleView.java 32 public class HandleView extends ImageView {
51 public void onMoveBegin(HandleView view);
60 public boolean onMove(HandleView view, int left, int delta);
69 public void onMoveEnd(HandleView view, int left, int delta);
72 public HandleView(Context context, AttributeSet attrs, int defStyle) {
81 public HandleView(Context context, AttributeSet attrs) {
85 public HandleView(Context context) {
OverlayLinearLayout.java 71 private HandleView mLeftHandle, mRightHandle;
317 mLeftHandle = (HandleView)inflate(getContext(), R.layout.left_handle_view, null);
320 mRightHandle = (HandleView)inflate(getContext(), R.layout.right_handle_view, null);
864 mRightHandle.setListener(new HandleView.MoveListener() {
870 public void onMoveBegin(HandleView view) {
876 public boolean onMove(HandleView view, int left, int delta) {
    [all...]
MediaLinearLayout.java 99 private HandleView mLeftHandle, mRightHandle;
521 mLeftHandle = (HandleView)inflate(getContext(), R.layout.left_handle_view, null);
524 mRightHandle = (HandleView)inflate(getContext(), R.layout.right_handle_view, null);
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
SelectionHandleTest.java 159 HandleView startHandle = getStartHandle();
160 HandleView endHandle = getEndHandle();
188 private void dragHandleAndCheckSelectionChange(HandleView handle, int dragToX, int dragToY,
231 private void assertWaitForHandleViewStopped(final HandleView handle) throws Throwable {
275 private static Point getHandlePosition(final HandleView handle) {
284 private static boolean isHandleNear(HandleView handle, int x, int y) {
290 private void assertWaitForHandleNear(final HandleView handle, final int x, final int y)
301 final HandleView startHandle = getStartHandle();
302 final HandleView endHandle = getEndHandle();
324 private void dragHandleTo(final HandleView handle, final int dragToX, final int dragToY
    [all...]
InsertionHandleTest.java 113 HandleView handle = ihc.getHandleViewForTest();
156 HandleView handle = ihc.getHandleViewForTest();
187 HandleView handle = ihc.getHandleViewForTest();
255 HandleView handle = ihc.getHandleViewForTest();
288 HandleView handle = ihc.getHandleViewForTest();
314 final HandleView handle = ihc.getHandleViewForTest();
323 private static boolean isHandleNear(HandleView handle, int x, int y) {
330 final HandleView handle = ihc.getHandleViewForTest();
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewCore.java 60 import org.chromium.content.browser.input.HandleView;
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]

Completed in 935 milliseconds