Searched defs:locations (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/location/lib/java/com/android/location/provider/
H A DFusedLocationHardwareSink.java28 public abstract void onLocationAvailable(Location[] locations); argument
H A DFusedLocationHardware.java47 public void onLocationAvailable(Location[] locations) {
48 dispatchLocations(locations);
235 Location[] locations,
238 mLocations = locations;
251 private void dispatchLocations(Location[] locations) { argument
261 new MessageCommand(entry.getKey(), locations, null /*data*/));
276 new MessageCommand(entry.getKey(), null /*locations*/, data));
233 MessageCommand( FusedLocationHardwareSink sink, Location[] locations, String data) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DFlpHardwareProvider.java107 private void onLocationReport(Location[] locations) { argument
108 for (Location location : locations) {
120 sink.onLocationAvailable(locations);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp468 FlpLocation** locations,
479 TranslateToObject(locations[i], locationObject);
487 static void LocationCallback(int32_t locationsCount, FlpLocation** locations) { argument
492 if(locationsCount == 0 || locations == NULL) {
496 locations
502 TranslateToObjectArray(locationsCount, locations, locationsArray);
466 TranslateToObjectArray( int32_t locationsCount, FlpLocation** locations, jobjectArray& locationsArray) argument
/frameworks/base/core/java/android/widget/
H A DGridLayout.java81 * wishes to occupy, GridLayout assigns cell locations automatically using its:
919 int[] xs = mHorizontalAxis.locations;
927 int[] ys = mVerticalAxis.locations;
1023 int[] locations = axis.getLocations();
1024 int cellSize = locations[span.max] - locations[span.min];
1109 Together they compute the locations of the vertical and horizontal lines of
1208 This internal class houses the algorithm for computing the locations of grid lines;
1241 public int[] locations; field in class:GridLayout.Axis
1539 private boolean relax(int[] locations, Ar argument
1555 init(int[] locations) argument
1616 solve(Arc[] arcs, int[] locations) argument
1620 solve(Arc[] arcs, int[] locations, boolean modifyOnError) argument
1847 size(int[] locations) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp2735 // { rule --> { file locations } }
3100 const SortedVector<String8>& locations = rules.valueAt(i); local
3101 const size_t M = locations.size();
3103 fprintf(fp, "# %s\n", locations.itemAt(j).string());
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java78 * wishes to occupy, GridLayout assigns cell locations automatically using its:
912 int[] locations = axis.getLocations();
913 int cellSize = locations[span.max] - locations[span.min];
998 Together they compute the locations of the vertical and horizontal lines of
1085 This internal class houses the algorithm for computing the locations of grid lines;
1118 public int[] locations; field in class:GridLayout.Axis
1416 private boolean relax(int[] locations, Arc entry) { argument
1424 int candidate = locations[u] + value;
1425 if (candidate > locations[
1432 init(int[] locations) argument
1493 solve(Arc[] arcs, int[] locations) argument
1497 solve(Arc[] arcs, int[] locations, boolean modifyOnError) argument
1724 size(int[] locations) argument
[all...]

Completed in 642 milliseconds