OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ApiService
(Results
1 - 10
of
10
) sorted by null
/packages/apps/VideoEditor/src/com/android/videoeditor/
VideoEditorActivity.java
65
import com.android.videoeditor.service.
ApiService
;
516
enableMenu = !
ApiService
.isProjectBeingEdited(mProjectPath);
708
ApiService
.setAspectRatio(VideoEditorActivity.this, mProjectPath,
731
ApiService
.deleteProject(VideoEditorActivity.this, mProjectPath);
759
ApiService
.deleteProject(VideoEditorActivity.this,
[
all
...]
ProjectsActivity.java
38
import com.android.videoeditor.service.
ApiService
;
156
ApiService
.registerListener(mProjectsLoadedListener);
157
ApiService
.loadProjects(this);
163
ApiService
.unregisterListener(mProjectsLoadedListener);
282
ApiService
.deleteProject(ProjectsActivity.this, projectPath);
VideoEditorBaseActivity.java
35
import com.android.videoeditor.service.
ApiService
;
201
if (action ==
ApiService
.ACTION_UPDATE_FRAME) {
808
ApiService
.createVideoEditor(this, mProjectPath,
819
mProjectEditState =
ApiService
.isProjectBeingEdited(mProjectPath);
822
ApiService
.registerListener(mServiceListener);
828
ApiService
.loadVideoEditor(this, mProjectPath);
846
ApiService
.unregisterListener(mServiceListener);
854
ApiService
.saveVideoEditor(this, mProjectPath);
869
ApiService
.releaseVideoEditor(this, mProjectPath);
[
all
...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieTransition.java
262
return new TransitionCrossfade(
ApiService
.generateId(), afterMediaItem,
265
return new TransitionAlpha(
ApiService
.generateId(), afterMediaItem,
270
return new TransitionFadeBlack(
ApiService
.generateId(), afterMediaItem,
273
return new TransitionSliding(
ApiService
.generateId(), afterMediaItem,
ApiService.java
83
public class
ApiService
extends Service {
297
final Intent intent = mIntentPool.get(context,
ApiService
.class);
317
final Intent intent = mIntentPool.get(context,
ApiService
.class);
335
final Intent intent = mIntentPool.get(context,
ApiService
.class);
353
final Intent intent = mIntentPool.get(context,
ApiService
.class);
398
final Intent intent = mIntentPool.get(context,
ApiService
.class);
414
final Intent intent = mIntentPool.get(context,
ApiService
.class);
430
final Intent intent = mIntentPool.get(context,
ApiService
.class);
484
final Intent intent = mIntentPool.get(context,
ApiService
.class);
498
final Intent intent = mIntentPool.get(context,
ApiService
.class)
[
all
...]
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
TransitionView.java
19
import com.android.videoeditor.service.
ApiService
;
335
if (
ApiService
.isTransitionThumbnailsPending(mProjectPath, transition.getId())) {
365
ApiService
.getTransitionThumbnails(getContext(), mProjectPath, transition.getId(),
MediaLinearLayout.java
57
import com.android.videoeditor.service.
ApiService
;
134
final boolean enable = !
ApiService
.isProjectBeingEdited(mProject.getPath()) &&
342
final boolean enable = !
ApiService
.isProjectBeingEdited(mProject.getPath()) &&
[
all
...]
AudioTrackLinearLayout.java
41
import com.android.videoeditor.service.
ApiService
;
130
ApiService
.setAudioTrackDuck(getContext(), mProject.getPath(),
151
ApiService
.setAudioTrackVolume(getContext(), mProject.getPath(),
364
ApiService
.extractAudioTrackAudioWaveform(getContext(), mProject.getPath(),
605
ApiService
.removeAudioTrack(activity, mProject.getPath(),
OverlayLinearLayout.java
42
import com.android.videoeditor.service.
ApiService
;
107
final boolean enable = !
ApiService
.isProjectBeingEdited(mProject.getPath()) &&
290
ApiService
.setOverlayStartTime(getContext(), mProject.getPath(),
614
// Note that this logic matches the one used in
ApiService
716
ApiService
.removeOverlay(activity, mProject.getPath(), mediaItem.getId(),
[
all
...]
MediaItemView.java
20
import com.android.videoeditor.service.
ApiService
;
553
ApiService
.getMediaItemThumbnails(getContext(), mProjectPath,
Completed in 297 milliseconds