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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/scripts/
linewrap.js 43 * of the editor.
47 var wrap = application.editor.lineWrap;
48 application.editor.lineWrap = !wrap;
textcolor.js 47 var color = application.editor.selectedTextColor;
49 application.editor.selectedTextColor = color;
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/scripts/
linewrap.js 43 * of the editor.
47 var wrap = application.editor.lineWrap;
48 application.editor.lineWrap = !wrap;
textcolor.js 47 var color = application.editor.selectedTextColor;
49 application.editor.selectedTextColor = color;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
CommonPreferences.java 30 final SharedPreferences.Editor editor = pref.edit(); local
31 editor.putBoolean(id, true);
32 editor.apply();
36 final SharedPreferences.Editor editor = pref.edit(); local
37 editor.putBoolean(id, false);
38 editor.apply();
  /frameworks/support/core/ktx/src/main/java/androidx/core/content/
SharedPreferences.kt 23 * Allows editing of this preference instance with a call to [apply][SharedPreferences.Editor.apply]
24 * or [commit][SharedPreferences.Editor.commit] to persist the changes.
25 * Default behaviour is [apply][SharedPreferences.Editor.apply].
31 * To [commit][SharedPreferences.Editor.commit] changes:
41 action: SharedPreferences.Editor.() -> Unit
43 val editor = edit()
44 action(editor)
46 editor.commit()
48 editor.apply()
  /frameworks/support/compat/src/main/java/androidx/core/content/
