HomeSort by relevance Sort by last modified time
    Searched defs:selectionManager (Results 1 - 18 of 18) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlineDragListener.java 64 SelectionManager selectionManager = canvas.getSelectionManager();
70 mDragSelection.add(selectionManager.createSelection(viewInfo));
73 SelectionManager.sanitize(mDragSelection);
OutlineDropListener.java 152 final SelectionManager selectionManager = canvas.getSelectionManager();
153 selectionManager.setOutlineSelection(added);
FragmentMenu.java 78 SelectionManager selectionManager = mCanvas.getSelectionManager();
79 List<SelectionItem> selections = selectionManager.getSelections();
218 SelectionManager selectionManager = mCanvas.getSelectionManager();
219 for (SelectionItem item : selectionManager.getSelections()) {
239 SelectionManager selectionManager = mCanvas.getSelectionManager();
241 for (SelectionItem item : selectionManager.getSnapshot()) {
ListViewTypeMenu.java 188 SelectionManager selectionManager = mCanvas.getSelectionManager();
189 for (SelectionItem item : selectionManager.getSelections()) {
206 SelectionManager selectionManager = mCanvas.getSelectionManager();
208 for (SelectionItem item : selectionManager.getSnapshot()) {
PlayAnimationMenu.java 89 SelectionManager selectionManager = mCanvas.getSelectionManager();
90 List<SelectionItem> selection = selectionManager.getSelections();
144 SelectionManager selectionManager = mCanvas.getSelectionManager();
145 List<SelectionItem> selection = selectionManager.getSelections();
MoveGesture.java 431 final SelectionManager selectionManager = mCanvas.getSelectionManager();
435 if (!selectionManager.selectDropped(nodes, null /* indices */)) {
444 selectionManager.selectDropped(nodes, indices);
793 TreePath treePath = SelectionManager.getTreePath(mCurrentView);
    [all...]
OutlinePage.java     [all...]
GestureManager.java 315 SelectionManager selectionManager = mCanvas.getSelectionManager();
317 if (!selectionManager.isEmpty()) {
320 selectionManager.findHandle(controlPoint);
333 for (SelectionItem item : selectionManager.getSelections()) {
723 SelectionManager selectionManager = mCanvas.getSelectionManager();
728 selectionManager.findHandle(controlPoint);
745 List<SelectionItem> selections = selectionManager.getSelections();
764 primary = selectionManager.selectSingle(vi)
    [all...]
LayoutActionBar.java 120 SelectionManager selectionManager = canvas.getSelectionManager();
121 List<SelectionItem> selections = selectionManager.getSelections();
SelectionManager.java 82 * The {@link SelectionManager} manages the selection in the canvas editor.
94 public class SelectionManager implements ISelectionProvider {
119 * Constructs a new {@link SelectionManager} associated with the given layout canvas.
121 * @param layoutCanvas The layout canvas to create a {@link SelectionManager} for.
123 public SelectionManager(LayoutCanvas layoutCanvas) {
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
TableDecorator.java 28 private SelectionManager selectionManager;
72 public SelectionManager addSelectionManager(boolean selectOnlyOne) {
73 selectionManager = new DynamicTableSelectionManager(dataTable, selectOnlyOne);
75 return selectionManager;
79 assert selectionManager != null;
82 selectionPanel.setListener(selectionManager);
91 assert selectionManager != null;
93 actionsPanel.setSelectionListener(selectionManager);
124 assert selectionManager != null
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostListView.java 6 import autotest.common.table.SelectionManager;
40 protected SelectionManager selectionManager;
49 selectionManager = hostTableDecorator.addSelectionManager(false);
50 table.setWidgetFactory(selectionManager);
101 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
156 if (selectionManager.isEmpty())
JobListView.java 9 import autotest.common.table.SelectionManager;
60 private SelectionManager selectionManager;
121 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
173 selectionManager = tableDecorator.addSelectionManager(false);
174 jobTable.setWidgetFactory(selectionManager);
264 if (selectionManager.isEmpty())
HostDetailView.java 17 import autotest.common.table.SelectionManager;
158 private SelectionManager selectionManager;
355 selectionManager = tableDecorator.addSelectionManager(false);
356 jobsTable.setWidgetFactory(selectionManager);
366 selectionManager.deselectAll();
451 if (selectionManager.isEmpty())
457 Set<JSONObject> selectedEntries = selectionManager.getSelectedObjects();
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetView.java 80 private SpreadsheetSelectionManager selectionManager =
216 selectionManager.clearSelection();
344 if (!selectionManager.isEmpty()) {
345 testSet = getTestSet(selectionManager.getSelectedCells());
354 selectionManager.toggleSelected(cellInfo);
536 if (selectionManager.isEmpty()) {
539 tests = getTestSet(selectionManager.getSelectedCells());
552 selectionManager.selectAll();
556 selectionManager.clearSelection();
TableView.java 9 import autotest.common.table.SelectionManager;
101 private SelectionManager selectionManager;
205 selectionManager = tableDecorator.addSelectionManager(false);
210 selectionManager = new SelectionManager(table, false);
333 if (selectionManager.getSelectedObjects().size() > 0) {
334 testSet = getTestSet(selectionManager.getSelectedObjects());
342 selectionManager.toggleSelected(row);
409 selectionManager.refreshSelection()
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
BandController.java 55 * and {@link SelectionManager}. This class is responsible for rendering the band select
56 * overlay and selecting overlaid items via SelectionManager.
65 private final SelectionManager mSelectionManager;
81 SelectionManager selectionManager,
84 this(new RuntimeSelectionEnvironment(view), adapter, selectionManager,
92 SelectionManager selectionManager,
97 selectionManager.bindContoller(this);
101 mSelectionManager = selectionManager;
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/files/
MenuManagerTest.java 35 import com.android.documentsui.selection.SelectionManager;
113 private SelectionManager selectionManager;
171 selectionManager = SelectionManagers.createTestInstance(TestData.create(1));
172 selectionManager.toggleSelection("0");
180 selectionManager,

Completed in 489 milliseconds