HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 51 - 75 of 1250) sorted by null

1 23 4 5 6 7 8 91011>>

  /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
84 public StringCharacterIterator(String value, int start, int end, 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);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CountryMonitor.java 20 import android.location.Country;
21 import android.location.CountryDetector;
22 import android.location.CountryListener;
  /frameworks/base/services/java/com/android/server/location/
LocationBasedCountryDetector.java 17 package com.android.server.location;
20 import android.location.Address;
21 import android.location.Country;
22 import android.location.Geocoder;
23 import android.location.Location;
24 import android.location.LocationListener;
25 import android.location.LocationManager;
37 * location providers and the GeoCoder
39 * Use {@link #detectCountry} to start querying. If the location can not b
    [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);
  /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...]
  /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...]
  /cts/tools/signature-tools/src/signature/io/
IApiDeltaExternalizer.java 24 void externalize(String location, IApiDelta delta) throws IOException;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebGrammarDetail.h 41 static PassRefPtr<WebGrammarDetail> create(int location, int length, ImmutableArray* guesses, const String& userDescription);
44 int location() const { return m_grammarDetail.location; } function in class:WebKit::WebGrammarDetail
52 WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription);
  /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) {}
  /external/chromium/net/url_request/
url_request_redirect_job.cc 24 bool URLRequestRedirectJob::IsRedirectResponse(GURL* location,
26 *location = redirect_destination_;
  /frameworks/base/location/java/android/location/
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);
  /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
  /libcore/luni/src/main/java/java/security/
CodeSource.java 28 public CodeSource(URL location, Certificate[] certs) { }
30 public CodeSource(URL location, CodeSigner[] signers) { }
  /libcore/luni/src/main/java/java/util/
AbstractList.java 244 public void add(int location, E object) {
246 if (location >= 0 && location <= size) {
247 fullList.add(location + offset, object);
259 public boolean addAll(int location, Collection<? extends E> collection) {
261 if (location >= 0 && location <= size) {
262 boolean result = fullList.addAll(location + offset,
289 public E get(int location) {
291 if (location >= 0 && location < size)
    [all...]
List.java 29 * Inserts the specified object into this {@code List} at the specified location.
31 * location. If the location is equal to the size of this {@code List}, the object
32 * is added at the end. If the location is smaller than the size of this
33 * {@code List}, then all elements beyond the specified location are moved by one
36 * @param location
48 * if {@code location < 0 || location > size()}
50 public void add(int location, E object);
69 * Inserts the objects in the specified collection at the specified location
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackContentProvider.java 17 package com.android.ddmuilib.location;
19 import com.android.ddmuilib.location.GpxParser.Track;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SystemImage.java 26 * A system image has an installation path, a location type and an ABI type.
39 * @param location The location of an installed system image.
44 public SystemImage(File location, LocationType locationType, String abiType) {
45 mLocation = location;
52 * The actual location is computed based on the {@code locationtype}.
69 File location = null; local
72 location = new File(target.getLocation(), SdkConstants.OS_IMAGES_FOLDER);
76 location = FileOp.append(target.getLocation(), SdkConstants.OS_IMAGES_FOLDER, abiType);
82 "Add-ons do not support the system-image location type"); //$NON-NLS-1
    [all...]
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.h 130 static void s_glGetUniformiv(void *self, GLuint program, GLint location , GLint *params);
133 static void s_glGetUniformfv(void *self, GLuint program, GLint location , GLfloat *params);
169 static void s_glUniform1f(void *self , GLint location, GLfloat x);
170 static void s_glUniform1fv(void *self , GLint location, GLsizei count, const GLfloat* v);
171 static void s_glUniform1i(void *self , GLint location, GLint x);
172 static void s_glUniform1iv(void *self , GLint location, GLsizei count, const GLint* v);
173 static void s_glUniform2f(void *self , GLint location, GLfloat x, GLfloat y);
174 static void s_glUniform2fv(void *self , GLint location, GLsizei count, const GLfloat* v);
175 static void s_glUniform2i(void *self , GLint location, GLint x, GLint y);
176 static void s_glUniform2iv(void *self , GLint location, GLsizei count, const GLint* v)
    [all...]
  /external/llvm/lib/Target/
TargetMachine.cpp 56 cl::location(PrintMachineCode), cl::init(false));
60 cl::location(NoFramePointerElim),
65 cl::location(NoFramePointerElimNonLeaf),
70 cl::location(NoExcessFPPrecision),
75 cl::location(LessPreciseFPMADOption),
80 cl::location(UnsafeFPMath),
85 cl::location(NoInfsFPMath),
90 cl::location(NoNaNsFPMath),
96 cl::location(HonorSignDependentRoundingFPMathOption),
101 cl::location(UseSoftFloat)
    [all...]
  /external/stlport/test/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationProviderTest.java 17 package android.location.cts;
24 import android.location.Criteria;
25 import android.location.LocationManager;
26 import android.location.LocationProvider;
80 args = {android.location.Criteria.class}

Completed in 872 milliseconds

1 23 4 5 6 7 8 91011>>