Searched defs:editor (Results 1 - 25 of 51) sorted by relevance

123

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorUiUtils.java17 package com.android.contacts.editor;
31 * Utility methods for creating contact editor.
35 // Maps DataKind.mimeType to editor view layouts.
H A DSplitContactConfirmationDialogFragment.java17 package com.android.contacts.editor;
H A DEditor.java17 package com.android.contacts.editor;
35 public void onDeleteRequested(Editor editor); argument
48 // The editor has switched between different representations of the same
59 * Prepares this editor for the given {@link ValuesDelta}, which
91 * allows the appropriate editor UI to be presented immediately.
H A DAggregationSuggestionView.java17 package com.android.contacts.editor;
29 import com.android.contacts.editor.AggregationSuggestionEngine.RawContact;
30 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
H A DViewIdGenerator.java17 package com.android.contacts.editor;
H A DKindSectionView.java17 package com.android.contacts.editor;
30 import com.android.contacts.editor.Editor.EditorListener;
113 public void onDeleteRequested(Editor editor) { argument
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();
120 editor.deleteEditor();
194 "Cannot allocate editor with layout resource ID " +
202 Editor editor = (Editor) view;
203 editor
[all...]
H A DBaseRawContactEditorView.java17 package com.android.contacts.editor;
38 * Base view that provides common code for the editor interaction for a specific
111 * @return the RawContact ID that this editor is editing.
H A DContactEditorUtils.java17 package com.android.contacts.editor;
119 final SharedPreferences.Editor editor = mPrefs.edit()
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:
/packages/apps/Music/src/com/android/music/
H A DSharedPreferencesCompat.java41 public static void apply(SharedPreferences.Editor editor) { argument
44 sApplyMethod.invoke(editor);
52 editor.commit();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DActionSlider.java37 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
38 super.setUp(container, parameter, editor);
H A DBasicSlider.java36 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
38 mEditor = editor;
H A DControl.java25 public void setUp(ViewGroup container, Parameter parameter, Editor editor); argument
H A DParameter.java30 public void setFilterView(FilterView editor); argument
H A DSliderBrightness.java37 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
39 mEditor = editor;
H A DSliderOpacity.java38 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
40 mEditor = editor;
H A DSliderSaturation.java39 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
41 mEditor = editor;
H A DSliderHue.java48 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
50 mEditor = editor;
H A DStyleChooser.java31 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
33 mEditor = editor;
H A DTitledSlider.java42 public void setUp(ViewGroup container, Parameter parameter, Editor editor) { argument
44 mEditor = editor;
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCityObj.java53 public void saveCityToSharedPrefs(SharedPreferences.Editor editor, int index) { argument
54 editor.putString (CITY_NAME + index, mCityName);
55 editor.putString (CITY_TIME_ZONE + index, mTimeZone);
56 editor.putString (CITY_ID + index, mCityId);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DInputViewManager.java58 * @param editor The information about the editor
60 public void setPreferences(SharedPreferences pref, EditorInfo editor); argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/editor/
H A DSelectAccountDialogFragment.java17 package com.android.contacts.common.editor;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DBasicEditor.java31 * The basic editor that all the one parameter filters
130 public void setFilterView(FilterView editor) { argument
H A DEditorPanel.java44 public void setEditor(int editor) { argument
45 mEditorID = editor;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DDefaultSoftKeyboardEN.java94 * Get the shift key state from the editor.
96 * @param editor The information of editor
99 private int getShiftKeyState(EditorInfo editor) { argument
102 int caps = connection.getCursorCapsMode(editor.inputType);
148 @Override public void setPreferences(SharedPreferences pref, EditorInfo editor) { argument
149 super.setPreferences(pref, editor);
154 switch (editor.inputType & EditorInfo.TYPE_MASK_CLASS) {

Completed in 541 milliseconds

123