OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectionManager
(Results
26 - 40
of
40
) sorted by null
1
2
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlineDropListener.java
152
final
SelectionManager
selectionManager
= canvas.getSelectionManager();
153
selectionManager
.setOutlineSelection(added);
SelectionOverlay.java
65
* @param
selectionManager
The {@link
SelectionManager
} holding the
71
public void paint(
SelectionManager
selectionManager
, GCWrapper gcWrapper,
77
List<SelectionItem> selections =
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
...]
LayoutCanvas.java
202
private final
SelectionManager
mSelectionManager = new
SelectionManager
(this);
699
* Returns the {@link
SelectionManager
} associated with this canvas.
701
* @return The {@link
SelectionManager
} holding the selection for this
704
public
SelectionManager
getSelectionManager() {
[
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
...]
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
...]
OutlinePage.java
[
all
...]
LayoutActionBar.java
120
SelectionManager
selectionManager
= canvas.getSelectionManager();
121
List<SelectionItem> selections =
selectionManager
.getSelections();
/external/autotest/frontend/client/src/autotest/afe/
HostDetailView.java
17
import autotest.common.table.
SelectionManager
;
158
private
SelectionManager
selectionManager
;
356
selectionManager
= tableDecorator.addSelectionManager(false);
357
jobsTable.setWidgetFactory(
selectionManager
);
367
selectionManager
.deselectAll();
461
if (
selectionManager
.isEmpty())
467
Set<JSONObject> selectedEntries =
selectionManager
.getSelectedObjects();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
ActionModeHandler.java
69
private final
SelectionManager
mSelectionManager;
126
AbstractGalleryActivity activity,
SelectionManager
selectionManager
) {
128
mSelectionManager = Utils.checkNotNull(
selectionManager
);
129
mMenuExecutor = new MenuExecutor(activity,
selectionManager
);
217
// For clients who call
SelectionManager
.selectAll() directly, we need to ensure the
MenuExecutor.java
67
private final
SelectionManager
mSelectionManager;
92
AbstractGalleryActivity activity,
SelectionManager
selectionManager
) {
94
mSelectionManager = Utils.checkNotNull(
selectionManager
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java
49
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionManager
;
163
SelectionManager
manager = editor.getCanvasControl().getSelectionManager();
402
final
SelectionManager
selectionManager
= layoutCanvas.getSelectionManager();
403
selectionManager
.select(nodes);
410
selectionManager
.select(nodes);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPage.java
71
import com.android.gallery3d.ui.
SelectionManager
;
127
private
SelectionManager
mSelectionManager;
257
mSelectionManager = new
SelectionManager
(mActivity, false);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java
40
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionManager
;
588
SelectionManager
manager =
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java
43
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionManager
;
395
SelectionManager
manager = canvas.getSelectionManager();
Completed in 490 milliseconds
1
2