Searched defs:ActivityRecognitionEvent (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/location/lib/java/com/android/location/provider/
H A DActivityRecognitionEvent.java23 public class ActivityRecognitionEvent { class
28 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { method in class:ActivityRecognitionEvent
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionEvent.java27 public class ActivityRecognitionEvent implements Parcelable { class in inherits:Parcelable
32 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { method in class:ActivityRecognitionEvent
50 public static final Creator<ActivityRecognitionEvent> CREATOR =
51 new Creator<ActivityRecognitionEvent>() {
53 public ActivityRecognitionEvent createFromParcel(Parcel source) {
58 return new ActivityRecognitionEvent(activity, eventType, timestampNs);
62 public ActivityRecognitionEvent[] newArray(int size) {
63 return new ActivityRecognitionEvent[size];

Completed in 76 milliseconds