Searched defs:model (Results 1 - 25 of 34) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiManifestElementNode.java17 package com.android.ide.eclipse.adt.internal.editors.manifest.model;
32 * Each tree viewer used in the application page's parts needs to keep a model representing
35 * Each node acts as an intermediary model between the actual XML model (the real data support)
H A DUiManifestPkgAttrNode.java17 package com.android.ide.eclipse.adt.internal.editors.manifest.model;
H A DUiPackageAttributeNode.java17 package com.android.ide.eclipse.adt.internal.editors.manifest.model;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
H A DDocumentFix.java29 @SuppressWarnings("restriction") // DOM model
36 protected abstract void apply(IDocument document, IStructuredModel model, Node node, argument
50 IStructuredModel model = manager.getModelForEdit((IStructuredDocument) document);
53 apply(document, model, node, start, end);
55 model.releaseFromEdit();
H A DAddPrefixFix.java32 @SuppressWarnings("restriction") // DOM model
49 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DExtractStringFix.java44 @SuppressWarnings("restriction") // DOM model
61 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DLinearLayoutWeightFix.java34 @SuppressWarnings("restriction") // DOM model
51 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DRemoveUselessViewFix.java38 @SuppressWarnings("restriction") // DOM model
55 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DSetScrollViewSizeFix.java33 @SuppressWarnings("restriction") // DOM model
50 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DConvertToDpFix.java38 @SuppressWarnings("restriction") // DOM model
55 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DObsoleteLayoutParamsFix.java30 @SuppressWarnings("restriction") // DOM model
52 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DSetPropertyFix.java40 @SuppressWarnings("restriction") // DOM model
68 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DTypoFix.java33 @SuppressWarnings("restriction") // DOM model
58 protected void apply(IDocument document, IStructuredModel model, Node node, argument
H A DTypographyFix.java35 @SuppressWarnings("restriction") // DOM model
57 protected void apply(IDocument document, IStructuredModel model, Node node, int start, argument
H A DUseCompoundDrawableDetectorFix.java39 @SuppressWarnings("restriction") // DOM model
71 protected void apply(IDocument document, IStructuredModel model, Node node, argument
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
H A DGLFrame.java17 package com.android.ide.eclipse.gltrace.model;
H A DGLTrace.java17 package com.android.ide.eclipse.gltrace.model;
34 /** GLTrace is the in memory model of a OpenGL trace file. */
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
H A DProfilesTableModel.java17 package com.android.hierarchyviewer.ui.model;
H A DPropertiesTableModel.java17 package com.android.hierarchyviewer.ui.model;
H A DViewsTreeModel.java17 package com.android.hierarchyviewer.ui.model;
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/editors/
H A DUiAutomatorViewer.java102 UiAutomatorModel model = null;
105 model = new UiAutomatorModel(modelFile);
112 mView.setModel(model, modelFile, null);
161 ((UiAutomatorViewer) editor).setModel(r.model, r.uiHierarchy, r.screenshot);
169 protected void setModel(UiAutomatorModel model, File modelFile, Image screenshot) { argument
170 mView.setModel(model, modelFile, screenshot);
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiElementNodeTest.java17 package com.android.ide.eclipse.adt.internal.editors.manifest.model;
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
H A DEditableItemConstants.java17 package com.android.notificationstudio.model;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
H A DAaptQuickFix.java71 @SuppressWarnings("restriction") // XML model
224 IStructuredModel model = manager.getExistingModelForEdit(doc);
225 if (model != null) {
227 perform(model);
229 model.releaseFromEdit();
238 IStructuredModel model;
240 model = manager.getModelForEdit(file);
241 if (model != null) {
243 perform(model);
245 model
255 perform(IStructuredModel model) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
H A DRefactoringUtil.java54 * Releases SSE read model; saves SSE model if exists edit model
57 * @param model the SSE model
60 public static void fixModel(IStructuredModel model, IDocument document) { argument
61 if (model != null) {
62 model.releaseFromRead();
64 model = null;
69 model
[all...]

Completed in 1851 milliseconds

12