SharedPreferencesCompat.java 32 * {@link SharedPreferences.Editor} directly.
43 public void apply(@NonNull SharedPreferences.Editor editor) {
45 editor.apply();
48 // SharedPreferences.Editor implementation without
50 editor.commit();
62 * {@link SharedPreferences.Editor} directly.
73 * {@link SharedPreferences.Editor#apply()} directly.
76 public void apply(@NonNull SharedPreferences.Editor editor) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 31 * editor. Multi-page contributor replaces the contributors for the individual
32 * editors in the multi-page editor.
52 * Returns the action registed with the given text editor.
54 * @return IAction or null if editor is null.
56 protected IAction getAction(ITextEditor editor, String actionID) {
57 return (editor == null ? null : editor.getAction(actionID));
75 ITextEditor editor = local
79 getAction(editor, ITextEditorActionConstants.DELETE));
81 getAction(editor, ITextEditorActionConstants.UNDO))
    [all...]
  /cts/tests/sample/src/android/sample/
SampleDeviceActivity.java 22 import android.content.SharedPreferences.Editor;
48 // Get an editor to modify the preferences.
49 Editor editor = mPreferences.edit(); local
51 editor.putString(key, value);
53 editor.commit();
70 // Get an editor to modify the preferences.
71 Editor editor = mPreferences.edit(); local
73 editor.clear()
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_rstrip.py 3 from idlelib.idle_test.mock_idle import Editor
8 editor = Editor()
9 text = editor.text
10 do_rstrip = rs.RstripExtension(editor).do_rstrip
22 editor = Editor()
24 ## from idlelib.EditorWindow import EditorWindow as Editor
26 ## editor = Editor(root=Tk()
    [all...]
  /external/python/cpython3/Lib/idlelib/idle_test/
test_rstrip.py 3 from idlelib.idle_test.mock_idle import Editor
8 editor = Editor()
9 text = editor.text
10 do_rstrip = rs.RstripExtension(editor).do_rstrip
22 editor = Editor()
24 ## from idlelib.editor import EditorWindow as Editor
26 ## editor = Editor(root=Tk()
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PresencePreferences.java 33 import android.content.SharedPreferences.Editor;
74 Editor editor = mCommonPref.edit(); local
76 editor.putLong(CAPABILITY_DISCOVERY_TIME, time);
77 editor.commit();
94 Editor editor = mCommonPref.edit(); local
95 editor.putString(PHONE_SUBSCRIBER_ID, id);
96 editor.commit();
113 Editor editor = mCommonPref.edit() local
132 Editor editor = mCommonPref.edit(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerDAO.java 106 final SharedPreferences.Editor editor = prefs.edit(); local
110 editor.putInt(NEXT_TIMER_ID, id + 1);
115 editor.putStringSet(TIMER_IDS, timerIds);
118 editor.putInt(STATE + id, timer.getState().getValue());
119 editor.putLong(LENGTH + id, timer.getLength());
120 editor.putLong(TOTAL_LENGTH + id, timer.getTotalLength());
121 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime());
122 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.getLastWallClockTime());
123 editor.putLong(REMAINING_TIME + id, timer.getRemainingTime())
139 final SharedPreferences.Editor editor = prefs.edit(); local
159 final SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SetPreferencesActivity.java 63 SharedPreferences.Editor editor = prefs.edit(); local
64 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_ROW);
65 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_INDEX);
66 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_COMPLETED);
67 editor.remove(PreferenceConstants.PREFERENCE_LINEAR_MODE);
68 editor.remove(PreferenceConstants.PREFERENCE_TOTAL_GAME_TIME);
69 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED);
70 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_TOTAL);
71 editor.remove(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 102 SharedPreferences.Editor editor = prefs.edit().putString("test-key", null); local
104 editor.commit();
111 // Do some initial operation on editor. No commit needed.
112 public abstract void setUp(SharedPreferences.Editor editor);
114 // Do some later operation on editor (e.g. a redundant edit).
116 public abstract void subsequentEdit(SharedPreferences.Editor editor);
126 SharedPreferences.Editor editor local
255 SharedPreferences.Editor editor = prefs.edit(); local
292 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/core/instrumentation/
SharedPreferenceLoggerTest.java 66 final SharedPreferences.Editor editor = mSharedPrefLogger.edit(); local
67 editor.putInt(TEST_KEY, 1);
68 editor.putInt(TEST_KEY, 1);
69 editor.putInt(TEST_KEY, 1);
70 editor.putInt(TEST_KEY, 2);
71 editor.putInt(TEST_KEY, 2);
72 editor.putInt(TEST_KEY, 2);
73 editor.putInt(TEST_KEY, 2);
82 final SharedPreferences.Editor editor = mSharedPrefLogger.edit() local
100 final SharedPreferences.Editor editor = mSharedPrefLogger.edit(); local
114 final SharedPreferences.Editor editor = mSharedPrefLogger.edit(); local
127 final SharedPreferences.Editor editor = mSharedPrefLogger.edit(); local
140 final SharedPreferences.Editor editor = mSharedPrefLogger.edit(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapWizard.java 22 public UnwrapWizard(UnwrapRefactoring ref, LayoutEditorDelegate editor) {
23 super(ref, editor);
UseCompoundDrawableWizard.java 22 UseCompoundDrawableWizard(UseCompoundDrawableRefactoring ref, LayoutEditorDelegate editor) {
23 super(ref, editor);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSharedPreferencesTest.java 24 private SharedPreferences.Editor editor; field in class:ShadowSharedPreferencesTest
39 editor = sharedPreferences.edit();
40 editor.putBoolean("boolean", true);
41 editor.putFloat("float", 1.1f);
42 editor.putInt("int", 2);
43 editor.putLong("long", 3L);
44 editor.putString("string", "foobar");
49 editor.putStringSet("stringSet", stringSet);
54 editor.commit()
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
PrefsBackupHelper.java 20 import android.content.SharedPreferences.Editor;
46 Editor editor = prefs.edit(); local
47 editor.clear();
49 copyMatchingPreferences(mDefaultPreferences, editor);
50 editor.apply();
57 Editor editor = mDefaultPreferences.edit(); local
59 copyMatchingPreferences(prefs, editor);
60 editor.apply()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewInfoPart.java 38 public OverviewInfoPart(Composite body, FormToolkit toolkit, ManifestEditor editor) {
39 super(body, toolkit, editor,
40 getManifestUiNode(editor), // uiElementNode
50 private static UiElementNode getManifestUiNode(ManifestEditor editor) {
51 AndroidManifestDescriptors manifestDescriptors = editor.getManifestDescriptors();
54 if (editor.getUiRootNode().getDescriptor() == desc) {
55 return editor.getUiRootNode();
57 return editor.getUiRootNode().findUiChildNode(desc.getXmlName());
62 // The editor will be reloaded once we have the proper descriptors anyway.
63 return editor.getUiRootNode()
    [all...]
  /cts/hostsidetests/devicepolicy/app/IntentReceiver/src/com/android/cts/intent/receiver/
BroadcastIntentReceiver.java 34 SharedPreferences.Editor editor = prefs.edit(); local
35 editor.putBoolean(OWNER_CHANGED_BROADCAST_RECEIVED_KEY, true);
36 editor.apply();
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
32 Class cls = SharedPreferences.Editor.class;
39 public static void apply(SharedPreferences.Editor editor) {
42 sApplyMethod.invoke(editor);
50 editor.commit();
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
33 Class cls = SharedPreferences.Editor.class;
41 public static void apply(SharedPreferences.Editor editor) {
44 sApplyMethod.invoke(editor);
52 editor.commit();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
PlainXmlEditorDelegate.java 25 * Plain XML editor with no form for files that have no associated descriptor data
30 * Creates the form editor for plain XML files.
32 public PlainXmlEditorDelegate(CommonXmlEditor editor) {
33 super(editor, new OtherXmlContentAssist());
34 editor.addDefaultTargetListener();

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>