Home | History | Annotate | Download | only in browser

Lines Matching full:state

41         ViewGroup getActionModeView(ActionMode mode, BookmarkDragState state);
42 void actionItemClicked(View v, BookmarkDragState state);
79 BookmarkDragState state = new BookmarkDragState();
80 state.id = id;
81 state.parent = item.getLong(BookmarksLoader.COLUMN_INDEX_PARENT);
82 state.extraState = extraState;
83 mDragState = state;
84 view.startDrag(data, new View.DragShadowBuilder(view), state, 0);
98 BookmarkDragState state = (BookmarkDragState) event.getLocalState();
104 if (id == state.id) {
113 if (parent != state.parent) {
130 BookmarkDragState state = (BookmarkDragState) event.getLocalState();
135 mDragController.actionItemClicked(v, state);