Home
last modified time | relevance | path

Searched refs:CompoundString (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Launcher3/quickstep/src_protolog/com/android/quickstep/util/
DActiveGestureProtoLogProxy.java163 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logOnInputEventUserLocked()
173 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logOnInputIgnoringFollowingEvents()
186 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logOnInputEventThreeButtonNav()
227 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logInputConsumerBecameActive()
234 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logTaskLaunchFailed()
242 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logOnPageEndTransition()
250 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logQuickSwitchFromHomeFallback()
261 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logQuickSwitchFromHomeFailed()
272 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logFinishRecentsAnimation()
280 ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( in logSetEndTarget()
[all …]
DActiveGestureLog.java64 addLog(CompoundString.NO_OP, gestureEvent); in trackEvent()
81 addLog(new CompoundString(event), gestureEvent); in addLog()
84 public void addLog(@NonNull CompoundString compoundString) { in addLog()
89 @NonNull CompoundString compoundString, in addLog()
175 CompoundString compoundString, in isEntrySame()
185 @NonNull private CompoundString mCompoundString;
202 @NonNull CompoundString compoundString, in update()
230 public static class CompoundString { class in ActiveGestureLog
232 public static final CompoundString NO_OP = new CompoundString(true);
239 public static CompoundString newEmptyString() { in newEmptyString()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DMotionPauseDetector.java105 ActiveGestureLog.CompoundString log = new ActiveGestureLog.CompoundString( in MotionPauseDetector()
129 ActiveGestureLog.CompoundString log = new ActiveGestureLog.CompoundString( in setDisallowPause()
169 ActiveGestureLog.CompoundString isPausedReason; in checkMotionPaused()
173 isPausedReason = new ActiveGestureLog.CompoundString( in checkMotionPaused()
179 isPausedReason = new ActiveGestureLog.CompoundString("Velocity changed directions"); in checkMotionPaused()
182 isPausedReason = new ActiveGestureLog.CompoundString( in checkMotionPaused()
193 isPausedReason = new ActiveGestureLog.CompoundString( in checkMotionPaused()
203 isPausedReason = new ActiveGestureLog.CompoundString( in checkMotionPaused()
209 isPausedReason = new ActiveGestureLog.CompoundString( in checkMotionPaused()
218 private void updatePaused(boolean isPaused, ActiveGestureLog.CompoundString reason) {
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DInputConsumerUtils.kt43 import com.android.quickstep.util.ActiveGestureLog.CompoundString
146 var reasonString: CompoundString in newConsumer()
450 CompoundString.NO_OP, in tryCreateAssistantInputConsumer()
461 reasonString: CompoundString, in tryCreateAssistantInputConsumer()
498 reasonString: CompoundString, in newBaseConsumer()
646 reasonString: CompoundString, in createDeviceLockedInputConsumer()
691 reasonString: CompoundString, in createOverviewInputConsumer()
757 reasonString: CompoundString, in getDefaultInputConsumer()
814 private fun newCompoundString(substring: String): CompoundString { in newCompoundString()
815 return CompoundString("%s%s", NEWLINE_PREFIX, substring) in newCompoundString()
[all …]
DTouchInteractionService.java102 import com.android.quickstep.util.ActiveGestureLog.CompoundString;
901 CompoundString reasonString = action == ACTION_DOWN
902 ? CompoundString.newEmptyString() : CompoundString.NO_OP;
1133 CompoundString.NO_OP);
DAbsSwipeUpHandler.java1248 @NonNull ActiveGestureLog.CompoundString failureReason) {
2418 ActiveGestureLog.CompoundString nextTaskLog =
2419 ActiveGestureLog.CompoundString.newEmptyString();
2514 ActiveGestureLog.CompoundString forceFinishReason =
2515 ActiveGestureLog.CompoundString.newEmptyString();
2528 ActiveGestureLog.CompoundString handleTaskFailureReason =
2529 ActiveGestureLog.CompoundString.newEmptyString();
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DInputConsumerUtilsTest.java528 ActiveGestureLog.CompoundString.NO_OP); in createBaseInputConsumer()