HomeSort by relevance Sort by last modified time
    Searched defs:mLocation (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Exchange/exchange2/src/com/android/exchange/
PartRequest.java 31 public final String mLocation;
36 mLocation = mAttachment.mLocation;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
CurrentProgramPropertyAccessor.java 26 private final int mLocation;
34 mLocation = location;
58 Integer.valueOf(mLocation),
65 mStateCategory, mLocation, mStateType);
  /frameworks/base/services/java/com/android/server/location/
GeofenceState.java 36 private final Location mLocation;
58 mLocation = new Location("");
59 mLocation.setLatitude(fence.getLatitude());
60 mLocation.setLongitude(fence.getLongitude());
68 mDistanceToCenter = mLocation.distanceTo(location);
MockProvider.java 46 private final Location mLocation;
64 mLocation = new Location(name);
109 mLocation.set(l);
113 mLocationManager.reportLocation(mLocation, false);
147 pw.println(prefix + "mLocation:");
148 mLocation.dump(new PrintWriterPrinter(pw), prefix + " ");
GpsLocationProvider.java 294 private Location mLocation = new Location(LocationManager.GPS_PROVIDER);
441 mLocation.setExtras(mLocationExtras);
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbMessage.java 117 private final SmsCbLocation mLocation;
150 mLocation = location;
164 mLocation = new SmsCbLocation(in);
200 mLocation.writeToParcel(dest, flags);
262 return mLocation;
367 + mSerialNumber + ", location=" + mLocation + ", serviceCategory="
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateTestPage.java 38 private Text mLocation;
61 mLocation = new Text(container, SWT.BORDER);
64 mLocation.setLayoutData(gd_mLocation);
66 mLocation.setText(sLocation);
68 mLocation.addModifyListener(this);
90 String path = mLocation.getText().trim();
137 String path = mLocation.getText().trim();
143 mLocation.setText(file);
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 36 private Location mLocation;
69 assertNotNull(mLocation);
70 assertEquals(new Float(LONGITUDE), new Float(mLocation.getLongitude()));
71 assertEquals(new Float(LATITUDE), new Float(mLocation.getLatitude()));
77 mLocation=location;
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 71 public DataLocation mLocation;
85 out.writeInt(mLocation.ordinal());
94 mLocation = DataLocation.values()[in.readInt()];
104 "bucket=%s,empty=%b,single=%s}", mLocation, mInclusion,
285 DataLocation location = param.mLocation;
417 param.mLocation = location;
  /packages/apps/Camera/src/com/android/camera/
PreviewGestures.java 62 private int[] mLocation;
85 mLocation = new int[2];
273 v.getLocationInWindow(mLocation);
275 && evt.getX() >= mLocation[0] && evt.getX() < mLocation[0] + v.getWidth()
276 && evt.getY() >= mLocation[1] && evt.getY() < mLocation[1] + v.getHeight());
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 43 private Location mLocation;
47 mLocation = location;
52 mLocation = location;
143 return mLocation.getLongitude() / 15.0;
229 final double latitude = Math.toRadians(mLocation.getLatitude());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 53 private final File mLocation;
61 mLocation = location;
66 return mLocation;
77 mManifest = AndroidManifestParser.parse(new FolderWrapper(mLocation));
132 mProjectName = mLocation.getName();
149 mProjectName = mLocation.getName();
162 File projectFile = new File(mLocation, ".project"); //$NON-NLS-1$
195 ProjectProperties properties = ProjectProperties.load(mLocation.getPath(),
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 37 private Location mLocation;
84 mLocation = null;
89 mLocation = new Location(loc);
132 mLocation = location;
144 return mLocation;
175 cValues.put(LATITUDE, mLocation.getLatitude());
176 cValues.put(LONGITUDE, mLocation.getLongitude());
177 if (mLocation.hasAccuracy()) {
178 cValues.put(ACCURACY, mLocation.getAccuracy());
180 if (mLocation.hasAltitude())
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 63 private final SmsCbLocation mLocation;
67 mLocation = location;
72 return mMessageId * 31 + mLocation.hashCode();
82 return (mMessageId == other.mMessageId && mLocation.equals(other.mLocation));
89 return "{messageId: " + mMessageId + " location: " + mLocation.toString() + '}';
  /packages/apps/Gallery2/src/com/android/camera/
PreviewGestures.java 69 private int[] mLocation;
101 mLocation = new int[2];
324 v.getLocationInWindow(mLocation);
327 mLocation[0] -= v.getWidth();
331 mLocation[1] -= v.getHeight();
334 && evt.getX() >= mLocation[0] && evt.getX() < mLocation[0] + v.getWidth()
335 && evt.getY() >= mLocation[1] && evt.getY() < mLocation[1] + v.getHeight());
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
TutorialEN.java 63 private int[] mLocation = new int[2];
75 bubba.show(mLocation[0], mLocation[1]);
254 mInputView.getLocationInWindow(mLocation);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 64 private int[] mLocation = new int[2];
77 bubba.show(mLocation[0], mLocation[1]);
326 mInputView.getLocationInWindow(mLocation);
  /frameworks/base/core/java/android/app/
NativeActivity.java 85 final int[] mLocation = new int[2];
304 mNativeContentView.getLocationInWindow(mLocation);
307 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
309 mLastContentX = mLocation[0];
310 mLastContentY = mLocation[1];
LoadedApk.java 715 final IntentReceiverLeaked mLocation;
799 mLocation = new IntentReceiverLeaked(null);
800 mLocation.fillInStackTrace();
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareImpl.java 535 " Location: " + geofenceTransition.mLocation + ":" + mGeofences);
541 geofenceTransition.mLocation, geofenceTransition.mTimestamp,
668 private Location mLocation;
674 mLocation = location;
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 41 private final Location mLocation;
53 mLocation = new Location(provider);
68 if (mLocation.getProvider().endsWith(location.getProvider())) {
77 return mLocation;
131 listener.onLocationChanged(mLocation);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 343 private final SmsCbLocation mLocation;
347 mLocation = location;
352 return (mHeader.getSerialNumber() * 31) + mLocation.hashCode();
364 && mLocation.equals(other.mLocation);
373 * and Cell ID are saved in mLocation or set to -1 to match all values.
381 return mLocation.isInLocationArea(plmn, lac, cid);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 47 protected int mLocation;
60 mLocation = 0;
116 presentSlide((SlideViewInterface) mView, ((SlideshowModel) mModel).get(mLocation));
250 mLocation = location;
254 return mLocation;
258 if (mLocation > 0) {
259 mLocation--;
264 if (mLocation < (mSlideNumber - 1)) {
265 mLocation++;
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 326 private Location mLocation;
407 mLocation = location;
440 return mLocation;
  /frameworks/base/core/java/android/view/
SurfaceView.java 93 final int[] mLocation = new int[2];
312 getLocationInWindow(mLocation);
314 int l = mLocation[0];
315 int t = mLocation[1];
437 getLocationInWindow(mLocation);
444 || mLeft != mLocation[0] || mTop != mLocation[1]
450 + " left=" + (mLeft != mLocation[0])
451 + " top=" + (mTop != mLocation[1]));
455 mLeft = mLocation[0]
    [all...]

Completed in 676 milliseconds

1 2