HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 26 - 50 of 720) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
IGpsStatusListener.aidl 17 package android.location;
19 import android.location.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
31 * Called when the location has changed.
33 * <p> There are no restrictions on the use of the supplied Location object.
35 * @param location The new location, as a Location object.
37 void onLocationChanged(Location location);
    [all...]
ILocationProvider.aidl 17 package android.location;
19 import android.location.Criteria;
20 import android.location.Location;
26 * Binder interface for services that implement location providers.
49 void updateLocation(in Location location);
  /ndk/sources/android/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);
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; local
47 CPPUNIT_ASSERT(location==16);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str); local
57 CPPUNIT_ASSERT(location==4);
67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); local
69 CPPUNIT_ASSERT((location - v1.begin())==12);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less); local
79 CPPUNIT_ASSERT((location - str) == 4);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackPoint.java 17 package com.android.ddmuilib.location;
  /external/bluetooth/glib/gio/tests/
g-icon.c 41 GFile *location; local
50 location = g_file_new_for_uri (uri);
51 icon = g_file_icon_new (location);
60 g_object_unref (location);
63 location = g_file_new_for_uri (uri);
64 icon = g_file_icon_new (location);
73 g_object_unref (location);
76 location = g_file_new_for_uri (uri);
77 icon = g_file_icon_new (location);
86 g_object_unref (location);
    [all...]
  /external/chromium/net/url_request/
url_request_redirect_job.cc 23 bool URLRequestRedirectJob::IsRedirectResponse(GURL* location,
25 *location = redirect_destination_;
url_request_redirect_job.h 21 bool IsRedirectResponse(GURL* location, int* http_status_code);
  /external/stlport/test/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; local
47 CPPUNIT_ASSERT(location==16);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str); local
57 CPPUNIT_ASSERT(location==4);
67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); local
69 CPPUNIT_ASSERT((location - v1.begin())==12);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less); local
79 CPPUNIT_ASSERT((location - str) == 4);
  /frameworks/base/services/java/com/android/server/location/
PassiveProvider.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.ILocationManager;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
31 * A passive location provider reports locations received from other providers
33 * location updates.
133 public void updateLocation(Location location)
    [all...]
LocationProviderInterface.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.Location;
26 * Location Manager's interface for location providers.
53 void updateLocation(Location location);
  /libcore/luni/src/main/java/java/util/
Vector.java 124 * Adds the specified object into this vector at the specified location. The
126 * increasing their index by 1. If the location is equal to the size of this
129 * @param location
134 * if {@code location < 0 || location > size()}.
139 public void add(int location, E object) {
140 insertElementAt(object, location);
161 * Inserts the objects in the specified collection at the specified location
164 * or higher than {@code location} have their index increased by the size of
167 * @param location
    [all...]
AbstractList.java 250 public void add(int location, E object) {
252 if (0 <= location && location <= size) {
253 fullList.add(location + offset, object);
265 public boolean addAll(int location, Collection<? extends E> collection) {
267 if (0 <= location && location <= size) {
268 boolean result = fullList.addAll(location + offset,
295 public E get(int location) {
297 if (0 <= location && location < size)
    [all...]
  /external/bison/src/
complain.h 22 # include "location.h"
33 void warn_at (location loc, char const *format, ...)
41 void complain_at (location loc, char const *format, ...)
49 void fatal_at (location loc, char const *format, ...)
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 39 String location = getHeader(LOCATION); local
40 if (location != null) {
41 into.put(LOCATION, location);
47 /** The name of a dump entry whose value is the response Location header. */
48 public static final String LOCATION = "Location";
  /libcore/luni/src/main/java/java/text/
StringCharacterIterator.java 51 * @param location
54 * if {@code location} is negative or greater than the length
57 public StringCharacterIterator(String value, int location) {
61 if (location < 0 || location > end) {
64 offset = location;
77 * @param location
80 * if {@code start < 0}, {@code start > end}, {@code location <
81 * start}, {@code location > end} or if {@code end} is greater
85 int location) {
    [all...]
CharacterIterator.java 107 * @param location
112 * if {@code location} is less than the begin index or greater than
115 public char setIndex(int location);
  /external/v8/test/mjsunit/
debug-sourceinfo.js 108 var location = script.locationFromPosition(p);
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
123 // Remember the location.
266 var location; variable
    [all...]
  /libcore/luni/src/main/java/java/security/
CodeSource.java 40 * {@code CodeSource} encapsulates the location from where code is loaded and
51 // Location of this CodeSource object
52 private URL location; field in class:CodeSource
71 * @param location
72 * the {@code URL} representing the location from where code is
76 * the specified {@code location}, maybe {@code null}.
78 public CodeSource(URL location, Certificate[] certs) {
79 this.location = location;
90 * @param location
    [all...]
  /cts/tools/signature-tools/src/signature/io/
IApiDeltaExternalizer.java 24 void externalize(String location, IApiDelta delta) throws IOException;
  /external/bluetooth/glib/gthread/
gthread-impl.c 75 gchar *location; member in struct:_GMutexDebugInfo
91 info->location = "invalid";
99 gchar * const location)
102 gchar *loc = (magic == G_MUTEX_DEBUG_MAGIC) ? location : "unknown";
110 loc, info->location);
115 info->location = loc;
121 gchar * const location)
124 gchar *loc = (magic == G_MUTEX_DEBUG_MAGIC) ? location : "unknown";
132 loc, info->location);
138 info->location = loc
    [all...]
  /frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/src/com/android/framework/externalsharedpermstestapp/
ExternalSharedPermsTest.java 20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
33 /** The use of location manager and bluetooth below are simply to simulate an app that
42 public void onLocationChanged(Location location) {}
  /frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/src/com/android/framework/externalsharedpermsdiffkeytestapp/
ExternalSharedPermsDiffKeyTest.java 21 import android.location.Location;
22 import android.location.LocationListener;
23 import android.location.LocationManager;
31 /** The use of location manager and bluetooth below are simply to simulate an app that
40 public void onLocationChanged(Location location) {}
  /frameworks/base/location/lib/
Android.mk 22 LOCAL_MODULE:= com.android.location.provider
31 # ==== com.google.location.xml lib def ========================
34 LOCAL_MODULE := com.android.location.provider.xml

Completed in 639 milliseconds

12 3 4 5 6 7 8 91011>>