Home
last modified time | relevance | path

Searched refs:projectName (Results 1 – 3 of 3) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/
DProjectsActivity.java204 final String projectName = tv.getText().toString(); in onCreateDialog()
206 createProject(projectName); in onCreateDialog()
286 private void createProject(String projectName) {
290 intent.putExtra(PARAM_CREATE_PROJECT_NAME, projectName);
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
DVideoEditorProject.java149 VideoEditorProject(VideoEditor videoEditor, String projectPath, String projectName, in VideoEditorProject() argument
163 mProjectName = projectName; in VideoEditorProject()
197 public void setProjectName(String projectName) { in setProjectName() argument
198 mProjectName = projectName; in setProjectName()
1187 String projectName = null; in fromXml() local
1200 projectName = parser.getAttributeValue("", ATTR_NAME); in fromXml()
1228 return new VideoEditorProject(videoEditor, projectPath, projectName, lastSaved, in fromXml()
DApiService.java315 public static void createVideoEditor(Context context, String projectPath, String projectName, in createVideoEditor() argument
320 intent.putExtra(PARAM_PROJECT_NAME, projectName); in createVideoEditor()
1624 final String projectName = intent.getStringExtra(PARAM_PROJECT_NAME); in processIntent() local
1638 videoEditor, projectPath, projectName, System.currentTimeMillis(), in processIntent()