Searched refs:values (Results 176 - 200 of 315) sorted by relevance

1234567891011>>

/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DMediaPlayerProxyTestCase.java527 ContentValues values = new ContentValues();
528 values.put(VoicemailContract.Voicemails.DATE, String.valueOf(System.currentTimeMillis()));
529 values.put(VoicemailContract.Voicemails.NUMBER, CONTACT_NUMBER);
530 values.put(VoicemailContract.Voicemails.MIME_TYPE, assetMimeType);
533 VoicemailContract.Voicemails.buildSourceUri(packageName), values);
562 for (Uri uri : mContentUriMap.values()) {
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp97 void assertInstanceCount(ssize_t keys, ssize_t values) { argument
98 if (keys != ComplexKey::instanceCount || values != ComplexValue::instanceCount) {
99 FAIL() << "Expected " << keys << " keys and " << values << " values "
101 << ComplexValue::instanceCount << " values";
281 int values = 0; local
286 values |= 1 << h.entryAt(index).value;
288 ASSERT_EQ(values, (1 << (i + 1)) - 1);
/frameworks/base/core/java/android/view/
H A DWindowOrientationListener.java211 // Indices into SensorEvent.values for the accelerometer sensor.
381 float x = event.values[ACCELEROMETER_DATA_X];
382 float y = event.values[ACCELEROMETER_DATA_Y];
383 float z = event.values[ACCELEROMETER_DATA_Z];
393 // or when we see values of (0, 0, 0) which indicates that we polled the
H A DViewPropertyAnimator.java158 * values holder is the list of all property/value objects.
214 * values are used to calculate the animated value for a given animation fraction
768 * constant name for the property along with the from/delta values that will be used to
836 * This method handles setting the property values directly in the View object's fields.
1027 NameValuesHolder values = valueList.get(i);
1028 float value = values.mFromValue + fraction * values.mDeltaValue;
1029 if (values.mNameConstant == ALPHA) {
1032 setValue(values.mNameConstant, value);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s31 ; * of the following values:
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s31 ; * of the following values:
/frameworks/base/core/java/android/content/
H A DIContentProvider.java46 public int update(Uri url, ContentValues values, String selection, argument
H A DContentProviderClient.java157 public int update(Uri url, ContentValues values, String selection, argument
160 return mContentProvider.update(url, values, selection, selectionArgs);
/frameworks/base/core/java/android/util/
H A DXml.java152 for (Encoding encoding : Encoding.values()) {
170 * attribute values at each of the tags as the parser moves
/frameworks/base/core/java/android/webkit/
H A DWebViewDatabaseClassic.java551 * Get all the values for a form entry with "name" in a given site
555 * @return A list of values. Return empty list if nothing is found.
558 ArrayList<String> values = new ArrayList<String>();
560 return values;
586 values.add(dataCursor.getString(valueCol));
600 return values;
/frameworks/base/drm/java/android/drm/
H A DDrmUtils.java35 * {@link DrmUtils.ExtendedMetadataParser} to iterate over those values.
180 * all values of the metadata.
185 return mMap.values().iterator();
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java85 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DAdditionalTextOutput.java41 StringBuilder[] mOutputs = new StringBuilder[OutputType.values().length];
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPorterDuffXfermode_Delegate.java71 for (PorterDuff.Mode m : PorterDuff.Mode.values()) {
/frameworks/base/tools/preload/
H A DPrintCsv.java46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp328 int32_t values[NUM_DISPLAY_ATTRIBUTES - 1]; local
329 memset(values, 0, sizeof(values));
340 err = mHwc->getDisplayAttributes(mHwc, disp, config, DISPLAY_ATTRIBUTES, values);
351 mDisplayData[disp].refresh = nsecs_t(values[i]);
354 mDisplayData[disp].width = values[i];
357 mDisplayData[disp].height = values[i];
360 mDisplayData[disp].xdpi = values[i] / 1000.0f;
363 mDisplayData[disp].ydpi = values[i] / 1000.0f;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DMenu.java72 presentationType = PresentationType.values()[in.readInt()];
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DCachedFrameManager.java87 for (Frame frame : mAvailableFrames.values()) {
/frameworks/base/core/java/android/widget/
H A DGridLayout.java97 * Default values will generally produce a reasonable spacing between components
98 * but values may change between different releases of the platform.
167 * Fields can use this value to indicate that their values
172 * intended to avoid confusion between valid values whose sign may not be known.
711 // Find suitable row/col values when at least one is undefined.
842 // Apply defaults, so as to remove UNDEFINED values
1259 Bounds[] values = groupBounds.values;
1260 for (int i = 0; i < values.length; i++) {
1261 values[
2125 public final V[] values; field in class:GridLayout.PackedMap
2127 PackedMap(K[] keys, V[] values) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java97 * Default values will generally produce a reasonable spacing between components
98 * but values may change between different releases of the platform.
166 * Fields can use this value to indicate that their values
171 * intended to avoid confusion between valid values whose sign may not be known.
691 // Find suitable row/col values when at least one is undefined.
1181 Bounds[] values = groupBounds.values;
1182 for (int i = 0; i < values.length; i++) {
1183 values[i].reset();
1204 // Add values compute
2058 public final V[] values; field in class:GridLayout.PackedMap
2060 PackedMap(K[] keys, V[] values) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java69 * But the actual target object, as well as the start and end values for those properties, are
72 * values of the target being animated (such as one of the items in a layout container that is
73 * moving as a result of the layout event) as well as the values that are changing (such as the
74 * position and size of that object). The actual values that are pushed to each animation
79 * values when the transition begins. Custom animations will be similarly populated with
80 * the target and values being animated, assuming they use ObjectAnimator objects with
208 * are inserted, so that we process events (such as setting up start values) in the same order.
222 * the pre-layout values can be cached in that animation. Then a listener is added to the
224 * is set with the final values and then run. If not, the animation is not started. When
267 // "left" is just a placeholder; we'll put real properties/values i
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp120 jfloatArray values, jintArray status, jlongArray timestamp)
142 env->SetFloatArrayRegion(values, 0, 3, event.vector.v);
119 sensors_data_poll(JNIEnv *env, jclass clazz, jint nativeQueue, jfloatArray values, jintArray status, jlongArray timestamp) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec135 void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
137 void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
139 void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
141 void glVertexAttrib4fv ( GLuint indx, const GLfloat *values )
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DMtpClient.java256 for (UsbDevice usbDevice : mUsbManager.getDeviceList().values()) {
262 return new ArrayList<MtpDevice>(mDevices.values());
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1845 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1849 float[] values,
1853 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1857 java.nio.FloatBuffer values
1868 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1872 float[] values,
1876 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1880 java.nio.FloatBuffer values
1892 // C function void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
1896 float[] values,
1847 glVertexAttrib1fv( int indx, float[] values, int offset ) argument
1870 glVertexAttrib2fv( int indx, float[] values, int offset ) argument
1894 glVertexAttrib3fv( int indx, float[] values, int offset ) argument
1919 glVertexAttrib4fv( int indx, float[] values, int offset ) argument
[all...]

Completed in 524 milliseconds

1234567891011>>