Searched refs:transition (Results 1 - 9 of 9) sorted by relevance
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
H A D | MovieTransition.java | 34 * This class represents a transition in the user interface 37 // The unique id of the transition 54 * @param transition The transition 56 MovieTransition(Transition transition) { argument 57 mTypeClass = transition.getClass(); 58 mUniqueId = transition.getId(); 59 mAppDurationMs = mDurationMs = transition.getDuration(); 60 mBehavior = transition.getBehavior(); 61 if (transition instanceo [all...] |
H A D | ApiService.java | 805 * Insert an alpha transition after the specified media item 809 * @param afterMediaItemId Insert the transition after the media item with this id 810 * @param transitionId The transition id 812 * @param behavior The transition behavior 814 * @param blending The transition blending 815 * @param invert The transition invert 835 * Insert an crossfade transition after the specified media item 839 * @param afterMediaItemId Insert the transition after the media item with this id 840 * @param transitionId The transition id 842 * @param behavior The transition behavio [all...] |
H A D | VideoEditorProject.java | 321 // Invalidate the transition at the beginning of the timeline 335 // Invalidate the transition at the end of this media item 386 * @param transition The transition to be set between at the delete 389 void removeMediaItem(String mediaItemId, MovieTransition transition) { argument 397 if (transition != null) { 398 addTransition(transition, prevMediaItemId); 619 * Get the beginning media item of the specified transition 621 * @param transition The transition 625 getPreviousMediaItem(MovieTransition transition) argument 732 addTransition(MovieTransition transition, String afterMediaItemId) argument [all...] |
H A D | ApiServiceListener.java | 199 * @param transition The transition inserted at the removal position 204 MovieTransition transition, Exception exception) {} 278 * A new transition was inserted 281 * @param transition The newly added transition 285 public void onTransitionInserted(String projectPath, MovieTransition transition, argument 289 * A transition was removed 292 * @param transitionId The id of the transition which was removed 299 * A transition duratio 203 onMediaItemRemoved(String projectPath, String mediaItemId, MovieTransition transition, Exception exception) argument [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
H A D | TransitionView.java | 41 * Transition view. This class assumes transition is always put on a MediaLinearLayout and is 189 * Resets the transition generation progress. 196 * Sets the transition generation progress. 267 // Draw the left side of the transition 279 // Draw the right side of the transition 333 final MovieTransition transition = (MovieTransition)getTag(); 335 if (ApiService.isTransitionThumbnailsPending(mProjectPath, transition.getId())) { 344 Log.v(TAG, "Transition view is off screen: " + transition.getId() + 365 ApiService.getTransitionThumbnails(getContext(), mProjectPath, transition.getId(),
|
H A D | MediaLinearLayout.java | 320 * The transition action mode handler. 325 public TransitionActionModeCallback(MovieTransition transition) { argument 326 mTransition = transition; 557 // Invalidate all progress in case the transition generation or 617 * Clears existing media or transition items and adds all given media items. 653 if (cc > 5) { // There is a previous view (transition or media item) 656 // Do not add transition if it already exists 706 // Remove the transition following the media item 711 // If we have a transition at the beginning remove it 728 if (insertViewIndex > 1) { // There is a previous view (transition o 820 removeMediaItem(String mediaItemId, MovieTransition transition) argument 1003 addTransition(MovieTransition transition, String afterMediaItemId) argument 1974 editTransition(MovieTransition transition) argument [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
H A D | VideoEditorBaseActivity.java | 366 MovieTransition transition, Exception exception) { 381 getMediaLayout().removeMediaItem(mediaItemId, transition); 478 public void onTransitionInserted(String projectPath, MovieTransition transition, argument 493 getMediaLayout().addTransition(transition, afterMediaId); 365 onMediaItemRemoved(String projectPath, String mediaItemId, MovieTransition transition, Exception exception) argument
|
/packages/apps/Settings/src/com/android/settings/ |
H A D | DataUsageSummary.java | 555 final LayoutTransition transition = new LayoutTransition(); 557 transition.setDuration(1500); 559 transition.setAnimateParentHierarchy(false); 560 return transition;
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
H A D | CalendarUtilities.java | 248 // Write a transition time into SYSTEMTIME data (via an offset into a byte array) 327 * Return a GregorianCalendar representing the first standard/daylight transition between a 333 * @return a GregorianCalendar representing the transition or null if none 438 * @param calendars an array of GregorianCalendar, set to a series of transition times in 525 * Fill the passed in GregorianCalendars arrays with DST transition information for this and 529 * the transition to daylight time 531 * the transition to standard time 550 // Find the first transition, and store 559 // Find the second transition, and store 665 * Find the next transition t [all...] |
Completed in 147 milliseconds