OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ActivityRecognitionEvent
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/hardware/location/
ActivityRecognitionEvent.java
27
public class
ActivityRecognitionEvent
implements Parcelable {
32
public
ActivityRecognitionEvent
(String activity, int eventType, long timestampNs) {
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];
/frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionEvent.java
22
public class
ActivityRecognitionEvent
{
27
public
ActivityRecognitionEvent
(String activity, int eventType, long timestampNs) {
Completed in 479 milliseconds