HomeSort by relevance Sort by last modified time
    Searched defs:mLocation (Results 1 - 25 of 40) 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/sdkmanager/libs/sdklib/src/com/android/sdklib/
SystemImage.java 36 private final File mLocation;
48 mLocation = location;
96 mLocation = location;
130 return mLocation;
167 mLocation
AddOnTarget.java 73 private final String mLocation;
117 mLocation = location;
139 mLocation + SdkConstants.OS_ADDON_LIBS_FOLDER + jarFile,
147 return mLocation;
225 return mLocation + SdkConstants.OS_SKINS_FOLDER;
227 return mLocation + SdkConstants.FD_DOCS + File.separator
232 return mLocation + SdkConstants.FD_DATA + File.separator
239 return mLocation + SdkConstants.FD_DATA + File.separator
246 return mLocation + SdkConstants.FD_DATA + File.separator
253 File sampleLoc = new File(mLocation, SdkConstants.FD_SAMPLES)
    [all...]
  /tools/build/builder/src/main/java/com/android/builder/
JarDependency.java 24 private String mLocation;
30 mLocation = location;
37 return 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);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/devices/
Camera.java 20 private CameraLocation mLocation;
42 mLocation = location;
48 return mLocation;
52 mLocation = cl;
79 c.mLocation = mLocation;
94 return mLocation == c.mLocation
102 hash = 31 * hash + mLocation.ordinal();
  /frameworks/base/services/java/com/android/server/location/
GeofenceState.java 36 private final Location mLocation;
54 mLocation = new Location("");
55 mLocation.setLatitude(fence.getLatitude());
56 mLocation.setLongitude(fence.getLongitude());
64 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 283 private Location mLocation = new Location(LocationManager.GPS_PROVIDER);
422 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 44 private final File mLocation;
51 mLocation = location;
55 return mLocation;
62 mManifest = AndroidManifestParser.parse(new FolderWrapper(mLocation));
111 mProjectName = mLocation.getName();
128 mProjectName = mLocation.getName();
143 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 58 private final SmsCbLocation mLocation;
62 mLocation = location;
67 return mMessageId * 31 + mLocation.hashCode();
77 return (mMessageId == other.mMessageId && mLocation.equals(other.mLocation));
84 return "{messageId: " + mMessageId + " location: " + mLocation.toString() + '}';
  /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 75 final int[] mLocation = new int[2];
325 mNativeContentView.getLocationInWindow(mLocation);
328 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
330 mLastContentX = mLocation[0];
331 mLastContentY = mLocation[1];
  /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 326 private final SmsCbLocation mLocation;
330 mLocation = location;
335 return (mHeader.getSerialNumber() * 31) + mLocation.hashCode();
347 && mLocation.equals(other.mLocation);
356 * and Cell ID are saved in mLocation or set to -1 to match all values.
364 return mLocation.isInLocationArea(plmn, lac, cid);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 215 public String mLocation = null;
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.equals(other.mLocation))
    [all...]
  /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++;

Completed in 863 milliseconds

1 2