Home
last modified time | relevance | path

Searched refs:Reference (Results 1 – 15 of 15) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DShowWithinMenu.java6 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
36 final List<Reference> includedBy = finder.getIncludedBy(file); in addMenuItems()
39 for (final Reference reference : includedBy) { in addMenuItems()
58 private Reference mReference;
60 public ShowWithinAction(String title, Reference reference) { in ShowWithinAction()
67 Reference within = mEditorDelegate.getGraphicalEditor().getIncludedWithin(); in isChecked()
DIncludeFinder.java167 public List<Reference> getIncludedBy(IResource included) { in getIncludedBy()
179 List<Reference> references = new ArrayList<Reference>(result.size()); in getIncludedBy()
181 references.add(new Reference(mProject, s)); in getIncludedBy()
922 public static class Reference { class in IncludeFinder
934 private Reference(IProject project, String id) { in Reference() method in IncludeFinder.Reference
1018 Reference other = (Reference) obj; in equals()
1041 public static Reference create(IFile file) { in create()
1042 return new Reference(file.getProject(), getMapKey(file)); in create()
1066 Reference self = Reference.create(layout); in getInvalidIncludes()
1069 LinkedList<Reference> queue = new LinkedList<Reference>(); in getInvalidIncludes()
[all …]
DRenderService.java50 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
107 private Reference mIncludedWithin;
392 public RenderService setIncludedWithin(Reference includedWithin) { in setIncludedWithin()
DRenderPreview.java49 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
171 private @Nullable Reference mIncludedWithin;
481 public void setIncludedWithin(Reference includedWithin) { in setIncludedWithin()
DLayoutCanvas.java34 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
1172 Reference next = Reference.create(graphicalEditor.getEditedFile()); in showInclude()
DGraphicalEditorPart.java83 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
276 private Reference mIncludedWithin;
891 public Reference getIncludedWithin() { in getIncludedWithin()
1156 mIncludedWithin = (Reference) mEditedFile.getSessionProperty(NAME_INCLUDE); in openFile()
2823 public void showIn(Reference includeWithin) { in showIn()
DRenderPreviewManager.java49 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
1048 final List<Reference> includedBy = finder.getIncludedBy(chooser.getEditedFile()); in addIncludedInPreviews()
1056 for (final Reference reference : includedBy) { in addIncludedInPreviews()
DOutlinePage.java48 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
936 Reference includedWithin = mGraphicalEditorPart.getIncludedWithin(); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletionvalues1-expected-completion23.txt3 android:textSelectHandle : Reference to a drawable that will be used to display a text selection a…
4 android:textSelectHandleLeft : Reference to a drawable that will be used to display a text selectio…
5 android:textSelectHandleRight : Reference to a drawable that will be used to display a text selecti…
Dcompletion1-expected-completion39.txt67 android:editorExtras : Reference to an "input-extras" XML resource containing additional data to s…
68 android:textSelectHandleLeft : Reference to a drawable that will be used to display a text selectio…
69 android:textSelectHandleRight : Reference to a drawable that will be used to display a text selecti…
70 android:textSelectHandle : Reference to a drawable that will be used to display a text selection a…
76 android:textCursorDrawable : Reference to a drawable that will be drawn under the insertion cursor…
Dcompletion5-expected-completion40.txt67 android:editorExtras : Reference to an "input-extras" XML resource containing additional data to s…
68 android:textSelectHandleLeft : Reference to a drawable that will be used to display a text selectio…
69 android:textSelectHandleRight : Reference to a drawable that will be used to display a text selecti…
70 android:textSelectHandle : Reference to a drawable that will be used to display a text selection a…
76 android:textCursorDrawable : Reference to a drawable that will be drawn under the insertion cursor…
Dcompletionvalues1-expected-completion32.txt79 android:editorExtras : Reference to an "input-extras" XML resource containing additional data to s…
84 android:entries : Reference to an array resource that will populate the Spinner. [reference]
201 android:popupPromptView : Reference to a layout to use for displaying a prompt in the dropdown for…
277 android:textCursorDrawable : Reference to a drawable that will be drawn under the insertion cursor…
289 android:textSelectHandle : Reference to a drawable that will be used to display a text selection a…
290 android:textSelectHandleLeft : Reference to a drawable that will be used to display a text selectio…
291 android:textSelectHandleRight : Reference to a drawable that will be used to display a text selecti…
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfigurationClient.java22 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
108 Reference getIncludedWithin(); in getIncludedWithin()
DConfigurationMenuListener.java36 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
186 final List<Reference> includedBy = finder.getIncludedBy(chooser.getEditedFile()); in show()
DConfigurationChooser.java57 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
1972 Reference includedWithin = mClient.getIncludedWithin(); in getPreferredActivity()