Searched refs:location (Results 151 - 175 of 347) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java17 package com.android.server.location;
21 import com.android.internal.location.GpsNetInitiatedHandler;
22 import com.android.internal.location.GpsNetInitiatedHandler.GpsNiNotification;
23 import com.android.internal.location.ProviderProperties;
24 import com.android.internal.location.ProviderRequest;
34 import android.hardware.location.GeofenceHardware;
35 import android.hardware.location.GeofenceHardwareImpl;
36 import android.location.Criteria;
37 import android.location.FusedBatchOptions;
38 import android.location
1061 handleUpdateLocation(Location location) argument
2274 onLocationChanged(Location location) argument
[all...]
H A DLocationProviderProxy.java17 package com.android.server.location;
23 import android.location.LocationProvider;
30 import com.android.internal.location.ProviderProperties;
31 import com.android.internal.location.ILocationProvider;
32 import com.android.internal.location.ProviderRequest;
49 // cached values set by the location manager, synchronized on mLock
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java60 String location; field in class:CacheManager.CacheResult
154 return location;
/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingService.java284 * @param location the optional URI to send this MMS PDU. If this is {code null},
289 @Nullable Uri location, @NonNull ResultCallback<SendMmsResult> callback) {
302 * @param location the URI of the message to be downloaded.
307 public void onDownloadMms(@NonNull Uri contentUri, int subId, @NonNull Uri location, argument
515 public void sendMms(Uri pduUri, int subId, Uri location, argument
517 onSendMms(pduUri, subId, location, new ResultCallback<SendMmsResult>() {
526 public void downloadMms(Uri pduUri, int subId, Uri location, argument
528 onDownloadMms(pduUri, subId, location, new ResultCallback<Integer>() {
288 onSendMms(@onNull Uri pduUri, int subId, @Nullable Uri location, @NonNull ResultCallback<SendMmsResult> callback) argument
/frameworks/support/transition/ics/android/support/transition/
H A DViewOverlay.java218 // it is in the same location on the screen
346 public ViewParent invalidateChildInParent(int[] location, Rect dirty) { argument
348 dirty.offset(location[0], location[1]);
350 location[0] = 0;
351 location[1] = 0;
355 return super.invalidateChildInParent(location, dirty);
356 // return ((ViewGroup) mHostView).invalidateChildInParent(location, dirty);
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h459 typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params);
460 typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params);
496 typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0);
497 typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value);
498 typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0);
499 typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value);
500 typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1);
501 typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value);
502 typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1);
503 typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsize
[all...]
H A Dgl2ext.h180 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
181 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params);
182 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params);
186 GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
187 GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params);
188 GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params);
1400 typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices);
1404 GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices);
1479 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
1480 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsize
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyRequestMapper.java27 import android.location.Location;
386 Location location = request.get(JPEG_GPS_LOCATION);
387 if (location != null) {
388 if (checkForCompleteGpsData(location)) {
389 params.setGpsAltitude(location.getAltitude());
390 params.setGpsLatitude(location.getLatitude());
391 params.setGpsLongitude(location.getLongitude());
392 params.setGpsProcessingMethod(location.getProvider().toUpperCase());
393 params.setGpsTimestamp(location.getTime());
395 Log.w(TAG, "Incomplete GPS parameters provided in location "
458 checkForCompleteGpsData(Location location) argument
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp111 static void location_callback(GpsLocation* location) argument
114 env->CallVoidMethod(mCallbacksObj, method_reportLocation, location->flags,
115 (jdouble)location->latitude, (jdouble)location->longitude,
116 (jdouble)location->altitude,
117 (jfloat)location->speed, (jfloat)location->bearing,
118 (jfloat)location->accuracy, (jlong)location->timestamp);
468 static void gps_geofence_transition_callback(int32_t geofence_id, GpsLocation* location, argument
482 gps_geofence_status_callback(int32_t status, GpsLocation* location) argument
761 AGpsRefLocation location; local
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java169 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid);
238 SmsCbMessage msg = new SmsCbMessage(format, geoScope, serialNum, location, category,
257 SmsCbLocation location = msg.getLocation();
258 if (location.getPlmn() != null) {
259 cv.put(Telephony.CellBroadcasts.PLMN, location.getPlmn());
261 if (location.getLac() != -1) {
262 cv.put(Telephony.CellBroadcasts.LAC, location.getLac());
264 if (location.getCid() != -1) {
265 cv.put(Telephony.CellBroadcasts.CID, location.getCid());
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DGreedyLineBreaker.java80 breakInfo.mBreaksList.add(mPrimitives.get(goodBreakIndex).location);
89 breakInfo.mBreaksList.add(mPrimitives.get(breakIndex).location);
114 breakInfo.mBreaksList.add(p.location);
147 breakInfo.mBreaksList.add(mPrimitives.get(goodBreakIndex).location);
151 breakInfo.mBreaksList.add(mPrimitives.get(breakIndex).location);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DLayoutBinder.java179 addVariable(variable.name, variable.type, variable.location, variable.declared);
184 mExprModel.addImport(userImport.name, userImport.type, userImport.location);
263 public IdentifierExpr addVariable(String name, String type, Location location, argument
270 if (location != null) {
271 id.addLocation(location);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSmsCbMessage.java62 public static SmsCbMessage createSmsCbMessage(SmsCbHeader header, SmsCbLocation location, argument
72 location, header.getServiceCategory(),
87 header.getGeographicalScope(), header.getSerialNumber(), location,
97 * @param location the location (geographical scope) for the message
100 public static SmsCbMessage createSmsCbMessage(SmsCbLocation location, byte[][] pdus) argument
103 return createSmsCbMessage(header, location, pdus);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java206 int[] location = new int[2];
207 mEventSource.getLocationOnScreen(location);
208 x += location[0];
209 y += location[1];
225 int[] location = new int[2];
226 mEventSource.getLocationOnScreen(location);
227 x += location[0];
228 y += location[1];
231 int[] location = new int[2];
232 v.getLocationOnScreen(location);
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExprModel.java92 Location location = null;
94 location = new Location(mCurrentParserContext);
95 location.setParentLocation(mCurrentLocationInFile);
106 if (location != null) {
107 existing.addLocation(location);
113 if (location != null) {
114 expr.addLocation(location);
258 public StaticIdentifierExpr addImport(String alias, String type, Location location) { argument
264 if (location != null) {
265 id.addLocation(location);
629 setCurrentLocationInFile(Location location) argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregatorManager.java98 // Set an empty string "" to disable the fake location
99 public boolean setFakeLocation(String location) { argument
103 agg.setFakeLocation(location);
104 mFakeLocation = location;
H A DClusterManager.java20 import android.location.Location;
31 * ClusterManager incrementally indentify representitve clusters from the input location
35 * location data are released.
45 // Consoliate location clusters (and check for new semantic clusters)
49 // A location cluster can be labeled as a semantic cluster if it has been
53 // Reset location cluters every 24 hours (86400 seconds).
107 public void addSample(Location location) { argument
111 long currentTime = location.getTime() / 1000; // measure time in seconds
114 if (location.getTime() == mLastLocation.getTime()) {
117 // get the duration spent in the last location
[all...]
/frameworks/native/vulkan/libvulkan/
H A Ddebug_report.h30 VKAPI_ATTR void DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage);
53 size_t location,
96 size_t location,
/frameworks/base/location/java/android/location/
H A DGeocoder.java17 package android.location;
20 import android.location.Address;
34 * of a location into a (latitude, longitude) coordinate. Reverse
37 * reverse geocoded location description may vary, for example one
148 * named location, which may be a place name such as "Dalvik,
159 * @param locationName a user-supplied description of a location
190 * named location, which may be a place name such as "Dalvik,
205 * @param locationName a user-supplied description of a location
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneStateListener.aidl35 void onCellLocationChanged(in Bundle location);
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h459 typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params);
460 typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params);
496 typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0);
497 typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value);
498 typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0);
499 typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value);
500 typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1);
501 typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value);
502 typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1);
503 typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsize
[all...]
/frameworks/av/include/ndk/
H A DNdkMediaExtractor.h64 media_status_t AMediaExtractor_setDataSource(AMediaExtractor*, const char *location);
/frameworks/base/core/java/android/hardware/location/
H A DActivityChangedEvent.java17 package android.hardware.location;
H A DActivityRecognitionEvent.java17 package android.hardware.location;
H A DContextHubMessage.java17 package android.hardware.location;

Completed in 8237 milliseconds

1234567891011>>