Searched defs:values (Results 126 - 150 of 163) sorted by relevance

1234567

/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp189 jobjectArray keys, jobjectArray values) {
215 env, keys, values, &headersVector)) {
187 android_media_MediaPlayer_setDataSourceAndHeaders( JNIEnv *env, jobject thiz, jobject httpServiceBinderObj, jstring path, jobjectArray keys, jobjectArray values) argument
H A Dandroid_media_MediaCodec.cpp822 jobjectArray keys, jobjectArray values,
834 status_t err = ConvertKeyValueArraysToMessage(env, keys, values, &format);
819 android_media_MediaCodec_native_configure( JNIEnv *env, jobject thiz, jobjectArray keys, jobjectArray values, jobject jsurface, jobject jcrypto, jint flags) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java196 for (InputPort inputPort : mInputPorts.values()) {
206 for (OutputPort outputPort : mOutputPorts.values()) {
285 for (InputPort inputPort : mInputPorts.values()) {
428 return mInputPorts.values();
432 return mOutputPorts.values();
509 for (OutputPort outputPort : mOutputPorts.values()) {
517 for (InputPort inputPort : mInputPorts.values()) {
523 for (OutputPort outputPort : mOutputPorts.values()) {
547 private final void initFinalPorts(KeyValueMap values) { argument
550 addAndSetFinalPorts(values);
553 initRemainingPorts(KeyValueMap values) argument
559 addAndSetFinalPorts(KeyValueMap values) argument
613 setInitialInputValues(KeyValueMap values) argument
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp72 values(NULL),
703 const int* values,
708 // Make sure we have values at all
720 // Make sure passed values are compatible
730 glUniform1iv(var, n, values);
734 glUniform2iv(var, n, values);
738 glUniform3iv(var, n, values);
742 glUniform4iv(var, n, values);
754 const float* values,
759 // Make sure we have values a
702 SetUniformValue(ProgramVar var, const int* values, int count) argument
753 SetUniformValue(ProgramVar var, const float* values, int count) argument
816 SetUniformValue(ProgramVar var, const std::vector<int>& values) argument
820 SetUniformValue(ProgramVar var, const std::vector<float>& values) argument
1060 const float* values = reinterpret_cast<const float*>(attrib.values); local
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java231 * @param values found in the row
235 private Uri getUriFor(Uri tableUri, ContentValues values, long rowId) { argument
243 String name = values.getAsString(Settings.NameValueTable.NAME);
522 // Slurp all values (if sane in number & size) into cache.
573 final ContentValues values = new ContentValues();
574 values.put(Settings.NameValueTable.NAME, Settings.Secure.ANDROID_ID);
575 values.put(Settings.NameValueTable.VALUE, newAndroidIdValue);
576 final Uri uri = insertForUser(Settings.Secure.CONTENT_URI, values, userHandle);
758 final ContentValues values = new ContentValues();
759 values
955 bulkInsert(Uri uri, ContentValues[] values) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java103 * transition. These values determine that factor.
591 private void applyLayoutValues(LayoutValues values) { argument
592 mTime.setScaleX(values.timeScale);
593 mTime.setScaleY(values.timeScale);
594 mClock.setY(values.clockY - mClock.getHeight());
595 mDateGroup.setY(values.dateY);
596 mAlarmStatus.setY(values.dateY - mAlarmStatus.getPaddingTop());
597 mMultiUserAvatar.setScaleX(values.avatarScale);
598 mMultiUserAvatar.setScaleY(values.avatarScale);
599 mMultiUserAvatar.setX(values
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java96 public void set(boolean normalize, int stride, int components, int type, float[] values) { argument
103 if (mLength != values.length){
104 initBuffer(values);
105 mLength = values.length;
107 copyValues(values);
164 GLToolbox.checkGlError("Set vertex-attribute values");
173 private void initBuffer(float[] values) { argument
174 mValues = ByteBuffer.allocateDirect(values.length * FLOAT_SIZE)
178 private void copyValues(float[] values) { argument
179 mValues.put(values)
331 setUniformValue(String uniformName, int[] values) argument
360 setUniformValue(String uniformName, float[] values) argument
773 checkUniformAssignment(ProgramUniform uniform, int values, int components) argument
[all...]
/frameworks/native/include/input/
H A DInput.h196 float values[MAX_AXES]; member in struct:android::PointerCoords
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java98 /* values for bit vector that keeps track of what we have already seen */
296 int count, int[] values)
302 s.append(values[i]);
305 s.append(values[count]);
573 * properties. We don't have any case-sensitive values in RRULE, except possibly
578 * - allows lower-case property and enumeration values [optional]
582 * - improved validation on various values (e.g. UNTIL timestamps)
702 * @return A new array with values, sized to hold the exact number of elements.
706 int[] values;
710 values
295 appendNumbers(StringBuilder s, String label, int count, int[] values) argument
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java414 /** can take any of the following values: {@link #VISIBILITY_HIDDEN}
642 * It can take the following values: {@link #VISIBILITY_HIDDEN},
708 ContentValues values = new ContentValues();
710 values.put(Downloads.Impl.COLUMN_URI, mUri.toString());
711 values.put(Downloads.Impl.COLUMN_IS_PUBLIC_API, true);
712 values.put(Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE, packageName);
715 values.put(Downloads.Impl.COLUMN_DESTINATION, Downloads.Impl.DESTINATION_FILE_URI);
716 values.put(Downloads.Impl.COLUMN_FILE_NAME_HINT, mDestinationUri.toString());
718 values.put(Downloads.Impl.COLUMN_DESTINATION,
724 values
744 encodeHttpHeaders(ContentValues values) argument
[all...]
H A DActivityManagerNative.java2276 ActivityManager.TaskDescription values =
2278 setTaskDescription(token, values);
3688 public void updateConfiguration(Configuration values) throws RemoteException argument
3693 values.writeToParcel(data, 0);
4935 public void updatePersistentConfiguration(Configuration values) throws RemoteException argument
4940 values.writeToParcel(data, 0);
5333 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription values) argument
5339 values.writeToParcel(data, 0);
/frameworks/base/core/java/android/content/
H A DContentResolver.java398 * explicit values in the {@code selection} parameter, so that queries
399 * that differ only by those values will be recognized as the same
412 * replaced by the values from selectionArgs, in the order that they
413 * appear in the selection. The values will be bound as Strings.
434 * explicit values in the {@code selection} parameter, so that queries
435 * that differ only by those values will be recognized as the same
448 * replaced by the values from selectionArgs, in the order that they
449 * appear in the selection. The values will be bound as Strings.
1195 * @param values The initial values fo
1199 insert(Uri url, ContentValues values) argument
1260 bulkInsert(Uri url, ContentValues[] values) argument
1325 update(Uri uri, ContentValues values, String where, String[] selectionArgs) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DResources.java229 * selecting/computing resource values.
231 * selecting/computing resource values (optional).
242 * selecting/computing resource values.
244 * selecting/computing resource values (optional).
552 * Return an array of heterogeneous values.
560 * @return Returns a TypedArray holding an array of the array values.
1323 * This class holds the current attribute values for a particular theme.
1324 * In other words, a Theme is a set of values for resource attributes;
1339 * Place new attribute values into the theme. The style resource
1341 * resources, its values place
1570 resolveAttributes(@onNull int[] values, @NonNull int[] attrs) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java205 * reference to a style resource that supplies default values for
208 * supplies default values for the view, used only if
304 * reference to a style resource that supplies default values for
316 * default style of 0, so the only attribute values applied are those in the
333 * @param context The Context in which to store Preference values.
853 * values into SharedPreferences.
1020 * {@link PreferenceActivity}). This Context will be used to save the Preference values.
1033 * {@link #getPersistedString(String)}. To save values, see
1058 * {@link #persistString(String)}. To read values, see
1470 * @param values Th
1478 persistStringSet(Set<String> values) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java221 ContentValues values = new ContentValues();
226 //values.put(_SYNC_ACCOUNT, account.mName);
227 //values.put(_SYNC_ACCOUNT_TYPE, account.mType);
228 values.put(KEY, key);
229 values.put(VALUE, value);
230 cr.update(Settings.CONTENT_URI, values, null, null);
450 ContentValues values = new ContentValues();
453 values.put(LAST_TIME_CONTACTED, System.currentTimeMillis());
454 resolver.update(uri, values, null, null);
539 ContentValues values
558 createPersonInMyContactsGroup(ContentResolver resolver, ContentValues values) argument
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java871 * <code>values</code>. "^^" is used to produce a single caret in
872 * the output. Only up to 9 replacement values are supported,
877 * placeholder values. This object is not modified; a copy is
880 * @param values CharSequences substituted into the template. The
886 * value that was not provided, or if more than 9 values are
890 CharSequence... values) {
891 if (values.length > 9) {
892 throw new IllegalArgumentException("max of 9 values are supported");
912 if (which >= values.length) {
915 "; only " + values
889 expandTemplate(CharSequence template, CharSequence... values) argument
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java54 * (1) capture property values, and (2) play animations based on changes to
55 * captured property values. A custom transition knows what property values
57 * changes to those values. For example, the {@link Fade} transition tracks
405 * properties on which they based their animations agree with the end values of
406 * the same properties in the new transition. If the end values are not equal,
408 * animation to these new values. If the values are equal, the old animation is
415 * animating views toward potentially different end values.</p>
433 * values tha
2338 TransitionValues values; field in class:Transition.AnimationInfo
2342 AnimationInfo(View view, String name, Transition transition, WindowId windowId, TransitionValues values) argument
[all...]
/frameworks/base/media/java/android/media/
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 DMediaScanner.java758 * Formats the data into a values array suitable for use with the Media
761 * @return a map of values
822 ContentValues values = toValues();
823 String title = values.getAsString(MediaStore.MediaColumns.TITLE);
825 title = MediaFile.getFileTitle(values.getAsString(MediaStore.MediaColumns.DATA));
826 values.put(MediaStore.MediaColumns.TITLE, title);
828 String album = values.getAsString(Audio.Media.ALBUM);
830 album = values.getAsString(MediaStore.MediaColumns.DATA);
844 values.put(Audio.Media.ALBUM, album);
852 // values s
1632 processCachedPlaylist(Cursor fileList, ContentValues values, Uri playlistUri) argument
1662 processM3uPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
1694 processPlsPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
1763 processWplPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
[all...]
H A DMediaPlayer.java645 /* Do not change these values (starting with INVOKE_ID) without updating
746 /* Do not change these video scaling mode values below without updating
1047 String[] values = null;
1051 values = new String[headers.size()];
1056 values[i] = entry.getValue();
1060 setDataSource(path, keys, values);
1063 private void setDataSource(String path, String[] keys, String[] values) argument
1075 values);
1091 IBinder httpServiceBinder, String path, String[] keys, String[] values)
1589 * a particular type. Note that the passed volume values ar
1090 nativeSetDataSource( IBinder httpServiceBinder, String path, String[] keys, String[] values) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java296 private static FloatBuffer createBuffer(float[] values) { argument
298 int size = values.length * FLOAT_SIZE;
301 buffer.put(values, 0, values.length).position(0);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java1599 new ArrayList<AuthoritySyncStats>(authorityMap.values());
1643 authoritySyncStats.accountMap.values());
3259 void set(int row, int col, Object... values) { argument
3260 if (col + values.length > mCols) {
3262 " columns. can't set " + values.length + " at column " + col);
3271 System.arraycopy(values, 0, mTable.get(row), col, values.length);
/frameworks/base/tools/layoutlib/create/tests/data/
H A Dmock_android.jar ... synthetic mock_android.dummy.InnerTest$MyIntEnum[] ENUM$VALUES static void " href="/5.1.1_r6/s? ...
/frameworks/base/core/java/android/widget/
H A DGridLayout.java102 * Default values will generally produce a reasonable spacing between components
103 * but values may change between different releases of the platform.
182 * Fields can use this value to indicate that their values
187 * intended to avoid confusion between valid values whose sign may not be known.
761 // Find suitable row/col values when at least one is undefined.
890 // Apply defaults, so as to remove UNDEFINED values
1316 Bounds[] values = groupBounds.values;
1317 for (int i = 0; i < values.length; i++) {
1318 values[
2324 public final V[] values; field in class:GridLayout.PackedMap
2326 PackedMap(K[] keys, V[] values) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java99 * Default values will generally produce a reasonable spacing between components
100 * but values may change between different releases of the platform.
172 * Fields can use this value to indicate that their values
177 * intended to avoid confusion between valid values whose sign may not be known.
749 // Find suitable row/col values when at least one is undefined.
1193 Bounds[] values = groupBounds.values;
1194 for (int i = 0; i < values.length; i++) {
1195 values[i].reset();
1220 // Add values compute
2199 public final V[] values; field in class:GridLayout.PackedMap
2201 PackedMap(K[] keys, V[] values) argument
[all...]

Completed in 377 milliseconds

1234567