HomeSort by relevance Sort by last modified time
    Searched refs:newLocation (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.cpp 63 LayoutPoint newLocation(std::max(x(), other.x()), std::max(y(), other.y()));
67 if (newLocation.x() >= newMaxPoint.x() || newLocation.y() >= newMaxPoint.y()) {
68 newLocation = LayoutPoint(0, 0);
72 m_location = newLocation;
73 m_size = newMaxPoint - newLocation;
86 LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y()));
89 m_location = newLocation;
90 m_size = newMaxPoint - newLocation;
103 LayoutPoint newLocation(std::min(x(), other.x()), std::min(y(), other.y()))
    [all...]
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
UrlRequestListener.java 23 * @param newLocation Location where request is redirected.
26 URL newLocation);
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
MockLocationProvider.java 75 newLocation();
83 private void newLocation() {
  /frameworks/base/core/java/android/net/http/
LoggingEventHandler.java 53 public void locationChanged(String newLocation, boolean permanent) {
55 HttpLog.v("LoggingEventHandler: locationChanged() " + newLocation +
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 81 int[] newLocation = new int[2];
100 editText.getLocationOnScreen(newLocation);
102 while (newLocation[1] > rootViewHeight - IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
103 editText.getLocationOnScreen(newLocation);
107 assertTrue(newLocation[1] <= rootViewHeight - IME_MIN_HEIGHT);
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 282 * @param newLocation The new Location that you want to evaluate
287 protected Location getBetterLocation(Location newLocation, Location currentBestLocation) {
290 return newLocation;
294 long timeDelta = newLocation.getTime() - currentBestLocation.getTime();
302 return newLocation;
309 int accuracyDelta = (int) (newLocation.getAccuracy() - currentBestLocation.getAccuracy());
315 boolean isFromSameProvider = isSameProvider(newLocation.getProvider(),
320 return newLocation;
322 return newLocation;
324 return newLocation;
    [all...]
  /packages/apps/Camera/src/com/android/camera/
LocationManager.java 133 public void onLocationChanged(Location newLocation) {
134 if (newLocation.getLatitude() == 0.0
135 && newLocation.getLongitude() == 0.0) {
148 mLastLocation.set(newLocation);
  /packages/apps/Camera2/src/com/android/camera/app/
LegacyLocationProvider.java 133 public void onLocationChanged(Location newLocation) {
134 if (newLocation.getLatitude() == 0.0
135 && newLocation.getLongitude() == 0.0) {
142 mLastLocation.set(newLocation);
  /packages/apps/LegacyCamera/src/com/android/camera/
LocationManager.java 133 public void onLocationChanged(Location newLocation) {
134 if (newLocation.getLatitude() == 0.0
135 && newLocation.getLongitude() == 0.0) {
148 mLastLocation.set(newLocation);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LocationTest.java 40 Location newLocation = new Location(LocationManager.NETWORK_PROVIDER);
41 newLocation.set(location);
43 assertLocationFieldsFromTestSetup(newLocation);
  /frameworks/base/tests/CoreTests/android/core/
TestEventHandler.java 323 * @param newLocation The URL to the new server
326 public void locationChanged(String newLocation, boolean permanent) {
329 newLocation + " permanent " + permanent);
340 if (expectLocation.equals(newLocation)) {
344 " got:"+newLocation);
662 public void expectLocationChanged(String newLocation) {
664 expectLocation = newLocation;
667 public void expectLocationChanged(String newLocation, boolean permanent) {
669 expectLocation = newLocation;
  /libcore/luni/src/main/java/libcore/icu/
NativeBreakIterator.java 93 int newLocation = currentImpl(this.address, this.string);
94 this.charIterator.setIndex(newLocation);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 152 void PinchViewport::setLocation(const FloatPoint& newLocation)
154 FloatPoint clampedOffset(clampOffsetToBoundaries(newLocation));
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 406 Location newLocation = Location.CREATOR.createFromParcel(parcel);
407 assertTestLocation(newLocation);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]
RenderBox.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar 
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar 
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.frameworkadmin_2.0.100.v20130327-2119.jar 
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.frameworkadmin_2.0.100.v20130327-2119.jar 
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]

Completed in 1120 milliseconds

1 2