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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/preference/
Preference.java 1380 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1432 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1481 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1525 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1569 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1613 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
25 * Abstract editor for {@link Property}.
28 * @coverage core.model.property.editor
55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation
62 * the mouse location, if editor is activated using mouse click, or <code>null</code> if
65 * @return <code>true</code> if editor should be remembered as active for future
75 * Sets the new bounds for editor's control.
81 * Deactivates editor for current {@link Property}. {@link PropertyEditor} should dispose any
84 * If any exception happened during activation, editor still should be able to deactivat
    [all...]
  /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...]
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp 29 #include "Editor.h"
87 // Related to Editor::selectionForCommand.
105 frame->editor()->applyStyleToSelection(style, action);
109 frame->editor()->applyStyle(style);
131 // This function must use Editor::selectionHasStyle to determine the current style but we cannot fix this
136 RefPtr<EditingStyle> selectionStyle = frame->editor()->selectionStartStyle();
165 if (frame->editor()->behavior().shouldToggleStyleBasedOnStartOfSelection())
166 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValue) == TrueTriState;
181 frame->editor()->applyParagraphStyleToSelection(style.get(), action)
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 30 #include "Editor.h"
66 if (!frame || !frame->editor()->canEdit())
82 frame->editor()->confirmComposition(String::fromUTF8(compositionString));
89 if (!frame || !frame->editor()->canEdit())
99 frame->editor()->setComposition(preeditString, underlines, 0, 0);
450 if (targetFrame->editor()->ignoreCompositionSelectionChange())
457 if (!targetFrame->editor()->hasComposition())
462 if (!targetFrame->editor()->getCompositionSelection(start, end)) {
465 targetFrame->editor()->confirmCompositionWithoutDisturbingSelection();
673 Vector<Editor::Command> commands
    [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()
201 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();
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generateviewbylayout/ui/
AbstractCodeGeneratorHandler.java 63 ITextEditor editor = null; local
68 // case where the selection comes from the Text Editor
71 editor = (ITextEditor) HandlerUtil.getActiveEditorChecked(event);
72 if (editor.getEditorInput() instanceof IFileEditorInput)
74 fileEditorInput = (IFileEditorInput) editor.getEditorInput();
147 IEditorPart editor = null; local
150 editor = JavaUI.openInEditor(compilationUnit);
156 "Unable to open editor or bring it to front for Java file while trying to generate code from layout xml file", //$NON-NLS-1$
160 final IEditorPart editorPart = editor;
  /external/quake/quake/src/WinQuake/
sys_android.cpp 304 const char *editor; local
309 editor = getenv("VISUAL");
310 if (!editor)
311 editor = getenv("EDITOR");
312 if (!editor)
313 editor = getenv("EDIT");
314 if (!editor)
315 editor = "vi";
316 sprintf(cmd, "xterm -e %s %s", editor, filename)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 68 SharedPreferences.Editor editor = prefs.edit(); local
69 editor.putString(PREFERENCE_KEY, PREFERENCE_VALUE);
70 editor.commit();
  /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/layout/gle2/
RenderService.java 74 // The following fields are inferred from the editor and not customizable by the
104 private RenderService(GraphicalEditorPart editor) {
105 mEditor = editor;
107 mProject = editor.getProject();
108 LayoutCanvas canvas = editor.getCanvasControl();
110 ConfigurationChooser chooser = editor.getConfigurationChooser();
116 mLayoutLib = editor.getReadyLayoutLib(true /*displayError*/);
117 mResourceResolver = editor.getResourceResolver();
118 mProjectCallback = editor.getProjectCallback(true /*reset*/, mLayoutLib);
119 mMinSdkVersion = editor.getMinSdkVersion()
    [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 67 import org.eclipse.ui.forms.editor.FormEditor;
68 import org.eclipse.ui.forms.editor.IFormPage;
97 * Multi-page form editor for Android XML files.
102 * source editor. This can be a no-op if desired.
116 /** Page id of the XML source editor, used for switching tabs programmatically */
122 /** Page index of the text editor (always the last page) */
124 /** The text editor */
163 * Creates a form editor.
209 * UI node editor.
222 * as well as text editor page) have been created. This give a chance to derivin
282 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...]

Completed in 631 milliseconds

1 2 3 45 6 7 8 91011>>