Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/av/media/codecs/amrwb/enc/inc/
Dqpisf_2s.tab21 * Quantization tables for two-stage of ISFs (split by 2 in 1st stage)
49 * isf codebooks: two-stage VQ with split-by-5 in 2nd stage *
63 * 1st stage codebook; 1st split: isf0 to isf8
326 * 1st stage codebook; 2nd split: isf9 to isf15
589 * 2nd stage codebook; 1st split: isf2_0 to isf2_2
663 * 2nd stage codebook; 2nd split: isf2_3 to isf2_5
800 * 2nd stage codebook; 3rd split: isf2_6 to isf2_8
937 * 2nd stage codebook; 4th split: isf2_9 to isf2_11
977 * 2nd stage codebook; 5th split: isf2_12 to isf2_15
1019 * isf codebooks: two-stage VQ with split-by-3 in 2nd stage *
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
DSplitScreen.java60 default void onStagePositionChanged(@StageType int stage, @SplitPosition int position) {} in onStagePositionChanged() argument
61 default void onTaskStageChanged(int taskId, @StageType int stage, boolean visible) {} in onTaskStageChanged() argument
80 static String stageTypeToString(@StageType int stage) { in stageTypeToString() argument
81 switch (stage) { in stageTypeToString()
85 default: return "UNKNOWN(" + stage + ")"; in stageTypeToString()
DISplitScreenListener.aidl27 void onStagePositionChanged(int stage, int position); in onStagePositionChanged() argument
32 void onTaskStageChanged(int taskId, int stage, boolean visible); in onTaskStageChanged() argument
DStageCoordinator.java1101 Bundle resolveStartStage(@StageType int stage, @SplitPosition int position, in resolveStartStage() argument
1103 switch (stage) { in resolveStartStage()
1147 throw new IllegalArgumentException("Unknown stage=" + stage); in resolveStartStage()
1561 int stage; in onStageChildTaskStatusChanged() local
1563 stage = stageListener == mSideStageListener ? STAGE_TYPE_SIDE : STAGE_TYPE_MAIN; in onStageChildTaskStatusChanged()
1566 stage = STAGE_TYPE_UNDEFINED; in onStageChildTaskStatusChanged()
1568 if (stage == STAGE_TYPE_MAIN) { in onStageChildTaskStatusChanged()
1580 mListeners.get(i).onTaskStageChanged(taskId, stage, visible); in onStageChildTaskStatusChanged()
2176 private int getStageType(StageTaskListener stage) { in getStageType() argument
2177 if (stage == null) return STAGE_TYPE_UNDEFINED; in getStageType()
[all …]
DSplitScreenController.java835 public void onStagePositionChanged(int stage, int position) {
839 mExecutors.keyAt(index).onStagePositionChanged(stage, position);
845 public void onTaskStageChanged(int taskId, int stage, boolean visible) {
849 mExecutors.keyAt(index).onTaskStageChanged(taskId, stage, visible);
927 public void onStagePositionChanged(int stage, int position) {
928 mListener.call(l -> l.onStagePositionChanged(stage, position));
932 public void onTaskStageChanged(int taskId, int stage, boolean visible) {
933 mListener.call(l -> l.onTaskStageChanged(taskId, stage, visible));
DStageTaskListener.java392 @StageType int stage) { in onSplitScreenListenerRegistered() argument
395 listener.onTaskStageChanged(taskId, stage, in onSplitScreenListenerRegistered()
/frameworks/base/apct-tests/perftests/windowmanager/src/android/wm/
DWindowManagerPerfTestBase.java100 void waitForIdleSync(Stage stage) { in waitForIdleSync() argument
102 if (stage != mReceivedStage) { in waitForIdleSync()
103 mWaitingStage = stage; in waitForIdleSync()
114 public void onActivityLifecycleChanged(Activity activity, Stage stage) { in onActivityLifecycleChanged() argument
120 mReceivedStage = stage; in onActivityLifecycleChanged()
/frameworks/base/core/java/android/app/backup/
DWallpaperBackupHelper.java96 File stage = new File(STAGE_FILE); in restoreEntity() local
98 if (writeFile(stage, data)) { in restoreEntity()
99 try (FileInputStream in = new FileInputStream(stage)) { in restoreEntity()
108 stage.delete(); in restoreEntity()
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerFilePersistedSettings.java67 File stage = new File(baseDir, BACKUP_ENABLE_FILE + "-stage"); in writeBackupEnableState() local
68 try (FileOutputStream fout = new FileOutputStream(stage)) { in writeBackupEnableState()
71 boolean renamed = stage.renameTo(enableFile); in writeBackupEnableState()
83 stage.delete(); in writeBackupEnableState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicChildBindController.java51 public DynamicChildBindController(RowContentBindStage stage) { in DynamicChildBindController() argument
52 this(stage, CHILD_BIND_CUTOFF); in DynamicChildBindController()
59 RowContentBindStage stage, in DynamicChildBindController() argument
61 mStage = stage; in DynamicChildBindController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotifBindPipelineInitializer.java34 RowContentBindStage stage) { in NotifBindPipelineInitializer() argument
36 mRowContentBindStage = stage; in NotifBindPipelineInitializer()
DNotifBindPipeline.java102 BindStage stage) { in setStage() argument
103 mLogger.logStageSet(stage.getClass().getName()); in setStage()
105 mStage = stage; in setStage()
/frameworks/base/core/java/android/hardware/face/
DFaceEnrollFrame.java44 @FaceEnrollStage int stage, in FaceEnrollFrame() argument
47 mStage = stage; in FaceEnrollFrame()
DFaceManager.java1028 @FaceEnrollStages.FaceEnrollStage int stage, in onEnrollmentFrame() argument
/frameworks/av/media/libheadtracking/
DREADME.md16 - Transform between the screen and the sound stage.
18 - Static: only the sound stage pose is taken into account. This will result
19 in an experience where the sound stage moved with the listener's head.
20 - World-relative: both the head pose and stage pose are taken into account.
21 This will result in an experience where the sound stage is perceived to be
23 - Screen-relative: the head pose, screen pose and stage pose are all taken
24 into account. This will result in an experience where the sound stage is
164 a head-to-stage pose that is going to feed the virtualizer. It is controlled by
/frameworks/base/core/java/android/hardware/camera2/extension/
DCaptureBundle.aidl24 int stage;
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/unfold/animation/
DSplitTaskUnfoldAnimator.java151 public void onTaskStageChanged(int taskId, int stage, boolean visible) { in onTaskStageChanged() argument
154 context.mStageType = stage; in onTaskStageChanged()
160 public void onStagePositionChanged(int stage, int position) { in onStagePositionChanged() argument
161 if (stage == STAGE_TYPE_MAIN) { in onStagePositionChanged()
/frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
DWallpaperBackupAgent.java304 private void restoreFromStage(File stage, File info, String hintTag, int which) in restoreFromStage() argument
306 if (stage.exists()) { in restoreFromStage()
313 try (FileInputStream in = new FileInputStream(stage)) { in restoreFromStage()
318 Slog.d(TAG, "Restore data doesn't exist for file " + stage.getPath()); in restoreFromStage()
/frameworks/base/services/backup/java/com/android/server/backup/restore/
DPerformUnifiedRestoreTask.java712 ParcelFileDescriptor stage; in initiateOneRestore() local
722 stage = ParcelFileDescriptor.open(downloadFile, in initiateOneRestore()
727 if (transport.getRestoreData(stage) != BackupTransport.TRANSPORT_OK) { in initiateOneRestore()
732 stage.close(); in initiateOneRestore()
742 stage.close(); in initiateOneRestore()
743 stage = ParcelFileDescriptor.open(downloadFile, in initiateOneRestore()
751 BackupDataInput in = new BackupDataInput(stage.getFileDescriptor()); in initiateOneRestore()
759 stage.close(); in initiateOneRestore()
/frameworks/av/media/libstagefright/tests/mediacodec/
DMediaCodecTest.cpp226 int32_t stage = counter.wait(kInit, kReleaseCalled); in TEST() local
227 if (stage == kInit) { in TEST()
230 } else if (stage == kReleaseCalled) { in TEST()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/
DAidlConversionUtils.java166 toFrameworkEnrollmentStage(frame.stage), in toFrameworkEnrollmentFrame()
/frameworks/native/opengl/tests/angeles/
DREADME.txt36 the compile/link stage.
/frameworks/base/packages/SystemUI/scripts/token_alignment/
Dtsconfig.json17 …orators": true, /* Enable experimental support for TC39 stage 2 draft decorators…
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerService.java381 for (File stage : stagingDirsToRemove) { in removeStagingDirs()
382 Slog.w(TAG, "Deleting orphan stage " + stage); in removeStagingDirs()
384 removePackageHelper.removeCodePathLI(stage); in removeStagingDirs()
/frameworks/base/packages/services/CameraExtensionsProxy/src/com/android/cameraextensions/
DCameraExtensionsProxyService.java1440 for (androidx.camera.extensions.impl.CaptureStageImpl stage : captureStages) { in getCaptureStages()
1441 ret.add(initializeParcelable(stage, mCameraId)); in getCaptureStages()
1596 captureMap.put(captureBundle.stage, new Pair<> ( in process()

12