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

/frameworks/ex/common/java/com/android/common/
H A DSharedPreferencesCompat.java39 public static void apply(SharedPreferences.Editor editor) { argument
42 sApplyMethod.invoke(editor);
50 editor.commit();
/frameworks/base/media/java/android/media/videoeditor/
H A DAudioTrack.java81 * @param editor The video editor reference
87 * the codec is not supported or if editor is not of type
90 public AudioTrack(VideoEditor editor, String audioTrackId, String filename) throws IOException { argument
91 this(editor, audioTrackId, filename, 0, 0, MediaItem.END_OF_FILE, false, 100, false, false,
98 * @param editor The video editor reference
120 * the codec is not supported or if editor is not of type
123 AudioTrack(VideoEditor editor, String audioTrackId, String filename, argument
140 if (editor instanceo
[all...]
H A DMediaImageItem.java89 * @param editor The video editor reference
97 public MediaImageItem(VideoEditor editor, String mediaItemId, String filename, long durationMs, argument
100 super(editor, mediaItemId, filename, renderingMode);
102 mMANativeHelper = ((VideoEditorImpl)editor).getNativeContext();
103 mVideoEditor = ((VideoEditorImpl)editor);
H A DMediaItem.java62 * the video editor.
120 * @param editor The video editor reference
129 protected MediaItem(VideoEditor editor, String mediaItemId, String filename, argument
150 mMANativeHelper = ((VideoEditorImpl)editor).getNativeContext();
151 mProjectPath = editor.getPath();
172 * the editor then this API controls the rendering mode.
H A DMediaVideoItem.java77 * @param editor The video editor reference
84 public MediaVideoItem(VideoEditor editor, String mediaItemId, String filename, argument
86 this(editor, mediaItemId, filename, renderingMode, 0, END_OF_FILE, 100, false, null);
92 * @param editor The video editor reference
107 MediaVideoItem(VideoEditor editor, String mediaItemId, String filename, argument
110 super(editor, mediaItemId, filename, renderingMode);
112 if (editor instanceof VideoEditorImpl) {
113 mMANativeHelper = ((VideoEditorImpl)editor)
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java1346 private void tryCommit(SharedPreferences.Editor editor) { argument
1349 editor.apply();
1354 editor.commit();
1362 * This will check if this Preference is persistent, get an editor from
1380 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1381 editor.putString(mKey, value);
1382 tryCommit(editor);
1412 * This will check if this Preference is persistent, get an editor from
1432 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1433 editor
[all...]

Completed in 2973 milliseconds