Home
last modified time | relevance | path

Searched refs:mLocation (Results 1 – 25 of 25) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
DSlideshowPresenter.java50 protected int mLocation; field in SlideshowPresenter
63 mLocation = 0; in SlideshowPresenter()
119 presentSlide((SlideViewInterface) mView, ((SlideshowModel) mModel).get(mLocation)); in present()
253 mLocation = location; in setLocation()
257 return mLocation; in getLocation()
261 if (mLocation > 0) { in goBackward()
262 mLocation--; in goBackward()
267 if (mLocation < (mSlideNumber - 1)) { in goForward()
268 mLocation++; in goForward()
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DPartRequest.java31 public final String mLocation; field in PartRequest
36 mLocation = mAttachment.mLocation; in PartRequest()
/packages/apps/Calendar/src/com/android/calendar/
DCalendarEventModel.java215 public String mLocation = null; field in CalendarEventModel
310 mLocation = location; in CalendarEventModel()
367 if (mLocation != null && mLocation.length() > 0) { in isEmpty()
389 mLocation = null; in clear()
487 result = prime * result + ((mLocation == null) ? 0 : mLocation.hashCode()); in hashCode()
532 if (mLocation == null) { in equals()
533 if (other.mLocation != null) { in equals()
536 } else if (!mLocation.equals(other.mLocation)) { in equals()
621 if (TextUtils.isEmpty(mLocation)) { in isUnchanged()
622 if (!TextUtils.isEmpty(originalModel.mLocation)) { in isUnchanged()
[all …]
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/
DSunCalculator.java43 private Location mLocation; field in SunCalculator
47 mLocation = location; in SunCalculator()
52 mLocation = location; in setLocation()
143 return mLocation.getLongitude() / 15.0;
229 final double latitude = Math.toRadians(mLocation.getLatitude()); in getCosineSunLocalHour()
/packages/apps/Gallery/src/com/android/camera/
DImageManager.java71 public DataLocation mLocation; field in ImageManager.ImageListParam
85 out.writeInt(mLocation.ordinal()); in writeToParcel()
94 mLocation = DataLocation.values()[in.readInt()]; in ImageListParam()
104 "bucket=%s,empty=%b,single=%s}", mLocation, mInclusion, in toString()
285 DataLocation location = param.mLocation; in makeImageList()
417 param.mLocation = location; in getImageListParam()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DTutorialEN.java63 private int[] mLocation = new int[2]; field in TutorialEN
75 bubba.show(mLocation[0], mLocation[1]);
254 mInputView.getLocationInWindow(mLocation); in start()
/packages/apps/LegacyCamera/src/com/android/camera/
DUtil.java522 private static int mLocation[] = new int[2]; field in Util
526 v.getLocationInWindow(mLocation); in pointInView()
527 return x >= mLocation[0] && x < (mLocation[0] + v.getWidth()) in pointInView()
528 && y >= mLocation[1] && y < (mLocation[1] + v.getHeight()); in pointInView()
DCamera.java745 Location mLocation; field in Camera.JpegPictureCallback
748 mLocation = loc; in JpegPictureCallback()
782 mImageSaver.addImage(jpegData, mLocation, s.width, s.height); in onPictureTaken()
DVideoCamera.java2393 Location mLocation; field in VideoCamera.JpegPictureCallback
2396 mLocation = loc; in JpegPictureCallback()
2404 storeImage(jpegData, mLocation); in onPictureTaken()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DTutorialJAJP.java64 private int[] mLocation = new int[2]; field in TutorialJAJP
77 bubba.show(mLocation[0], mLocation[1]);
326 mInputView.getLocationInWindow(mLocation); in start()
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DAttachmentLoader.java191 s.data(Tags.BASE_FILE_REFERENCE, mAttachment.mLocation); in loadAttachment()
195 String location = mAttachment.mLocation; in loadAttachment()
DEmailSyncAdapter.java867 att.mLocation = location;
/packages/apps/Email/src/com/android/email/
DLegacyConversions.java221 localAttachment.mLocation = partId; in addOneAttachment()
247 if (stringNotEqual(dbAttachment.mLocation, localAttachment.mLocation)) continue; in addOneAttachment()
DMessagingController.java1957 attachment.mLocation); in loadAttachment()
/packages/apps/Email/tests/src/com/android/email/
DLegacyConversionsTests.java231 if ("100".equals(attachment.mLocation)) { in convertAndCheckcheckAddedAttachments()
234 } else if ("101".equals(attachment.mLocation)) { in convertAndCheckcheckAddedAttachments()
238 fail("Unexpected attachment with location " + attachment.mLocation); in convertAndCheckcheckAddedAttachments()
444 assertEquals(tag, expectedPartId, actual.mLocation); in checkAttachment()
/packages/apps/Settings/src/com/android/settings/
DRadioInfo.java111 private TextView mLocation; field in RadioInfo
258 mLocation = (TextView) findViewById(R.id.location); in onCreate()
455 mLocation.setText(r.getString(R.string.radioInfo_lac) + " = " in updateLocation()
467 mLocation.setText("BID = " in updateLocation()
482 mLocation.setText("unknown"); in updateLocation()
/packages/apps/Email/tests/src/com/android/email/provider/
DProviderTestUtils.java255 att.mLocation = "location " + fileName; in setupAttachment()
444 assertEquals(caller + " mLocation", expect.mLocation, actual.mLocation); in assertAttachmentEqual()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DEmailContent.java1135 public String mLocation; field in EmailContent.Attachment
1286 mLocation = cursor.getString(CONTENT_LOCATION_COLUMN); in restore()
1306 values.put(AttachmentColumns.LOCATION, mLocation); in toContentValues()
1333 dest.writeString(mLocation); in writeToParcel()
1358 mLocation = in.readString(); in Attachment()
1391 + mContentUri + ", " + mMessageKey + ", " + mLocation + ", " + mEncoding + ", " in toString()
/packages/apps/Email/tests/src/com/android/email/mail/transport/
DSmtpSenderUnitTests.java200 attachment.mLocation = null; in setupSimpleAttachment()
/packages/apps/Calendar/src/com/android/calendar/event/
DEditEventHelper.java1015 model.mLocation = cursor.getString(EVENT_INDEX_EVENT_LOCATION); in setModelFromCursor()
1225 if (model.mLocation != null) { in getContentValuesFromModel()
1226 values.put(Events.EVENT_LOCATION, model.mLocation.trim()); in getContentValuesFromModel()
DEditEventView.java726 mModel.mLocation = mLocationTextView.getText().toString(); in fillModelFromUI()
728 if (TextUtils.isEmpty(mModel.mLocation)) { in fillModelFromUI()
729 mModel.mLocation = null; in fillModelFromUI()
1131 if (model.mLocation != null) { in setModel()
1132 mLocationTextView.setTextKeepState(model.mLocation); in setModel()
DEditEventFragment.java762 if (mModel.mLocation != null) { in isEmpty()
763 String location = mModel.mLocation.trim(); in isEmpty()
/packages/apps/Camera/src/com/android/camera/
DCamera.java770 Location mLocation; field in Camera.JpegPictureCallback
773 mLocation = loc; in JpegPictureCallback()
822 mImageSaver.addImage(jpegData, uri, title, mLocation, in onPictureTaken()
DVideoCamera.java2400 Location mLocation; field in VideoCamera.JpegPictureCallback
2403 mLocation = loc; in JpegPictureCallback()
2411 storeImage(jpegData, mLocation); in onPictureTaken()
/packages/apps/Calendar/tests/src/com/android/calendar/event/
DEditEventHelperTest.java1475 model.mLocation = "Earth Mk2"; in buildTestModel()