HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 451 - 475 of 696) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 290 GraphicalEditorPart editor = delegate.getGraphicalEditor(); local
291 ResourceChooser dlg = ResourceChooser.create(editor, ResourceType.LAYOUT)
RenderPreview.java 507 GraphicalEditorPart editor = mCanvas.getEditorDelegate().getGraphicalEditor(); local
508 if (editor.getReadyLayoutLib(false /*displayError*/) == null) {
520 RenderService renderService = RenderService.create(editor, configuration, resolver);
527 IAndroidTarget target = editor.getRenderingTarget();
545 model.setUnknownDescriptorProvider(editor.getModel().getUnknownDescriptorProvider());
556 renderService.setModel(editor.getModel());
558 RenderLogger log = editor.createRenderLogger(getDisplayName());
    [all...]
LayoutActionBar.java 69 * Toolbar shown at the top of the layout editor, which adds a number of context-sensitive
90 * @param editor the associated layout editor
92 public LayoutActionBar(Composite parent, int style, GraphicalEditorPart editor) {
94 mEditor = editor;
561 CommonXmlEditor editor = mEditor.getEditorDelegate().getEditor();
562 IFile file = editor.getInputFile();
564 EclipseLintClient.showErrors(getShell(), file, editor);
573 * Updates the lint indicator state in the given layout editor
SelectionManager.java 82 * The {@link SelectionManager} manages the selection in the canvas editor.
830 LayoutEditorDelegate editor = mCanvas.getEditorDelegate(); local
831 if (editor != null) {
836 LayoutActionBar layoutActionBar = editor.getGraphicalEditor().getLayoutActionBar();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 89 ChangeViewRefactoring(List<Element> selectedElements, LayoutEditorDelegate editor) {
90 super(selectedElements, editor);
WrapInWizard.java 56 public WrapInWizard(WrapInRefactoring ref, LayoutEditorDelegate editor) {
57 super(ref, editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 88 * As most other parts of the android manifest editor, this assumes the
213 // project and the current editor's site.
223 AdtPlugin.log(IStatus.ERROR, "Failed to get editor site for UiPackageAttribute"); //$NON-NLS-1$
247 AndroidXmlEditor editor = uiNode.getEditor(); local
248 IEditorInput input = editor.getEditorInput();
250 // from the file editor we can get the IFile object, and from it, the IProject.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 78 * As most other parts of the android manifest editor, this assumes the
146 AndroidXmlEditor editor = uiNode.getEditor(); local
147 AndroidTargetData data = editor.getTargetData();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 62 * @param editor associated layout editor
70 public MarginChooser(Shell parent, GraphicalEditorPart editor, AndroidTargetData targetData, String all,
74 mEditor = editor;
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /packages/apps/Dialer/java/com/android/dialer/database/
DialerDatabaseHelper.java 335 final SharedPreferences.Editor editor = databaseLastUpdateSharedPref.edit(); local
336 editor.putLong(LAST_UPDATED_MILLIS, 0);
337 editor.apply();
861 final SharedPreferences.Editor editor = databaseLastUpdateSharedPref.edit(); local
862 editor.putLong(LAST_UPDATED_MILLIS, currentMillis);
863 editor.apply();
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 531 SharedPreferences.Editor editor = sp.edit(); local
532 editor.putLong(APN_CONF_CHECKSUM, checksum);
533 editor.apply();
2163 SharedPreferences.Editor editor = spPrefFile.edit(); local
2197 SharedPreferences.Editor editor = sp.edit(); local
2208 SharedPreferences.Editor editor = sp.edit(); local
2271 SharedPreferences.Editor editor = sp.edit(); local
2288 SharedPreferences.Editor editor = sp.edit(); local
2344 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector;
56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
193 PropertyEditor editor = XmlPropertyEditor.INSTANCE; local
198 editor = BooleanXmlPropertyEditor.INSTANCE;
204 // since the editing experience with the enum property editor is
205 // more limited than the text editor plus enum completer anyway
211 XmlProperty property = new XmlProperty(editor, this, node, descriptor);
714 "This dialog is shown instead of an inline text editor as a\n" +
    [all...]
XmlPropertyEditor.java 73 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
74 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
75 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
90 * Special property editor used for the {@link XmlProperty} instances which handles
392 GraphicalEditorPart editor = xmlProperty.getGraphicalEditor(); local
393 if (editor != null) {
394 LayoutCanvas canvas = editor.getCanvasControl();
518 // Fallback: Just use a plain string editor
  /prebuilts/gradle-plugin/net/sf/proguard/proguard-base/5.3.3/
proguard-base-5.3.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.2/
proguard-base-5.3.2.jar 
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 386 SharedPreferences.Editor editor = prefs.edit(); local
387 editor.putBoolean(key, value);
388 editor.apply();
393 SharedPreferences.Editor editor = prefs.edit(); local
394 editor.putInt(key, value);
395 editor.apply();
447 SharedPreferences.Editor editor = prefs.edit() local
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 604 for (IEditorPart editor : editors) {
605 if (editor instanceof StructuredTextEditor) {
606 StructuredTextEditor ste = (StructuredTextEditor) editor;
607 part.setActiveEditor(editor);
710 * Returns the current configuration, if the associated UI editor has been initialized
716 IEditorPart editor = getEditor(); local
717 if (editor != null) {
718 LayoutEditorDelegate delegate = LayoutEditorDelegate.fromEditor(editor);
735 IEditorInput editorInput = editor.getEditorInput();
752 for (IEditorReference reference : editor.getSite().getPage().getEditorReferences())
773 IEditorPart editor = getEditor(); local
799 IEditorPart editor = getEditor(); local
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
AnalogComplicationConfigRecyclerViewAdapter.java 733 SharedPreferences.Editor editor = mSharedPref.edit(); local
734 editor.putBoolean(sharedPreferenceString, newState);
735 editor.apply();
    [all...]
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
AnalogComplicationConfigRecyclerViewAdapter.java 733 SharedPreferences.Editor editor = mSharedPref.edit(); local
734 editor.putBoolean(sharedPreferenceString, newState);
735 editor.apply();
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterService.java 2025 SharedPreferences.Editor editor = pref.edit(); local
2051 SharedPreferences.Editor editor = pref.edit(); local
2077 SharedPreferences.Editor editor = pref.edit(); local
    [all...]

Completed in 734 milliseconds

<<11121314151617181920>>