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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-cookie-database-set.php 10 $location = 'Location:'.$newurl; variable
11 header($location);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
toolutil.h 39 IcuToolErrorCode(const char *loc) : location(loc) {}
44 const char *location; member in class:IcuToolErrorCode
  /external/icu/icu4c/source/tools/toolutil/
toolutil.h 40 IcuToolErrorCode(const char *loc) : location(loc) {}
45 const char *location; member in class:IcuToolErrorCode
  /external/stlport/test/unit/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
  /frameworks/base/location/java/android/location/
CountryListener.java 17 package android.location;
LocationListener.java 17 package android.location;
23 * the location has changed. These methods are called if the
24 * LocationListener has been registered with the location manager service
30 * <p>For more information about identifying user location, read the
31 * <a href="{@docRoot}guide/topics/location/obtaining-user-location.html">Obtaining User
32 * Location</a> developer guide.</p>
38 * Called when the location has changed.
40 * <p> There are no restrictions on the use of the supplied Location object.
42 * @param location The new location, as a Location object
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
  /ndk/tests/device/test-stlport/unit/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.cpp 33 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GLint location)
35 return adoptRef(new WebGLUniformLocation(program, location));
38 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GLint location)
40 , m_location(location)
56 GLint WebGLUniformLocation::location() const function in class:WebCore::WebGLUniformLocation
  /external/libnl/lib/route/
pktloc_syntax.y 37 %type <l> location
53 | location def
57 location: label
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorCallback.java 17 package android.hardware.location;
20 import android.location.Location;
41 * @param location The last known location according to the monitoring system.
44 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) {
54 * {@link #onMonitoringSystemChange(int, boolean, android.location.Location)}.
  /packages/apps/Camera2/src/com/android/camera/util/
ExifUtil.java 19 import android.location.Location;
29 * Adds the given location to the given exif.
31 * @param exif The exif to add the location tag to.
32 * @param location The location to add.
34 public static void addLocationToExif(ExifInterface exif, Location location) {
35 exif.addGpsTags(location.getLatitude(), location.getLongitude())
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LocationProviderFactory.java 8 import android.location.Criteria;
9 import android.location.Location;
10 import android.location.LocationListener;
11 import android.location.LocationManager;
54 * This is the core of android location provider. It is a separate class for clarity
73 * Start listening for location updates.
83 * Stop listening for location updates.
91 * Returns true if we are currently listening for location updates, false if not.
99 public void onLocationChanged(Location location)
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
20 import android.location.Location;
45 new Location("LocationProvider");
47 Location l = createTestLocation();
48 Location location = new Location(l); local
49 assertTestLocation(location);
52 new Location((Location) null)
62 Location location = new Location("LocationProvider"); local
68 Location location = new Location(""); local
203 Location location = new Location(""); local
252 Location location = new Location(""); local
265 Location location = new Location(""); local
278 Location location = new Location(""); local
299 Location location = createTestLocation(); local
308 Location location = new Location(""); local
321 Location location = new Location(""); local
334 Location location = new Location(""); local
345 Location location = new Location(""); local
358 Location location = new Location(""); local
371 Location location = new Location(""); local
395 Location location = createTestLocation(); local
401 Location location = createTestLocation(); local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
goose.h 13 // A Goose. Each goose has a location and a velocity. Implements the
19 // Initialize a Goose at location (0, 0) no velocity.
22 // Initialize a Goose at the given location with the specified velocity.
23 Goose(const Vector2& location, const Vector2& velocity);
26 // flocking algorithm (see Goose.flock()) and update the goose's location
62 // Accessors for location and velocoity.
63 Vector2 location() const { function in class:Goose
107 // based on the average location of the neighbours. The goose attempts to
108 // point to this average location. Only consider geese that are within
  /external/chromium_org/third_party/angle/src/compiler/translator/
InfoSink.cpp 34 void TInfoSinkBase::location(int file, int line) { function in class:TInfoSinkBase
45 void TInfoSinkBase::location(const TSourceLoc& loc) { function in class:TInfoSinkBase
46 location(loc.first_file, loc.first_line);
51 location(loc);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LocationTest.java 3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in class:LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER);
22 location.setTime(1);
23 location.setLatitude(2);
24 location.setLongitude(3)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderDebugItem.java 39 @Nullable MethodLocation location; field in class:BuilderDebugItem
45 if (location == null) {
49 return location.getCodeAddress();
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedLocationHardwareSink.java 17 package com.android.location.provider;
19 import android.location.Location;
28 public abstract void onLocationAvailable(Location[] locations);
  /frameworks/base/services/core/java/com/android/server/location/
GpsMeasurementsProvider.java 17 package com.android.server.location;
19 import android.location.GpsMeasurementsEvent;
20 import android.location.IGpsMeasurementsListener;
GpsNavigationMessageProvider.java 17 package com.android.server.location;
19 import android.location.GpsNavigationMessageEvent;
20 import android.location.IGpsNavigationMessageListener;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationModeBatterySavingTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeDeviceOnlyTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeHighAccuracyTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeOffTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;

Completed in 1784 milliseconds

1 2 3 4 5 6 7 8 91011>>