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

1 2 3 4 56 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyDescriptorEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
StringComboPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
  /external/proguard/src/proguard/classfile/constant/visitor/
ExceptClassConstantFilter.java 24 import proguard.classfile.editor.*;
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 21 package proguard.classfile.editor;
ExceptionInfoAdder.java 21 package proguard.classfile.editor;
InstructionAdder.java 21 package proguard.classfile.editor;
LocalVariableInfoAdder.java 21 package proguard.classfile.editor;
LocalVariableTypeInfoAdder.java 21 package proguard.classfile.editor;
  /external/proguard/src/proguard/obfuscate/
SourceFileRenamer.java 26 import proguard.classfile.editor.ConstantPoolEditor;
  /external/proguard/src/proguard/optimize/
MethodStaticizer.java 25 import proguard.classfile.editor.MethodInvocationFixer;
  /external/proguard/src/proguard/optimize/peephole/
MemberPrivatizer.java 24 import proguard.classfile.editor.MethodInvocationFixer;
  /packages/apps/Launcher2/src/com/android/launcher2/
UninstallShortcutReceiver.java 152 SharedPreferences.Editor editor = sharedPrefs.edit(); local
153 editor.putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY,
157 editor.putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1);
159 editor.commit();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationPage.java 33 import org.eclipse.ui.forms.editor.FormPage;
39 * Page for "Application" settings, part of the AndroidManifest form editor.
49 /** Container editor */
58 public ApplicationPage(ManifestEditor editor) {
59 super(editor, PAGE_ID, "Application"); // tab's label, keep it short
60 mEditor = editor;
OverviewLinksPart.java 41 public OverviewLinksPart(Composite body, FormToolkit toolkit, ManifestEditor editor) {
43 mEditor = editor;
87 AndroidManifestDescriptors manifestDescriptor = editor.getManifestDescriptors();
102 mFormText.addHyperlinkListener(editor.createHyperlinkListener());
OverviewPage.java 33 import org.eclipse.ui.forms.editor.FormPage;
42 * Page for overview settings, part of the AndroidManifest form editor.
53 /** Container editor */
62 public OverviewPage(ManifestEditor editor) {
63 super(editor, PAGE_ID, "Manifest"); // tab's label, user visible, keep it short
64 mEditor = editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesTreePage.java 34 import org.eclipse.ui.forms.editor.FormPage;
39 * Page for instrumentation settings, part of the AndroidManifest form editor.
45 /** Container editor */
48 public ValuesTreePage(CommonXmlEditor editor) {
49 super(editor, PAGE_ID, "Resources"); // tab's label, keep it short
50 mEditor = editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
EditorsPage.java 68 final MyBooleanFieldEditor editor = new MyBooleanFieldEditor( local
73 addField(editor);
82 Button checkbox = editor.getChangeControl(parent);
86 updateCustomFormattingOptions(editor.getBooleanValue());
122 "Automatically format the XML edited by the visual layout editor",
131 "Use a single layout editor for all configuration variations of a layout",
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/editors/
UiAutomatorViewer.java 83 // set the editor part name to be the name of the file.
150 IEditorPart editor = null;
152 editor = IDE.openEditorOnFileStore(page, fileStore);
157 if (!(editor instanceof UiAutomatorViewer)) {
161 ((UiAutomatorViewer) editor).setModel(r.model, r.uiHierarchy, r.screenshot);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebContextMenuClientMac.mm 78 String selectedString = selectionFrame->displayStringModifiedByEncoding(selectionFrame->editor()->selectedText());
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 17 package com.android.notificationstudio.editor;
26 import com.android.notificationstudio.editor.Editors.Editor;
29 public class TextEditor implements Editor {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 29 * Section part for editing the properties in an Export editor.
33 public ExportFieldsPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
34 super(body, toolkit, editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
EnumXmlPropertyEditor.java 24 import org.eclipse.wb.internal.core.model.property.editor.AbstractComboPropertyEditor;
25 import org.eclipse.wb.internal.core.model.property.editor.ITextValuePropertyEditor;
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/
DbNode.java 333 for (final IEditorPart editor : associatedEditors)
335 final IWorkbenchPage page = EclipseUtils.getPageForEditor(editor);
342 page.bringToTop(editor);
346 if (!page.closeEditor(editor, true))
353 if (editor.isDirty())
363 editor.doSave(new NullProgressMonitor());
366 page.closeEditor(editor, false);
371 page.closeEditor(editor, false);
531 * The profile that owns the requested editor
532 * @return The open dirty editor for the given profile, or <code>null</code>
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 194 SharedPreferences.Editor editor = mSharedPrefs.edit(); local
195 editor.putInt(mLeftPrefKey, mLeftKeyCode);
196 editor.putInt(mRightPrefKey, mRightKeyCode);
197 editor.putInt(mJumpPrefKey, mJumpKeyCode);
198 editor.putInt(mAttackPrefKey, mAttackKeyCode);
199 editor.commit();
  /packages/apps/Calendar/src/com/android/calendar/
CalendarUtils.java 328 SharedPreferences.Editor editor = prefs.edit(); local
329 editor.putString(key, value);
330 editor.apply();
343 SharedPreferences.Editor editor = prefs.edit(); local
344 editor.putBoolean(key, value);
345 editor.apply();

Completed in 514 milliseconds

1 2 3 4 56 7 8 91011>>