Searched defs:mLocation (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DPartRequest.java31 public final String mLocation; field in class:PartRequest
36 mLocation = mAttachment.mLocation;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java63 private final SmsCbLocation mLocation; field in class:CellBroadcastAlertService.MessageIdAndScope
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/Camera/src/com/android/camera/
H A DPreviewGestures.java62 private int[] mLocation; field in class:PreviewGestures
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());
H A DPhotoModule.java895 Location mLocation; field in class:PhotoModule.JpegPictureCallback
898 mLocation = loc;
965 mImageSaver.addImage(jpegData, uri, title, mLocation,
H A DVideoModule.java2539 Location mLocation; field in class:VideoModule.JpegPictureCallback
2542 mLocation = loc;
2550 storeImage(jpegData, mLocation);
/packages/apps/Mms/src/com/android/mms/ui/
H A DSlideshowPresenter.java47 protected int mLocation; field in class:SlideshowPresenter
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++;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java63 private int[] mLocation = new int[2]; field in class:TutorialEN
75 bubba.show(mLocation[0], mLocation[1]);
254 mInputView.getLocationInWindow(mLocation);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java64 private int[] mLocation = new int[2]; field in class:TutorialJAJP
77 bubba.show(mLocation[0], mLocation[1]);
326 mInputView.getLocationInWindow(mLocation);
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/
H A DSunCalculator.java43 private Location mLocation; field in class:SunCalculator
47 mLocation = location;
52 mLocation = location;
143 return mLocation.getLongitude() / 15.0;
229 final double latitude = Math.toRadians(mLocation.getLatitude());
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java215 public String mLocation = null; field in class:CalendarEventModel
310 mLocation = location;
367 if (mLocation != null && mLocation.length() > 0) {
389 mLocation = null;
487 result = prime * result + ((mLocation == null) ? 0 : mLocation.hashCode());
532 if (mLocation == null) {
533 if (other.mLocation != null) {
536 } else if (!mLocation
[all...]
/packages/apps/Gallery/src/com/android/camera/
H A DImageManager.java71 public DataLocation mLocation; field in class:ImageManager.ImageListParam
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/LegacyCamera/src/com/android/camera/
H A DUtil.java522 private static int mLocation[] = new int[2]; field in class:Util
526 v.getLocationInWindow(mLocation);
527 return x >= mLocation[0] && x < (mLocation[0] + v.getWidth())
528 && y >= mLocation[1] && y < (mLocation[1] + v.getHeight());
H A DCamera.java745 Location mLocation; field in class:Camera.JpegPictureCallback
748 mLocation = loc;
782 mImageSaver.addImage(jpegData, mLocation, s.width, s.height);
H A DVideoCamera.java2393 Location mLocation; field in class:VideoCamera.JpegPictureCallback
2396 mLocation = loc;
2404 storeImage(jpegData, mLocation);
/packages/apps/Settings/src/com/android/settings/
H A DRadioInfo.java113 private TextView mLocation; field in class:RadioInfo
274 mLocation = (TextView) findViewById(R.id.location);
477 mLocation.setText(r.getString(R.string.radioInfo_lac) + " = "
489 mLocation.setText("BID = "
504 mLocation.setText("unknown");
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1138 public String mLocation; field in class:EmailContent.Attachment
1289 mLocation = cursor.getString(CONTENT_LOCATION_COLUMN);
1309 values.put(AttachmentColumns.LOCATION, mLocation);
1336 dest.writeString(mLocation);
1361 mLocation = in.readString();
1394 + mContentUri + ", " + mMessageKey + ", " + mLocation + ", " + mEncoding + ", "

Completed in 451 milliseconds