Searched defs:location (Results 101 - 125 of 195) sorted by relevance

12345678

/frameworks/base/core/java/android/view/
H A DViewOverlay.java187 // it is in the same location on the screen
349 public ViewParent invalidateChildInParent(int[] location, Rect dirty) { argument
351 dirty.offset(location[0], location[1]);
353 location[0] = 0;
354 location[1] = 0;
355 super.invalidateChildInParent(location, dirty);
356 return ((ViewGroup) mHostView).invalidateChildInParent(location, dirty);
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java60 String location; field in class:CacheManager.CacheResult
154 return location;
/frameworks/base/graphics/java/android/graphics/
H A DNinePatch.java187 * @param location Where to draw the NinePatch.
189 public void draw(Canvas canvas, RectF location) { argument
190 canvas.drawPatch(this, location, mPaint);
197 * @param location Where to draw the NinePatch.
199 public void draw(Canvas canvas, Rect location) { argument
200 canvas.drawPatch(this, location, mPaint);
208 * @param location Where to draw the NinePatch.
211 public void draw(Canvas canvas, Rect location, Paint paint) { argument
212 canvas.drawPatch(this, location, paint);
252 * @param bounds The location an
280 nativeGetTransparentRegion(Bitmap bitmap, long chunk, Rect location) argument
[all...]
/frameworks/base/location/java/android/location/
H A DCriteria.java17 package android.location;
24 * location provider. Providers maybe ordered according to accuracy,
51 * A constant indicating a finer location accuracy requirement
61 * A constant indicating a low location accuracy requirement
121 * More accurate location may consume more power and may take longer.
145 * More accurate location may consume more power and may take longer.
169 * More accurate location may consume more power and may take longer.
193 * More accurate location may consume more power and may take longer.
215 * may be {@link #ACCURACY_FINE} if desired location
217 * More accurate location ma
[all...]
H A DGnssNavigationMessage.java17 package android.location;
H A DGnssStatus.java17 package android.location;
H A DGpsNavigationMessage.java17 package android.location;
H A DGpsStatus.java17 package android.location;
/frameworks/base/location/lib/java/com/android/location/provider/
H A DFusedLocationHardware.java17 package com.android.location.provider;
19 import android.hardware.location.IFusedLocationHardware;
20 import android.hardware.location.IFusedLocationHardwareSink;
22 import android.location.Location;
/frameworks/base/location/tests/locationtests/src/android/location/
H A DGpsStatusTest.java17 package android.location;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIFactory.java106 BluetoothController bluetooth, LocationController location,
114 return new QSTileHost(context, statusBar, bluetooth, location, rotation, network, zen,
105 createQSTileHost(Context context, PhoneStatusBar statusBar, BluetoothController bluetooth, LocationController location, RotationLockController rotation, NetworkController network, ZenModeController zen, HotspotController hotspot, CastController cast, FlashlightController flashlight, UserSwitcherController userSwitcher, UserInfoController userInfo, KeyguardMonitor keyguard, SecurityController security, BatteryController battery, StatusBarIconController iconController, NextAlarmController nextAlarmController) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPageIndicator.java61 public void setLocation(float location) { argument
62 int index = (int) location;
65 int position = index << 1 | ((location != index) ? 1 : 0);
66 if (DEBUG) Log.d(TAG, "setLocation " + location + " " + index + " " + position);
/frameworks/base/services/core/java/com/android/server/location/
H A DComprehensiveCountryDetector.java17 package com.android.server.location;
20 import android.location.Country;
21 import android.location.CountryListener;
22 import android.location.Geocoder;
54 * {@link #LOCATION_REFRESH_INTERVAL} once the location based country is used.
69 * The refresh interval when the location based country was used
212 // to prioritize it over location based country, so ignore it.
233 * @return the cached location based country.
267 * be started if the current country source is less reliable than the location.
331 // Start finding location whe
[all...]
H A DLocationProviderProxy.java17 package com.android.server.location;
23 import android.location.LocationProvider;
30 import com.android.internal.location.ProviderProperties;
31 import com.android.internal.location.ILocationProvider;
32 import com.android.internal.location.ProviderRequest;
49 // cached values set by the location manager, synchronized on mLock
H A DMockProvider.java17 package com.android.server.location;
19 import android.location.ILocationManager;
20 import android.location.Location;
21 import android.location.LocationProvider;
32 import com.android.internal.location.ProviderProperties;
33 import com.android.internal.location.ProviderRequest;
36 * A mock location provider used by LocationManagerService to implement test providers.
H A DRemoteListenerHelper.java17 package com.android.server.location;
/frameworks/base/services/tests/servicestests/src/com/android/server/location/
H A DComprehensiveCountryDetectorTest.java17 package com.android.server.location;
19 import android.location.Country;
20 import android.location.CountryListener;
225 // The location refresh should not running.
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java28 import android.location.Location;
29 import android.location.LocationListener;
30 import android.location.LocationManager;
54 * Records location updates for all registered location providers, and cell
55 * location updates
63 // controls which location providers to track
100 * registers location listeners
129 Log.d(LOG_TAG, "Adding location listener for provider " +
146 // register for cell location update
280 getDistanceFromNetwork(Location location) argument
300 onLocationChanged(Location location) argument
[all...]
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java21 import android.location.Location;
25 * Class that holds a tracker entry. An entry can be either a valid location, or
65 // location extra keys used to retrieve debug info
131 private void setLocation(Location location) { argument
132 mLocation = location;
215 Location location = new Location(tag);
216 location.setLatitude(cursor.getFloat(cursor
218 location.setLongitude(cursor.getFloat(cursor
223 location.setAccuracy(accuracy);
227 location
[all...]
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DBaseCompilationTest.java108 * Extracts the text in the given location from the the at the given application path.
111 * @param location The location to extract
112 * @return The string that is contained in the given location
115 protected String extract(String pathInApp, Location location) throws IOException { argument
120 for (int i = location.startLine; i <= location.endLine; i++) {
121 if (i > location.startLine) {
126 if (i == location.startLine) {
127 start = location
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DLayoutBinder.java179 addVariable(variable.name, variable.type, variable.location, variable.declared);
184 mExprModel.addImport(userImport.name, userImport.type, userImport.location);
263 public IdentifierExpr addVariable(String name, String type, Location location, argument
270 if (location != null) {
271 id.addLocation(location);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBaseCluster.java17 import android.location.Location;
47 public BaseCluster(Location location) { argument
48 mCenter = getLocationVector(location);
75 protected double[] getLocationVector(Location location) { argument
76 return getLocationVector(location.getLongitude(), location.getLatitude());
116 public float distanceToCenter(Location location) { argument
117 return (float) computeDistance(mCenter, getLocationVector(location));
/frameworks/native/include/input/
H A DInputDevice.h35 String8 location; member in struct:android::InputDeviceIdentifier
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbMessage.java106 * update number for GSM/UMTS). The serial number plus the location code uniquely identify
145 SmsCbLocation location, int serviceCategory, String language, String body,
150 mLocation = location;
244 * the location code uniquely identify a cell broadcast for duplicate detection.
253 * Return the location identifier for this message, consisting of the MCC/MNC as a
257 * if the location is included within another location area or within a PLMN and CellLocation.
259 * @return the geographical location code for duplicate message detection
367 + mSerialNumber + ", location=" + mLocation + ", serviceCategory="
144 SmsCbMessage(int messageFormat, int geographicalScope, int serialNumber, SmsCbLocation location, int serviceCategory, String language, String body, int priority, SmsCbEtwsInfo etwsWarningInfo, SmsCbCmasInfo cmasWarningInfo) argument
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneResultAdapter.java67 TextView location; field in class:TimeZoneResultAdapter.ViewHolder
73 vh.location = (TextView) v.findViewById(R.id.location);
290 String location = tzi.mCountry;
291 if (location == null) {
292 vh.location.setVisibility(View.INVISIBLE);
294 vh.location.setText(location);
295 vh.location.setVisibility(View.VISIBLE);

Completed in 824 milliseconds

12345678