Searched refs:location (Results 101 - 125 of 281) sorted by relevance

1234567891011>>

/frameworks/base/location/tests/locationtests/src/android/location/
H A DCountryTester.java17 package android.location;
H A DLocationManagerTest.java17 package android.location;
20 import android.location.Criteria;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationFudger.java17 package com.android.server.location;
24 import android.location.Location;
35 * the coarse location permission from receiving a fine location.
122 * Best location accuracy allowed for coarse applications.
163 * Get the cached coarse location, or generate a new one and cache it.
165 public Location getOrCreate(Location location) { argument
167 Location coarse = location.getExtraLocation(Location.EXTRA_COARSE_LOCATION);
169 return addCoarseLocationExtraLocked(location);
172 return addCoarseLocationExtraLocked(location);
178 addCoarseLocationExtraLocked(Location location) argument
[all...]
H A DGpsStatusListenerHelper.java17 package com.android.server.location;
19 import android.location.IGpsStatusListener;
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneResultAdapter.java67 TextView location; field in class:TimeZoneResultAdapter.ViewHolder
73 vh.location = (TextView) v.findViewById(R.id.location);
290 String location = tzi.mCountry;
291 if (location == null) {
292 vh.location.setVisibility(View.INVISIBLE);
294 vh.location.setText(location);
295 vh.location.setVisibility(View.VISIBLE);
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1164 // C function void glGetUniformfv ( GLuint program, GLint location, GLfloat *params )
1168 int location,
1173 // C function void glGetUniformfv ( GLuint program, GLint location, GLfloat *params )
1177 int location,
1181 // C function void glGetUniformiv ( GLuint program, GLint location, GLint *params )
1185 int location,
1190 // C function void glGetUniformiv ( GLuint program, GLint location, GLint *params )
1194 int location,
1508 // C function void glUniform1f ( GLint location, GLfloat x )
1511 int location,
1166 glGetUniformfv( int program, int location, float[] params, int offset ) argument
1175 glGetUniformfv( int program, int location, java.nio.FloatBuffer params ) argument
1183 glGetUniformiv( int program, int location, int[] params, int offset ) argument
1192 glGetUniformiv( int program, int location, java.nio.IntBuffer params ) argument
1510 glUniform1f( int location, float x ) argument
1517 glUniform1fv( int location, int count, float[] v, int offset ) argument
1526 glUniform1fv( int location, int count, java.nio.FloatBuffer v ) argument
1534 glUniform1i( int location, int x ) argument
1541 glUniform1iv( int location, int count, int[] v, int offset ) argument
1550 glUniform1iv( int location, int count, java.nio.IntBuffer v ) argument
1558 glUniform2f( int location, float x, float y ) argument
1566 glUniform2fv( int location, int count, float[] v, int offset ) argument
1575 glUniform2fv( int location, int count, java.nio.FloatBuffer v ) argument
1583 glUniform2i( int location, int x, int y ) argument
1591 glUniform2iv( int location, int count, int[] v, int offset ) argument
1600 glUniform2iv( int location, int count, java.nio.IntBuffer v ) argument
1608 glUniform3f( int location, float x, float y, float z ) argument
1617 glUniform3fv( int location, int count, float[] v, int offset ) argument
1626 glUniform3fv( int location, int count, java.nio.FloatBuffer v ) argument
1634 glUniform3i( int location, int x, int y, int z ) argument
1643 glUniform3iv( int location, int count, int[] v, int offset ) argument
1652 glUniform3iv( int location, int count, java.nio.IntBuffer v ) argument
1660 glUniform4f( int location, float x, float y, float z, float w ) argument
1670 glUniform4fv( int location, int count, float[] v, int offset ) argument
1679 glUniform4fv( int location, int count, java.nio.FloatBuffer v ) argument
1687 glUniform4i( int location, int x, int y, int z, int w ) argument
1697 glUniform4iv( int location, int count, int[] v, int offset ) argument
1706 glUniform4iv( int location, int count, java.nio.IntBuffer v ) argument
1714 glUniformMatrix2fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1724 glUniformMatrix2fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
1733 glUniformMatrix3fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1743 glUniformMatrix3fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
1752 glUniformMatrix4fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1762 glUniformMatrix4fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
[all...]
/frameworks/base/location/java/android/location/
H A DLocationProvider.java17 package android.location;
20 import com.android.internal.location.ProviderProperties;
23 * An abstract superclass for location providers. A location provider
24 * provides periodic reports on the geographical location of the
197 * If the provider returns finer grain or exact location,
199 * location is only approximate then {@link Criteria#ACCURACY_COARSE}
/frameworks/base/location/java/com/android/internal/location/
H A DProviderRequest.java17 package com.android.internal.location;
22 import android.location.LocationRequest;
38 * fine tune location updates, for example when there
/frameworks/base/location/lib/java/com/android/location/provider/
H A DGmsFusedBatchOptions.java17 package com.android.location.provider;
19 import android.location.FusedBatchOptions;
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScope.java39 public static void enter(final Location location) { argument
43 return Arrays.asList(location);
130 for (Location location : locations) {
131 sb.append(location).append("\n");
167 // We have more than 1 location. Depending on the scope, we may or may not want all of them
169 for (Location location : locations) {
170 Location absLocation = location.toAbsoluteLocation();
188 for (Location location : absoluteParents) {
189 if (location.contains(absLocation)) {
/frameworks/data-binding/compilerCommon/src/test/java/android/databinding/tool/store/
H A DLocationTest.java35 Location location = new Location(0, 0, 1, 1);
36 assertTrue(location.isValid());
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBaseCluster.java17 import android.location.Location;
47 public BaseCluster(Location location) { argument
48 mCenter = getLocationVector(location);
75 protected double[] getLocationVector(Location location) { argument
76 return getLocationVector(location.getLongitude(), location.getLatitude());
116 public float distanceToCenter(Location location) { argument
117 return (float) computeDistance(mCenter, getLocationVector(location));
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DBaseCompilationTest.java108 * Extracts the text in the given location from the the at the given application path.
111 * @param location The location to extract
112 * @return The string that is contained in the given location
115 protected String extract(String pathInApp, Location location) throws IOException { argument
120 for (int i = location.startLine; i <= location.endLine; i++) {
121 if (i > location.startLine) {
126 if (i == location.startLine) {
127 start = location
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java24 import com.android.server.location.ComprehensiveCountryDetector;
27 import android.location.Country;
28 import android.location.CountryListener;
29 import android.location.ICountryDetector;
30 import android.location.ICountryListener;
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp21 #define LOCATION_CLASS_NAME "android/location/Location"
195 "([Landroid/location/Location;)V");
216 "(ILandroid/location/Location;IJI)V"
221 "(IILandroid/location/Location;)V"
267 FlpLocation& location) {
268 location.size = sizeof(FlpLocation);
269 location.flags = 0;
274 location.latitude = env->CallDoubleMethod(locationObject, getLatitude);
276 location.longitude = env->CallDoubleMethod(locationObject, getLongitude);
278 location
264 TranslateFromObject( JNIEnv* env, jobject locationObject, FlpLocation& location) argument
444 TranslateToObject(const FlpLocation* location, jobject& locationObject) argument
616 GeofenceTransitionCallback( int32_t geofenceId, FlpLocation* location, int32_t transition, FlpUtcTime timestamp, uint32_t sourcesUsed ) argument
882 FlpLocation location; local
[all...]
H A Dcom_android_server_location_GpsLocationProvider.cpp87 static void location_callback(GpsLocation* location) argument
90 env->CallVoidMethod(mCallbacksObj, method_reportLocation, location->flags,
91 (jdouble)location->latitude, (jdouble)location->longitude,
92 (jdouble)location->altitude,
93 (jfloat)location->speed, (jfloat)location->bearing,
94 (jfloat)location->accuracy, (jlong)location->timestamp);
351 static void gps_geofence_transition_callback(int32_t geofence_id, GpsLocation* location, argument
365 gps_geofence_status_callback(int32_t status, GpsLocation* location) argument
646 AGpsRefLocation location; local
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec23 void glUniformMatrix2x3fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
24 void glUniformMatrix3x2fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
25 void glUniformMatrix2x4fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
26 void glUniformMatrix4x2fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
27 void glUniformMatrix3x4fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
28 void glUniformMatrix4x3fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
53 void glGetUniformuiv ( GLuint program, GLint location, GLuint *params )
55 void glUniform1ui ( GLint location, GLuint v0 )
56 void glUniform2ui ( GLint location, GLuint v0, GLuint v1 )
57 void glUniform3ui ( GLint location, GLuin
[all...]
/frameworks/base/libs/hwui/tests/
H A Dnullgles.cpp226 void glUniform1f(GLint location, GLfloat v0) {} argument
227 void glUniform1fv(GLint location, GLsizei count, const GLfloat *value) {} argument
228 void glUniform1i(GLint location, GLint v0) {} argument
229 void glUniform1iv(GLint location, GLsizei count, const GLint *value) {} argument
230 void glUniform2f(GLint location, GLfloat v0, GLfloat v1) {} argument
231 void glUniform2fv(GLint location, GLsizei count, const GLfloat *value) {} argument
232 void glUniform2i(GLint location, GLint v0, GLint v1) {} argument
233 void glUniform2iv(GLint location, GLsizei count, const GLint *value) {} argument
234 void glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) {} argument
235 void glUniform3fv(GLint location, GLsize argument
236 glUniform3i(GLint location, GLint v0, GLint v1, GLint v2) argument
237 glUniform3iv(GLint location, GLsizei count, const GLint *value) argument
238 glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
239 glUniform4fv(GLint location, GLsizei count, const GLfloat *value) argument
240 glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
241 glUniform4iv(GLint location, GLsizei count, const GLint *value) argument
242 glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
243 glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
244 glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewOverlay.java172 // it is in the same location on the screen
327 public ViewParent invalidateChildInParent(int[] location, Rect dirty) { argument
329 dirty.offset(location[0], location[1]);
331 location[0] = 0;
332 location[1] = 0;
333 super.invalidateChildInParent(location, dirty);
334 return ((ViewGroup) mHostView).invalidateChildInParent(location, dirty);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DResourceBundle.java320 found.location.createScope());
372 // The location of the name of the generated class, optional
424 public void addVariable(String name, String type, Location location) { argument
426 "Cannot use same variable name twice. %s in %s", name, location);
427 mVariables.add(new NameTypeLocation(name, type, location));
430 public void addImport(String alias, String type, Location location) { argument
432 "Cannot import same alias twice. %s in %s", alias, location);
433 mImports.add(new NameTypeLocation(alias, type, location));
437 boolean used, String tag, String originalTag, Location location) {
439 originalTag, location);
436 createBindingTarget(String id, String viewName, boolean used, String tag, String originalTag, Location location) argument
494 setBindingClass(String bindingClass, Location location) argument
597 public Location location; field in class:ResourceBundle.NameTypeLocation
602 NameTypeLocation(String name, String type, Location location) argument
689 BindingTargetBundle(String id, String viewName, boolean used, String tag, String originalTag, Location location) argument
699 addBinding(String name, String expr, Location location, Location valueLocation) argument
719 setLocation(Location location) argument
789 BindingBundle(String name, String expr, Location location, Location valueLocation) argument
820 setLocation(Location location) argument
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPart.java257 throw new NullPointerException("null content-location");
394 // Assumption: At least one of the content-location / name / filename
397 byte[] location = (byte[]) mPartHeader.get(P_NAME);
398 if(null == location) {
399 location = (byte[]) mPartHeader.get(P_FILENAME);
401 if (null == location) {
402 location = (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
406 if (null == location) {
410 return new String(location);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h98 void GLTrace_glGetUniformfv(GLuint program, GLint location, GLfloat * params);
99 void GLTrace_glGetUniformiv(GLuint program, GLint location, GLint * params);
135 void GLTrace_glUniform1f(GLint location, GLfloat v0);
136 void GLTrace_glUniform1fv(GLint location, GLsizei count, const GLfloat * value);
137 void GLTrace_glUniform1i(GLint location, GLint v0);
138 void GLTrace_glUniform1iv(GLint location, GLsizei count, const GLint * value);
139 void GLTrace_glUniform2f(GLint location, GLfloat v0, GLfloat v1);
140 void GLTrace_glUniform2fv(GLint location, GLsizei count, const GLfloat * value);
141 void GLTrace_glUniform2i(GLint location, GLint v0, GLint v1);
142 void GLTrace_glUniform2iv(GLint location, GLsize
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/location/
H A DLocationBasedCountryDetectorTest.java16 package com.android.server.location;
18 import android.location.Country;
19 import android.location.CountryListener;
20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
59 protected String getCountryFromLocation(Location location) { argument
68 if (mLocation.getProvider().endsWith(location.getProvider())) {
290 protected String getCountryFromLocation(Location location) {
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareService.java17 package android.hardware.location;
23 import android.location.IFusedGeofenceHardware;
24 import android.location.IGpsGeofenceHardware;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp1117 /* void glProgramUniform1i ( GLuint program, GLint location, GLint v0 ) */
1120 (JNIEnv *_env, jobject _this, jint program, jint location, jint v0) {
1123 (GLint)location,
1128 /* void glProgramUniform2i ( GLuint program, GLint location, GLint v0, GLint v1 ) */
1131 (JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1) {
1134 (GLint)location,
1140 /* void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 ) */
1143 (JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1, jint v2) {
1146 (GLint)location,
1153 /* void glProgramUniform4i ( GLuint program, GLint location, GLin
1119 android_glProgramUniform1i__III(JNIEnv *_env, jobject _this, jint program, jint location, jint v0) argument
1130 android_glProgramUniform2i__IIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1) argument
1142 android_glProgramUniform3i__IIIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1, jint v2) argument
1155 android_glProgramUniform4i__IIIIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1, jint v2, jint v3) argument
1169 android_glProgramUniform1ui__III(JNIEnv *_env, jobject _this, jint program, jint location, jint v0) argument
1180 android_glProgramUniform2ui__IIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1) argument
1192 android_glProgramUniform3ui__IIIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1, jint v2) argument
1205 android_glProgramUniform4ui__IIIIII(JNIEnv *_env, jobject _this, jint program, jint location, jint v0, jint v1, jint v2, jint v3) argument
1219 android_glProgramUniform1f__IIF(JNIEnv *_env, jobject _this, jint program, jint location, jfloat v0) argument
1230 android_glProgramUniform2f__IIFF(JNIEnv *_env, jobject _this, jint program, jint location, jfloat v0, jfloat v1) argument
1242 android_glProgramUniform3f__IIFFF(JNIEnv *_env, jobject _this, jint program, jint location, jfloat v0, jfloat v1, jfloat v2) argument
1255 android_glProgramUniform4f__IIFFFF(JNIEnv *_env, jobject _this, jint program, jint location, jfloat v0, jfloat v1, jfloat v2, jfloat v3) argument
1269 android_glProgramUniform1iv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1314 android_glProgramUniform1iv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1339 android_glProgramUniform2iv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1384 android_glProgramUniform2iv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1409 android_glProgramUniform3iv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1454 android_glProgramUniform3iv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1479 android_glProgramUniform4iv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1524 android_glProgramUniform4iv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1549 android_glProgramUniform1uiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1594 android_glProgramUniform1uiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1619 android_glProgramUniform2uiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1664 android_glProgramUniform2uiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1689 android_glProgramUniform3uiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1734 android_glProgramUniform3uiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1759 android_glProgramUniform4uiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jintArray value_ref, jint offset) argument
1804 android_glProgramUniform4uiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1829 android_glProgramUniform1fv__III_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jfloatArray value_ref, jint offset) argument
1874 android_glProgramUniform1fv__IIILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1899 android_glProgramUniform2fv__III_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jfloatArray value_ref, jint offset) argument
1944 android_glProgramUniform2fv__IIILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
1969 android_glProgramUniform3fv__III_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jfloatArray value_ref, jint offset) argument
2014 android_glProgramUniform3fv__IIILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
2039 android_glProgramUniform4fv__III_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jfloatArray value_ref, jint offset) argument
2084 android_glProgramUniform4fv__IIILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jobject value_buf) argument
2109 android_glProgramUniformMatrix2fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2155 android_glProgramUniformMatrix2fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2181 android_glProgramUniformMatrix3fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2227 android_glProgramUniformMatrix3fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2253 android_glProgramUniformMatrix4fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2299 android_glProgramUniformMatrix4fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2325 android_glProgramUniformMatrix2x3fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2371 android_glProgramUniformMatrix2x3fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2397 android_glProgramUniformMatrix3x2fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2443 android_glProgramUniformMatrix3x2fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2469 android_glProgramUniformMatrix2x4fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2515 android_glProgramUniformMatrix2x4fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2541 android_glProgramUniformMatrix4x2fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2587 android_glProgramUniformMatrix4x2fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2613 android_glProgramUniformMatrix3x4fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2659 android_glProgramUniformMatrix3x4fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
2685 android_glProgramUniformMatrix4x3fv__IIIZ_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
2731 android_glProgramUniformMatrix4x3fv__IIIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jint count, jboolean transpose, jobject value_buf) argument
[all...]

Completed in 1154 milliseconds

1234567891011>>