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

/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSharedPreferencesCompat.java40 public static void apply(SharedPreferences.Editor editor) { argument
43 sApplyMethod.invoke(editor);
51 editor.commit();
/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
H A DOpenWnnEN.java245 * Get the shift key state from the editor.
247 * @param editor Editor
251 protected int getShiftKeyState(EditorInfo editor) { argument
252 return (getCurrentInputConnection().getCursorCapsMode(editor.inputType) == 0) ? 0 : 1;
955 * Fits an editor info.
958 * @param info The editor info.
H A DDefaultSoftKeyboard.java660 public void setPreferences(SharedPreferences pref, EditorInfo editor) { argument
H A DOpenWnnJAJP.java2190 * Get the shift key state from the editor.
2192 * @param editor The editor
2195 protected int getShiftKeyState(EditorInfo editor) { argument
2196 return (getCurrentInputConnection().getCursorCapsMode(editor.inputType) == 0) ? 0 : 1;
2259 * Fits an editor info.
2262 * @param info The editor info.
/packages/apps/Contacts/src/com/android/contacts/model/
H A DEditor.java37 public void onDeleted(Editor editor); argument
50 * Prepare this editor for the given {@link ValuesDelta}, which
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DDefaultSoftKeyboardEN.java93 * Get the shift key state from the editor.
95 * @param editor The information of editor
98 private int getShiftKeyState(EditorInfo editor) { argument
101 int caps = connection.getCursorCapsMode(editor.inputType);
147 @Override public void setPreferences(SharedPreferences pref, EditorInfo editor) { argument
148 super.setPreferences(pref, editor);
153 switch (editor.inputType & EditorInfo.TYPE_MASK_CLASS) {
/packages/apps/Contacts/src/com/android/contacts/ui/widget/
H A DKindSectionView.java88 public void onDeleted(Editor editor) { argument
170 final GenericEditorView editor = (GenericEditorView)mInflater.inflate(
172 editor.setValues(mKind, entry, mState, mReadOnly, mViewIdGenerator);
176 editor.mDelete.setVisibility((mKind.isList || (entryIndex != 0))
178 editor.setEditorListener(this);
179 mEditors.addView(editor);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DDefaultSoftKeyboardJAJP.java685 @Override public void setPreferences(SharedPreferences pref, EditorInfo editor) { argument
692 super.setPreferences(pref, editor);
694 int inputType = editor.inputType;
1112 * Get the shift key state from the editor.
1114 * @param editor The editor information
1117 protected int getShiftKeyState(EditorInfo editor) { argument
1120 int caps = connection.getCursorCapsMode(editor.inputType);
/packages/apps/Contacts/src/com/android/contacts/ui/
H A DEditContactActivity.java167 // Build editor and listen for photo requests
433 BaseContactEditorView editor;
435 editor = (BaseContactEditorView) inflater.inflate(R.layout.item_contact_editor,
438 editor = (BaseContactEditorView) inflater.inflate(
441 PhotoEditorView photoEditor = editor.getPhotoEditor();
445 mContent.addView(editor);
446 editor.setState(entity, source, mViewIdGenerator);
449 // Show editor now that we've loaded state
462 public PhotoListener(long rawContactId, boolean readOnly, PhotoEditorView editor) { argument
465 mEditor = editor;
468 onDeleted(Editor editor) argument
1178 onDeleted(Editor editor) argument
[all...]

Completed in 89 milliseconds