/ndk/build/tools/ |
cleanup-apps.sh | 7 for projectPath in `find apps/*/project` ; do 8 rm -rf $projectPath/bin 9 rm -rf $projectPath/gen 10 rm -f $projectPath/build.xml 11 rm -f $projectPath/local.properties
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
ApiServiceListener.java | 45 * @param projectPath The project path 48 public void onProjectEditState(String projectPath, boolean projectEdited) {} 53 * @param projectPath The project path 59 public void onVideoEditorCreated(String projectPath, VideoEditorProject project, 65 * @param projectPath The project path 71 public void onVideoEditorLoaded(String projectPath, VideoEditorProject project, 77 * @param projectPath The project path 81 public void onVideoEditorAspectRatioSet(String projectPath, int aspectRatio, Exception exception) {} 86 * @param projectPath The project path 90 public void onVideoEditorThemeApplied(String projectPath, String theme, Exception exception) { [all...] |
ApiService.java | 233 * @param projectPath The project path 235 public ServiceMediaProcessingProgressListener(String projectPath) { 236 mProjectPath = projectPath; 307 * @param projectPath The project path 315 public static void createVideoEditor(Context context, String projectPath, String projectName, 319 intent.putExtra(PARAM_PROJECT_PATH, projectPath); 332 * @param projectPath The project path 334 public static void loadVideoEditor(Context context, String projectPath) { 337 intent.putExtra(PARAM_PROJECT_PATH, projectPath); 346 * @param projectPath The project pat [all...] |
VideoEditorProject.java | 139 * @param projectPath The project path 149 VideoEditorProject(VideoEditor videoEditor, String projectPath, String projectName, 162 mProjectPath = projectPath; [all...] |
/frameworks/base/media/java/android/media/videoeditor/ |
VideoEditorFactory.java | 36 * @param projectPath The path where all VideoEditor internal 45 public static VideoEditor create(String projectPath) throws IOException { 49 final File dir = new File(projectPath); 53 + projectPath); 65 return new VideoEditorImpl(projectPath); 73 * @param projectPath The path where all VideoEditor internal files 87 public static VideoEditor load(String projectPath, boolean generatePreview) 89 final VideoEditor videoEditor = new VideoEditorImpl(projectPath);
|
AudioTrack.java | 530 final String projectPath = mMANativeHelper.getProjectPath(); 531 final String audioWaveFilename = String.format(projectPath + "/audioWaveformFile-"
|
MediaVideoItem.java | 535 final String projectPath = mMANativeHelper.getProjectPath(); 546 String.format(projectPath + "/" + "audioWaveformFile-"+ getId() + ".dat");
|
VideoEditorImpl.java | 145 * @param projectPath - The path where the VideoEditor stores all files 148 public VideoEditorImpl(String projectPath) throws IOException { 162 mMANativeHelper = new MediaArtistNativeHelper(projectPath, mLock, this); 163 mProjectPath = projectPath; 164 final File projectXml = new File(projectPath, PROJECT_FILENAME); [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
VideoEditorBaseActivity.java | 76 public void onProjectEditState(String projectPath, boolean projectEdited) { 78 if (!projectPath.equals(mProjectPath)) { 89 public void onVideoEditorCreated(String projectPath, VideoEditorProject project, 92 if (!projectPath.equals(mProjectPath)) { 114 public void onVideoEditorLoaded(String projectPath, VideoEditorProject project, 116 if (!projectPath.equals(mProjectPath)) { 127 bundle.putString(VideoEditorActivity.PARAM_PROJECT_PATH, projectPath); 140 public void onVideoEditorAspectRatioSet(String projectPath, int aspectRatio, 143 if (!projectPath.equals(mProjectPath)) { 161 public void onVideoEditorThemeApplied(String projectPath, String theme [all...] |
ProjectsActivity.java | 228 final String projectPath = bundle.getString(PARAM_DIALOG_PATH_ID); 239 deleteProject(projectPath); 281 private void deleteProject(final String projectPath) { 282 ApiService.deleteProject(ProjectsActivity.this, projectPath); 283 mAdapter.remove(projectPath); 291 final String projectPath = FileUtils.createNewProjectPath(this); 292 intent.putExtra(PARAM_OPEN_PROJECT_PATH, projectPath); 301 private void openProject(String projectPath) { 304 intent.putExtra(PARAM_OPEN_PROJECT_PATH, projectPath);
|
ProjectPickerAdapter.java | 90 * Removes the project with specified {@code projectPath} from the project list and updates the 93 * @param projectPath The project path of the to-be-removed project 97 public boolean remove(String projectPath) { 99 if (project.getPath().equals(projectPath)) { 195 private Bitmap getThumbnail(String projectPath, ImageView imageView, String title, 197 Bitmap previewBitmap = mPreviewBitmapCache.get(projectPath); 201 new LoadPreviewBitmapTask(this, projectPath, imageView, mItemWidth, mItemHeight, 252 public LoadPreviewBitmapTask(ProjectPickerAdapter contextAdapter, String projectPath, 256 mProjectPath = projectPath;
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
TransitionView.java | 175 * @param projectPath The project path 177 public void setProjectPath(String projectPath) { 178 mProjectPath = projectPath;
|
MediaItemView.java | 303 * @param projectPath The project path 305 public void setProjectPath(String projectPath) { 306 mProjectPath = projectPath;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
ChangedFileSetHelper.java | 61 IPath projectPath = project.getFullPath(); 69 paths.add(path.makeRelativeTo(projectPath).toString() + "/**"); //$NON-NLS-1$
|
/external/chromium_org/chrome/tools/build/win/ |
sln_deps.py | 44 # Project("$TypeGuid") = "$ProjectName", "$ProjectPath", "$ProjectGuid"$
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
ResourceHelper.java | 311 IPath projectPath = new Path(FD_RESOURCES + WS_SEP + folderType.getName() + WS_SEP 313 IFile file = project.getFile(projectPath); 337 String projectPath = FD_RESOURCES + WS_SEP + FD_RES_VALUES + WS_SEP 340 IResource member = project.findMember(projectPath); 458 IFile file = project.getFile(new Path(projectPath));
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
VideoEditorHelper.java | 69 * @param projectPath the directory where all files related to project will 74 public VideoEditor createVideoEditor(String projectPath) { 77 mVideoEditor = VideoEditorFactory.create(projectPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewProjectWizardState.java | 329 String projectPath = location.getPath(); 336 ProjectProperties p = ProjectProperties.load(projectPath, 377 projectPath.startsWith(existingTarget.getLocation())) {
|
ApplicationInfoPage.java | 593 String projectPath = projectDir.getPath(); 597 projectPath)); 601 projectPath));
|
/external/webrtc/test/testsupport/ |
fileutils.h | 72 // This is the "directory" returned if the ProjectPath() function fails
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
VideoEditorStressTest.java | 104 final String projectPath = 106 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath); [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetCreator.py | [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/ |
MediaItemThumbnailTest.java | 57 final String projectPath = mVideoEditorHelper. 59 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath); [all...] |
MediaPropertiesTest.java | 58 final String projectPath = mVideoEditorHelper. 60 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath); [all...] |
VideoEditorExportTest.java | 77 final String projectPath = 79 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath); [all...] |