Searched defs:values (Results 76 - 100 of 163) sorted by path

1234567

/frameworks/base/core/jni/
H A Dandroid_animation_PropertyValuesHolder.cpp106 jvalue* values = new jvalue[parameterCount]; local
108 values[i].f = floatValues[i];
110 env->CallVoidMethodA(target, reinterpret_cast<jmethodID>(methodID), values);
111 delete[] values;
133 jvalue* values = new jvalue[parameterCount]; local
135 values[i].i = intValues[i];
137 env->CallVoidMethodA(target, reinterpret_cast<jmethodID>(methodID), values);
138 delete[] values;
H A Dandroid_app_NativeActivity.cpp176 ANativeActivity* activity, int32_t values, int32_t mask) {
178 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FLAGS, values, mask);
175 android_NativeActivity_setWindowFlags( ANativeActivity* activity, int32_t values, int32_t mask) argument
H A Dandroid_opengl_GLES20.cpp149 * returns the number of values glGet returns for a given pname.
151 * The code below is written such that pnames requiring only one values
5598 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
5607 GLfloat *values = (GLfloat *) 0; local
5612 _exceptionMessage = "values == null";
5630 values = values_base + offset;
5634 (GLfloat *)values
5647 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
5657 GLfloat *values = (GLfloat *) 0; local
5659 values
5704 GLfloat *values = (GLfloat *) 0; local
5754 GLfloat *values = (GLfloat *) 0; local
5802 GLfloat *values = (GLfloat *) 0; local
5852 GLfloat *values = (GLfloat *) 0; local
5901 GLfloat *values = (GLfloat *) 0; local
5951 GLfloat *values = (GLfloat *) 0; local
[all...]
H A Dandroid_opengl_GLES30.cpp149 * returns the number of values glGet returns for a given pname.
151 * The code below is written such that pnames requiring only one values
3769 /* void glGetSynciv ( GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values ) */
3781 GLint *values = (GLint *) 0; local
3803 _exceptionMessage = "values == null";
3815 values = values_base + valuesOffset;
3822 (GLint *)values
3839 /* void glGetSynciv ( GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values ) */
3850 GLint *values = (GLint *) 0; local
3853 values
[all...]
H A Dandroid_view_MotionEvent.cpp220 jfloat* values = static_cast<jfloat*>( local
226 outRawPointerCoords->setAxisValue(axis, values[index++]);
229 env->ReleasePrimitiveArrayCritical(valuesArray, values, JNI_ABORT);
299 const float* values = rawPointerCoords->values; local
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java43 public Uri insert(Uri uri, ContentValues values) { argument
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
H A DEnabledProvider.java43 public Uri insert(Uri uri, ContentValues values) { argument
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java44 public Uri insert(Uri uri, ContentValues values) { argument
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
H A DTestReceiver.java44 public Uri insert(Uri uri, ContentValues values) { argument
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java21 public Uri insert(Uri uri, ContentValues values) { argument
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java21 public Uri insert(Uri uri, ContentValues values) { argument
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
139 count = db.update("data", values, "_id=" + rowId, null);
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java57 public Uri insert(Uri uri, ContentValues values) {
59 assertEquals(sTestValues1.toString(), values.toString());
70 public Uri insert(Uri uri, ContentValues values) {
72 assertNull(values);
85 public Uri insert(Uri uri, ContentValues values) {
87 assertEquals(sTestValues1.toString(), values.toString());
109 public Uri insert(Uri uri, ContentValues values) {
114 assertEquals(expected.toString(), values.toString());
127 public Uri insert(Uri uri, ContentValues values) {
129 assertEquals(sTestValues1.toString(), values
421 builderSetValues( ContentProviderOperation.Builder builder, ContentValues values) argument
538 insert(Uri uri, ContentValues values) argument
546 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
[all...]
H A DMemoryFileProvider.java78 ContentValues values = new ContentValues();
79 values.put("_id", 1);
80 values.put("_blob", TEST_BLOB);
81 values.put("integer", 100);
82 db.insert("data", null, values);
163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutTest.java285 private void assertVertMetrics(Layout l, int topPad, int botPad, int... values) { argument
287 assertLinesMetrics(l, values);
290 private void assertLinesMetrics(Layout l, int... values) { argument
292 if ((values.length & 0x1) != 0) {
293 throw new IllegalArgumentException(String.valueOf(values.length));
296 int lines = values.length >> 1;
301 int a = values[n];
302 int d = values[n+1];
/frameworks/base/graphics/java/android/graphics/
H A DInterpolator.java36 * Reset the Interpolator to have the specified number of values and an
38 * values for each keyFrame must be assigned using setKeyFrame().
45 * Reset the Interpolator to have the specified number of values and
46 * keyFrames. After this call the values for each keyFrame must be assigned
65 * values (with an implicity blend array of [0, 0, 1, 1] giving linear
66 * transition to the next set of key values).
71 * @param values Array of values associated with theis key frame
73 public void setKeyFrame(int index, int msec, float[] values) { argument
74 setKeyFrame(index, msec, values, nul
87 setKeyFrame(int index, int msec, float[] values, float[] blend) argument
121 timeToValues(float[] values) argument
136 timeToValues(int msec, float[] values) argument
159 nativeSetKeyFrame(long native_instance, int index, int msec, float[] values, float[] blend) argument
161 nativeTimeToValues(long native_instance, int msec, float[] values) argument
[all...]
H A DMatrix.java214 public void setValues(float[] values) {
278 /** Returns true iff obj is a Matrix and its values equal our values.
337 * Set the matrix to rotate by the specified sine and cosine values, with a
345 /** Set the matrix to rotate by the specified sine and cosine values. */
554 // the native values must match those in SkMatrix.h
562 * Set the matrix to the scale and translate values that map the source
594 * order [x0, y0, x1, y1, ...], where each "point" is 2 float values.
597 * @param srcIndex Index of the first pair of src values
599 * @param dstIndex Index of the first pair of dst values
758 getValues(float[] values) argument
771 setValues(float[] values) argument
912 native_getValues(long native_object, float[] values) argument
914 native_setValues(long native_object, float[] values) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1624 // check for sensical values pulled out of the stream so far...
1950 // important, trumping any values in those following them.
2853 ResStringPool values; member in struct:android::ResTable::Header
3386 header->values.setToEmpty();
3479 if (header->values.getError() != NO_ERROR) {
3482 status_t err = header->values.setTo(chunk, csize);
3514 mError = header->values.getError();
3516 ALOGW("No string values found in resource table!");
3690 ? String8(entry.package->header->values.stringAt(
3876 // with its parent's values
[all...]
/frameworks/base/libs/hwui/
H A DInterpolator.cpp93 LUTInterpolator::LUTInterpolator(float* values, size_t size) { argument
94 mValues = values;
116 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
/frameworks/base/media/java/android/media/
H A DAudioGain.java22 * Gain values are expressed in millibels.
150 * @param values: gain values for each channels.
155 int[] values, int rampDurationMs) {
157 return new AudioGainConfig(mIndex, this, mode, channelMask, values, rampDurationMs);
154 buildConfig(int mode, int channelMask, int[] values, int rampDurationMs) argument
H A DAudioGainConfig.java20 * The AudioGainConfig is used by APIs setting or getting values on a given gain
36 int[] values, int rampDurationMs) {
41 mValues = values;
70 * Gain values for each channel in the order of bits set in
73 public int[] values() { method in class:AudioGainConfig
35 AudioGainConfig(int index, AudioGain gain, int mode, int channelMask, int[] values, int rampDurationMs) argument
H A DMediaCodec.java180 * Picture Parameter Set (PPS) values must be packaged together with an
551 Object[] values = null;
555 values = new Object[formatMap.size()];
568 values[i] = AudioSystem.getAudioHwSyncForSession(sessionId);
571 values[i] = entry.getValue();
577 native_configure(keys, values, surface, crypto, flags);
583 String[] keys, Object[] values,
1249 for (CodecBuffer buffer: mMap.values()) {
1578 Object[] values = new Object[params.size()];
1583 values[
582 native_configure( String[] keys, Object[] values, Surface surface, MediaCrypto crypto, int flags) argument
1666 setParameters(String[] keys, Object[] values) argument
[all...]
H A DMediaExtractor.java129 String[] values = null;
133 values = new String[headers.size()];
138 values[i] = entry.getValue();
147 values);
154 String[] values) throws IOException;
150 nativeSetDataSource( IBinder httpServiceBinder, String path, String[] keys, String[] values) argument
H A DMediaInserter.java50 public void insert(Uri tableUri, ContentValues values) throws RemoteException { argument
51 insert(tableUri, values, false);
54 public void insertwithPriority(Uri tableUri, ContentValues values) throws RemoteException { argument
55 insert(tableUri, values, true);
58 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { argument
65 list.add(new ContentValues(values));

Completed in 647 milliseconds

1234567