HomeSort by relevance Sort by last modified time
    Searched refs:Classifier (Results 1 - 7 of 7) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
GestureClassifier.java 17 package com.android.systemui.classifier;
23 public abstract class GestureClassifier extends Classifier {
DirectionEvaluator.java 17 package com.android.systemui.classifier;
24 case Classifier.QUICK_SETTINGS:
25 case Classifier.NOTIFICATION_DRAG_DOWN:
30 case Classifier.NOTIFICATION_DISMISS:
35 case Classifier.UNLOCK:
40 case Classifier.LEFT_AFFORDANCE:
45 case Classifier.RIGHT_AFFORDANCE:
StrokeClassifier.java 17 package com.android.systemui.classifier;
22 public abstract class StrokeClassifier extends Classifier {
Classifier.java 17 package com.android.systemui.classifier;
25 public abstract class Classifier {
36 * Contains all the information about touch events from which the classifier can query
41 * Informs the classifier that a new touch event has occurred
47 * Informs the classifier that a sensor change occurred
ProximityEvaluator.java 17 package com.android.systemui.classifier;
23 if (type == Classifier.QUICK_SETTINGS) {
HumanInteractionClassifier.java 17 package com.android.systemui.classifier;
33 * An classifier trying to determine whether it is a human interacting with the phone or not.
35 public class HumanInteractionClassifier extends Classifier {
54 private int mCurrentType = Classifier.GENERIC;
125 // the notification. This kind of motion scores very bad in the Classifier so the
130 if (mCurrentType == Classifier.NOTIFICATION_DRAG_DOWN) {
198 setType(Classifier.GENERIC);
206 for (Classifier c : mStrokeClassifiers) {
210 for (Classifier c : mGestureClassifiers) {
FalsingManager.java 17 package com.android.systemui.classifier;
169 * @return true if the classifier determined that this is not a human interacting with the phone
185 // Touch exploration triggers false positives in the classifier and
292 mHumanInteractionClassifier.setType(Classifier.QUICK_SETTINGS);
304 mHumanInteractionClassifier.setType(Classifier.UNLOCK);
328 mHumanInteractionClassifier.setType(Classifier.NOTIFICATION_DRAG_DOWN);
344 mHumanInteractionClassifier.setType(Classifier.NOTIFICATION_DISMISS);
365 mHumanInteractionClassifier.setType(Classifier.RIGHT_AFFORDANCE);
367 mHumanInteractionClassifier.setType(Classifier.LEFT_AFFORDANCE);

Completed in 66 milliseconds