Searched refs:value (Results 1 - 25 of 1696) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp730 int value; local
732 err = (*nativeWindow->query)(nativeWindow, NATIVE_WINDOW_CONCRETE_TYPE, &value);
738 switch (value) {
752 nativeWindow, value);
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp120 static const int kEosBufferCntxt = 1980; // a magic value we can compare against
669 // This is for test / demonstration purposes only where we discover the key and value sizes
679 SLMetadataInfo *keyInfo, *value; local
682 value = NULL; valueSize = 0;
H A DslesTestDecodeToBuffQueue.cpp347 // FIXME valid value required but currently ignored
460 // This is for test / demonstration purposes only where we discover the key and value sizes
466 SLMetadataInfo *keyInfo, *value; local
469 value = NULL; valueSize = 0;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
H A DSettings.java84 public void setBoolean(String key, boolean value) { argument
85 getOrSetBoolean(key, true, value);
88 boolean getOrSetBoolean(String key, boolean set, boolean value) { argument
90 return set ? (mPreferStaticShadows = value) : mPreferStaticShadows;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java59 public void set(Dot dot, Float value) {
60 dot.setAlpha(value);
72 public void set(Dot dot, Float value) {
73 dot.setDiameter(value);
85 public void set(Dot dot, Float value) {
86 dot.setTranslationX(value);
H A DStaggeredGridDefault.java25 * Returns the max edge value of item (visible or cached) in a row. This
62 * Returns the min edge value of item (visible or cached) in a row. This
104 int value;
112 value = edge;
119 if (findLarge ? edge > value : edge < value) {
121 value = edge;
127 value = edge + mProvider.getSize(indexLimit);
135 if (findLarge ? newValue > value : newValue < value) {
[all...]
H A DStreamingTextView.java67 public void set(StreamingTextView view, Integer value) {
68 view.setStreamPosition(value);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DDatePicker.java170 * Get format of showing dates. For example "YMD". Default value is from
292 * Gets current date value in milliseconds since January 1, 1970 00:00:00 in
332 private static boolean updateMin(PickerColumn column, int value) { argument
333 if (value != column.getMinValue()) {
334 column.setMinValue(value);
340 private static boolean updateMax(PickerColumn column, int value) { argument
341 if (value != column.getMaxValue()) {
342 column.setMaxValue(value);
H A DPicker.java41 * column value range or labels change. Call {@link #setColumnValue(int, int, boolean)} to update
42 * the current value of PickerColumn.
235 * Manually set current value of a column. The function will update UI and notify listeners.
237 * @param value New value of the column.
238 * @param runAnimation True to scroll to the value or false otherwise.
240 public void setColumnValue(int columnIndex, int value, boolean runAnimation) { argument
242 if (column.getCurrentValue() != value) {
243 column.setCurrentValue(value);
247 int position = value
[all...]
H A DPickerColumn.java18 * Picker column class used by {@link Picker}, defines a contiguous value ranges and associated
20 * a current value.
21 * The labels can be dynamically generated from value by {@link #setLabelFormat(String)} or
37 * integer value. {@link #setStaticLabels(CharSequence[])} overrides the format.
39 * @param labelFormat String format to display label for value between minValue and maxValue.
47 * value.
48 * @return String format to display label for value.
55 * Set static labels for each value, minValue maps to labels[0], maxValue maps to
57 * @param labels Static labels for each value between minValue and maxValue.
64 * Returns static labels for each value, minValu
78 getLabelFor(int value) argument
96 setCurrentValue(int value) argument
[all...]
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DLeanbackListPreferenceDialogFragment.java164 String value = mEntryValues[index].toString();
165 if (preference.callChangeListener(value)) {
166 preference.setValue(value);
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
H A DGridActivity.java258 int value = mItemLengths[index1];
260 mItemLengths[index2] = value;
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaMetadataCompatApi21.java60 public static void putBitmap(Object builderObj, String key, Bitmap value) { argument
61 ((MediaMetadata.Builder)builderObj).putBitmap(key, value);
64 public static void putLong(Object builderObj, String key, long value) { argument
65 ((MediaMetadata.Builder)builderObj).putLong(key, value);
72 public static void putText(Object builderObj, String key, CharSequence value) { argument
73 ((MediaMetadata.Builder) builderObj).putText(key, value);
76 public static void putString(Object builderObj, String key, String value) { argument
77 ((MediaMetadata.Builder) builderObj).putString(key, value);
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java104 public static void setVolumeTo(Object controllerObj, int value, int flags) { argument
105 ((MediaController) controllerObj).setVolumeTo(value, flags);
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewPropertyAnimatorCompatLollipop.java23 public static void translationZ(View view, float value) { argument
24 view.animate().translationZ(value);
27 public static void translationZBy(View view, float value) { argument
28 view.animate().translationZBy(value);
31 public static void z(View view, float value) { argument
32 view.animate().z(value);
35 public static void zBy(View view, float value) { argument
36 view.animate().zBy(value);
/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java94 public static void setTranslationX(View view, float value) { argument
95 view.setTranslationX(value);
98 public static void setTranslationY(View view, float value) { argument
99 view.setTranslationY(value);
106 public static void setAlpha(View view, float value) { argument
107 view.setAlpha(value);
110 public static void setX(View view, float value) { argument
111 view.setX(value);
114 public static void setY(View view, float value) { argument
115 view.setY(value);
118 setRotation(View view, float value) argument
122 setRotationX(View view, float value) argument
126 setRotationY(View view, float value) argument
130 setScaleX(View view, float value) argument
134 setScaleY(View view, float value) argument
138 setPivotX(View view, float value) argument
142 setPivotY(View view, float value) argument
[all...]
/frameworks/support/v4/ics/android/support/v4/net/
H A DDatagramSocketWrapper.java102 protected void sendUrgentData(int value) throws IOException { argument
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java25 public static void setDuration(View view, long value) { argument
26 view.animate().setDuration(value);
29 public static void alpha(View view, float value) { argument
30 view.animate().alpha(value);
33 public static void translationX(View view, float value) { argument
34 view.animate().translationX(value);
37 public static void translationY(View view, float value) { argument
38 view.animate().translationY(value);
45 public static void setInterpolator(View view, Interpolator value) { argument
46 view.animate().setInterpolator(value);
49 setStartDelay(View view, long value) argument
57 alphaBy(View view, float value) argument
61 rotation(View view, float value) argument
65 rotationBy(View view, float value) argument
69 rotationX(View view, float value) argument
73 rotationXBy(View view, float value) argument
77 rotationY(View view, float value) argument
81 rotationYBy(View view, float value) argument
85 scaleX(View view, float value) argument
89 scaleXBy(View view, float value) argument
93 scaleY(View view, float value) argument
97 scaleYBy(View view, float value) argument
105 x(View view, float value) argument
109 xBy(View view, float value) argument
113 y(View view, float value) argument
117 yBy(View view, float value) argument
121 translationXBy(View view, float value) argument
125 translationYBy(View view, float value) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java87 * Use this constant as the value for audioStreamType to request that
142 * @deprecated Use {@link NotificationCompat.Builder#setPriority(int)} with a positive value.
164 * use this value for all notifications.
280 * Notification extras key: this is the progress value supplied to
286 * Notification extras key: this is the maximum value supplied to
1346 * Set the argb value that you would like the LED on the device to blnk, as well as the
1422 * The value should be one or more of the following fields combined with
1437 private void setFlag(int mask, boolean value) { argument
1438 if (value) {
1454 * setPriority value
2652 setFlag(int mask, boolean value) argument
3562 setFlag(int mask, boolean value) argument
[all...]
/frameworks/support/v4/java/android/support/v4/content/res/
H A DTypedArrayUtils.java77 TypedValue value = new TypedValue();
78 context.getTheme().resolveAttribute(attr, value, true);
79 if (value.resourceId != 0) {
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaBrowserCompat.java67 * The value of {@code EXTRA_PAGE} should be greater than or equal to 1.
76 * The value of {@code EXTRA_PAGE_SIZE} should be greater than or equal to 1.
311 @IntDef(flag=true, value = { FLAG_BROWSABLE, FLAG_PLAYABLE })
H A DMediaBrowserServiceCompat.java119 @IntDef(flag=true, value = { RESULT_FLAG_OPTION_NOT_HANDLED })
H A DMediaMetadataCompat.java194 * A String key for identifying the content. This value is specific to the
316 * Returns the value associated with the given key, or null if no mapping of
317 * the desired type exists for the given key or a null value is explicitly
320 * @param key The key the value is stored under
321 * @return a CharSequence value, or null
328 * Returns the value associated with the given key, or null if no mapping of
329 * the desired type exists for the given key or a null value is explicitly
332 * @param key The key the value is stored under
333 * @return a String value, or null
344 * Returns the value associate
616 putText(@extKey String key, CharSequence value) argument
653 putString(@extKey String key, String value) argument
680 putLong(@ongKey String key, long value) argument
704 putRating(@atingKey String key, RatingCompat value) argument
735 putBitmap(@itmapKey String key, Bitmap value) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaSession.aidl47 void setVolumeTo(int value, int flags, String packageName);
H A DMediaControllerCompat.java236 * @param value The value to set it to, between 0 and the reported max.
240 public void setVolumeTo(int value, int flags) { argument
241 mImpl.setVolumeTo(value, flags);
793 * type is {@link PlaybackInfo#PLAYBACK_TYPE_REMOTE} this value does not
854 void setVolumeTo(int value, int flags); argument
1019 public void setVolumeTo(int value, int flags) { argument
1021 mBinder.setVolumeTo(value, flags, null);
1336 public void setVolumeTo(int value, int flags) { argument
1337 MediaControllerCompatApi21.setVolumeTo(mControllerObj, value, flag
[all...]

Completed in 759 milliseconds

1234567891011>>