HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 176 - 200 of 537) sorted by null

1 2 3 4 5 6 78 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAttributeNode.java 40 * Represents an XML attribute that can be modified by the XML editor's user interface.
84 * Sets whether the attribute is dirty and also notifies the editor some part's dirty
97 AndroidXmlEditor editor = getUiParent().getEditor(); local
98 if (editor != null) {
99 editor.editorDirtyStateChanged();
164 * Called by the user interface when the editor is saved or its state changed
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetPropertyFix.java 122 IEditorPart editor = AdtUtils.getActiveEditor(); local
123 if (editor instanceof AndroidXmlEditor) {
124 ((AndroidXmlEditor) editor).invokeContentAssist(-1);
131 // Because we need to show the editor with text selected
LintListDialog.java 71 @Nullable IEditorPart editor) {
74 mEditor = editor;
120 mShowButton.setToolTipText("Opens the editor to reveal the XML with the issue");
219 IEditorPart editor = AdtUtils.getActiveEditor(); local
220 if (editor instanceof AndroidXmlEditor) {
221 IStructuredDocument doc = ((AndroidXmlEditor) editor).getStructuredDocument();
227 AdtPlugin.log(IStatus.ERROR, "Did not find associated editor to apply fix");
248 AndroidXmlEditor editor = (AndroidXmlEditor) mEditor; local
249 AddSuppressAttribute fix = AddSuppressAttribute.createFixForAll(editor,
252 IStructuredDocument document = editor.getStructuredDocument()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 42 IEditorPart editor = IDE.openEditor(page, file); local
43 assertTrue(editor instanceof AndroidXmlEditor);
44 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringAssistantTest.java 78 IEditorPart editor = IDE.openEditor(page, file); local
79 assertTrue(editor instanceof AndroidXmlEditor);
80 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 2 sed \- a Stream EDitor
16 \*(Sd is a stream editor.
17 A stream editor is used to perform basic text
20 While in some ways similar to an editor which
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcManager.java 139 SharedPreferences.Editor editor = prefs.edit(); local
144 editor.putBoolean(NativeNfcSecureElement.PREF_SE_WIRED, false);
145 editor.apply();
157 SharedPreferences.Editor editor = prefs.edit(); local
159 editor.putBoolean(NativeNfcSecureElement.PREF_SE_WIRED, false);
160 editor.apply();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlProperty.java 39 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
57 @NonNull PropertyEditor editor,
61 super(editor);
226 CommonXmlEditor editor = getXmlEditor();
227 if (editor == null) {
232 editor.wrapUndoEditXmlModel(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 160 AndroidXmlEditor editor = ui_node.getEditor(); local
161 if (editor != null) {
162 IEditorInput editorInput = editor.getEditorInput();
184 AndroidXmlEditor editor = ui_node.getEditor(); local
185 if (editor != null) {
186 IEditorInput editorInput = editor.getEditorInput();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 117 IEditorPart editor = IDE.openEditor(page, file); local
118 assertTrue(editor instanceof AndroidXmlEditor);
119 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
227 IEditorPart editor = IDE.openEditor(page, file); local
228 assertTrue(editor instanceof AndroidXmlEditor);
229 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
  /tools/motodev/src/plugins/preflighting.samplecheckers.findviewbyid.ui/src/com/motorolamobility/preflighting/samplechecker/findviewbyid/quickfix/
FindViewByIdMarkerResolution.java 99 IEditorPart editor = openEditor(iCompilationUnit); local
169 ((AbstractTextEditor) editor).getDocumentProvider().getDocument(
170 editor.getEditorInput());
204 IEditorPart editor = null; local
207 editor = JavaUI.openInEditor(iCompilationUnit);
214 return editor;
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DropDownEditor.java 17 package com.android.notificationstudio.editor;
29 import com.android.notificationstudio.editor.Editors.Editor;
32 public class DropDownEditor implements Editor {
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 618 SharedPreferences.Editor editor = prefs.edit(); local
619 editor.putLong (Stopwatches.PREF_START_TIME, mStartTime);
620 editor.putLong (Stopwatches.PREF_ACCUM_TIME, mAccumulatedTime);
621 editor.putInt (Stopwatches.PREF_STATE, mState);
625 editor.putInt (Stopwatches.PREF_LAP_NUM, laps.length);
628 editor.putLong (key, laps[i]);
633 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, mStartTime-mAccumulatedTime);
634 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1);
635 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
CharacterPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
DoubleObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
DoublePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
FloatPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
IntegerObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
IntegerPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
LongObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
LongPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
ShortObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
ShortPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
24 * @coverage core.model.property.editor
StringArrayPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
25 * @coverage core.model.property.editor
StringListPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
90 // * Configures this editor externally.

Completed in 260 milliseconds

1 2 3 4 5 6 78 91011>>