HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 101 - 125 of 542) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BasicParameterInt.java 110 public void setFilterView(FilterView editor) {
111 mEditor = editor;
BasicParameterStyle.java 108 public void setFilterView(FilterView editor) {
109 mEditor = editor;
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
BooleanEditor.java 17 package com.android.notificationstudio.editor;
26 import com.android.notificationstudio.editor.Editors.Editor;
29 public class BooleanEditor implements Editor {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringWizard.java 31 public VisualRefactoringWizard(Refactoring refactoring, LayoutEditorDelegate editor) {
33 mDelegate = editor;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/admin/
PolicySerializationTestActivity.java 28 import android.content.SharedPreferences.Editor;
128 SharedPreferences.Editor editor = prefs.edit(); local
129 editor.clear();
130 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, false);
131 editor.apply();
161 SharedPreferences.Editor editor = prefs.edit(); local
162 editor.clear();
163 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, true)
    [all...]
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxRdsConfig.java 396 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
399 editor.putBoolean(RDSAF, chbSetRdsAf.isChecked());
400 editor.putBoolean(RDS, chbRdsMode.isChecked());
401 editor.putInt(RDSSYSTEM, spnRdsSystem.getSelectedItemPosition());
403 editor.putBoolean(RDSAF, DEFAULT_RDS_AF);
404 editor.putBoolean(RDS, DEFAULT_RDS);
405 editor.putInt(RDSSYSTEM, DEFAULT_RDS_SYSTEM);
408 editor.putInt(BAND, spnBand.getSelectedItemPosition());
410 //editor.putInt(DEEMP, spnDeEmp.getSelectedItemPosition())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 17 package com.android.contacts.editor;
119 final SharedPreferences.Editor editor = mPrefs.edit() local
127 editor.putString(KEY_KNOWN_ACCOUNTS, "");
128 editor.putString(KEY_DEFAULT_ACCOUNT, "");
130 editor.putString(KEY_KNOWN_ACCOUNTS,
132 editor.putString(KEY_DEFAULT_ACCOUNT, defaultAccount.stringify());
134 editor.apply();
195 * @return true if the contact editor should show the "accounts changed" notification, that is:
KindSectionView.java 17 package com.android.contacts.editor;
30 import com.android.contacts.editor.Editor.EditorListener;
113 public void onDeleteRequested(Editor editor) {
114 // If there is only 1 editor in the section, then don't allow the user to delete it.
115 // Just clear the fields in the editor.
117 editor.clearAllFields();
119 // Otherwise it's okay to delete this {@link Editor}
120 editor.deleteEditor()
202 Editor editor = (Editor) view; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ResourceValueCompleter.java 65 CommonXmlEditor editor = this.xmlProperty.getXmlEditor(); local
66 if (editor != null) {
68 editor,
89 static String[] computeResourceStringMatches(AndroidXmlEditor editor,
98 AndroidTargetData data = editor.getTargetData();
106 AndroidTargetData data = editor.getTargetData();
118 IProject project = editor.getProject();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
Property.java 16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
50 public Property(PropertyEditor editor) {
52 m_editor = editor;
112 // Editor
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 221 SharedPreferences.Editor editor = mContext.getSharedPreferences(OPP_PREFERENCE_FILE, 0) local
223 editor.putBoolean(SENDING_FLAG, mSendingFlag);
224 editor.putBoolean(MULTIPLE_FLAG, mMultipleFlag);
226 editor.putString(MIME_TYPE_MULTIPLE, mMimeTypeOfSendingFiles);
234 editor.putString(FILE_URIS, strUris);
236 editor.remove(MIME_TYPE);
237 editor.remove(FILE_URI);
239 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
240 editor.putString(FILE_URI, mUriOfSendingFile)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/color/
ColorEditorDelegate.java 35 * Editor for /res/color XML files.
55 * Old standalone-editor ID.
62 private ColorEditorDelegate(CommonXmlEditor editor) {
63 super(editor, new ColorContentAssist());
64 editor.addDefaultTargetListener();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonXmlDelegate.java 33 import org.eclipse.ui.forms.editor.IFormPage;
40 * Implementation of form editor for /res XML files.
47 /** The editor that created the delegate. Never null. */
81 CommonXmlEditor editor,
83 mEditor = editor;
91 * Returns the editor that created this delegate.
93 * @return the editor that created this delegate. Never null.
114 * Returns true, indicating the "save as" operation is supported by this editor.
162 * all data to the XML model and then having the Structured XML Editor
165 * Here we just need to tell the graphical editor that the model ha
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlEditorDelegate.java 33 * Multi-page form editor for /res/xml XML files.
52 * Old standalone-editor ID.
59 * Creates the form editor for resources XML files.
61 public OtherXmlEditorDelegate(CommonXmlEditor editor) {
62 super(editor, new OtherXmlContentAssist());
63 editor.addDefaultTargetListener();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesEditorDelegate.java 40 * Multi-page form editor for /res/values XML files.
59 * Old standalone-editor ID.
67 * Creates the form editor for resources XML files.
69 private ValuesEditorDelegate(CommonXmlEditor editor) {
70 super(editor, new ValuesContentAssist());
71 editor.addDefaultTargetListener();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 62 * actual resource file. By looking at the Active Window > Active Page > Active Editor we
140 * Returns the active editor (hopefully matching our selection) or null.
162 private IFile getSelectedFile(IEditorPart editor) {
163 if (editor != null) {
164 IEditorInput input = editor.getEditorInput();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcherTest.java 109 IEditorPart editor = IDE.openEditor(page, file); local
110 assertTrue(editor instanceof AndroidXmlEditor);
111 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlEditor.java 70 import org.eclipse.ui.forms.editor.FormEditor;
71 import org.eclipse.ui.forms.editor.IFormPage;
100 * Multi-page form editor for Android XML files.
105 * source editor. This can be a no-op if desired.
119 /** Page id of the XML source editor, used for switching tabs programmatically */
125 /** Page index of the text editor (always the last page) */
127 /** The text editor */
166 * Creates a form editor.
212 * UI node editor.
225 * as well as text editor page) have been created. This give a chance to derivin
285 IEditorPart editor = AdtUtils.getActiveEditor(); local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 207 JComponent editor = null; local
213 editor = this.editInputString;
217 editor = this.editInputMulti.getView();
221 editor = this.editInputFile;
228 paneDetailInput.setEditor(editor);
232 JComponent editor = null; local
241 editor = this.editOutputAST.getView();
247 editor = this.editOutputResult;
253 editor = this.editOutputStd.getView();
259 editor = this.editOutputReturn.getView()
365 private JComponent editor; field in class:TestCaseEditController.AbstractEditorPane
    [all...]
  /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;

Completed in 1059 milliseconds

1 2 3 45 6 7 8 91011>>