OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:geofence
(Results
1 - 4
of
4
) sorted by null
/developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofenceStore.java
33
* Storage for
geofence
values, implemented in SharedPreferences.
50
* Returns a stored
geofence
by its id, or returns null if it's not found.
51
* @param id The ID of a stored
geofence
.
55
// Get the latitude for the
geofence
identified by id, or INVALID_FLOAT_VALUE if it doesn't
81
* Save a
geofence
.
82
* @param
geofence
The SimpleGeofence with the values you want to save in SharedPreferences.
84
public void setGeofence(String id, SimpleGeofence
geofence
) {
88
// Write the
Geofence
values to SharedPreferences.
89
prefs.putFloat(getGeofenceFieldKey(id, KEY_LATITUDE), (float)
geofence
.getLatitude());
90
prefs.putFloat(getGeofenceFieldKey(id, KEY_LONGITUDE), (float)
geofence
.getLongitude())
[
all
...]
/developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofenceStore.java
33
* Storage for
geofence
values, implemented in SharedPreferences.
50
* Returns a stored
geofence
by its id, or returns null if it's not found.
51
* @param id The ID of a stored
geofence
.
55
// Get the latitude for the
geofence
identified by id, or INVALID_FLOAT_VALUE if it doesn't
81
* Save a
geofence
.
82
* @param
geofence
The SimpleGeofence with the values you want to save in SharedPreferences.
84
public void setGeofence(String id, SimpleGeofence
geofence
) {
88
// Write the
Geofence
values to SharedPreferences.
89
prefs.putFloat(getGeofenceFieldKey(id, KEY_LATITUDE), (float)
geofence
.getLatitude());
90
prefs.putFloat(getGeofenceFieldKey(id, KEY_LONGITUDE), (float)
geofence
.getLongitude())
[
all
...]
/development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
SimpleGeofenceStore.java
33
* Storage for
geofence
values, implemented in SharedPreferences.
50
* Returns a stored
geofence
by its id, or returns null if it's not found.
51
* @param id The ID of a stored
geofence
.
55
// Get the latitude for the
geofence
identified by id, or INVALID_FLOAT_VALUE if it doesn't
81
* Save a
geofence
.
82
* @param
geofence
The SimpleGeofence with the values you want to save in SharedPreferences.
84
public void setGeofence(String id, SimpleGeofence
geofence
) {
88
// Write the
Geofence
values to SharedPreferences.
89
prefs.putFloat(getGeofenceFieldKey(id, KEY_LATITUDE), (float)
geofence
.getLatitude());
90
prefs.putFloat(getGeofenceFieldKey(id, KEY_LONGITUDE), (float)
geofence
.getLongitude())
[
all
...]
/external/chromium_org/third_party/android_platform/webview/
frameworks.jar
Completed in 266 milliseconds