/aosp12/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
H A D | VCardEntryTests.java | 115 property.setValues("test1"); in testNestHandling() 121 property.setValues("test2"); in testNestHandling() 127 property.setValues("1"); in testNestHandling() 221 property.setValues("1"); in testEntryElementIterator() 229 property.setValues("email"); in testEntryElementIterator() 255 property.setValues("googletalk"); in testEntryElementIterator() 272 property.setValues("sipdata"); in testEntryElementIterator() 279 property.setValues("nickname"); in testEntryElementIterator() 286 property.setValues("note"); in testEntryElementIterator() 293 property.setValues("birthday"); in testEntryElementIterator() [all …]
|
/aosp12/system/core/libcutils/ |
H A D | properties_test.cpp | 294 const char* setValues[] = { in TEST_F() local 322 ASSERT_EQ(arraysize(setValues), arraysize(getValues)); in TEST_F() 324 for (size_t i = 0; i < arraysize(setValues); ++i) { in TEST_F() 325 ASSERT_OK(property_set(PROPERTY_TEST_KEY, setValues[i])); in TEST_F() 328 …_PRED_FORMAT2(AssertEqualHex, getValues[i], val) << "Property was set to '" << setValues[i] << "'"; in TEST_F() 341 const char* setValues[] = { in TEST_F() local 369 ASSERT_EQ(arraysize(setValues), arraysize(getValues)); in TEST_F() 371 for (size_t i = 0; i < arraysize(setValues); ++i) { in TEST_F() 372 ASSERT_OK(property_set(PROPERTY_TEST_KEY, setValues[i])); in TEST_F() 375 …_PRED_FORMAT2(AssertEqualHex, getValues[i], val) << "Property was set to '" << setValues[i] << "'"; in TEST_F()
|
/aosp12/packages/apps/TV/tests/robotests/src/com/android/tv/guide/ |
H A D | ProgramItemViewTest.java | 160 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_noProgram() 169 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_programNoTitle() 179 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_programTitle() 192 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_programDescriptionBlocked() 206 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_programEpisode() 221 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_programEpisodeAndDescrition() 238 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_scheduledConflict() 255 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_scheduled() 272 mPprogramItemView.setValues(null, tableEntry, 0, 0, 0, "a gap"); in setValue_recordingInProgress()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/accessibility/ |
H A D | ColorPreferenceTest.java | 102 mColorPreference.setValues(mColorValues); in setTitles_noTitle_returnRGBText() 123 mColorPreference.setValues(mColorValues); in onBindViewHolder_enabled_transparent_matchBackgroundResource() 137 mColorPreference.setValues(mColorValues); in onBindViewHolder_enabled_titlesExist_matchDescription() 148 mColorPreference.setValues(mColorValues); in onBindViewHolder_disabled_matchAlpha() 163 mColorPreference.setValues(mColorValues); in onBindListItem_transparent_matchBackgroundResource() 178 mColorPreference.setValues(mColorValues); in onBindListItem_colorDrawable_matchColor() 193 mColorPreference.setValues(mColorValues); in onBindListItem_colorDrawable_matchSummary()
|
/aosp12/frameworks/layoutlib/bridge/src/android/graphics/drawable/ |
H A D | AnimatedVectorDrawable_Delegate.java | 74 animator.setValues(holder.getValues()); in nAddAnimator() 142 setter.setValues(data); in nSetPropertyHolderData() 150 setter.setValues(data); in nSetPropertyHolderData() 250 void setValues(float... values) { in setValues() method in AnimatedVectorDrawable_Delegate.PropertySetter 259 void setValues(int... values) { in setValues() method in AnimatedVectorDrawable_Delegate.PropertySetter 271 setter.setValues(values); in of() 288 setter.setValues(values); in of()
|
/aosp12/frameworks/layoutlib/bridge/tests/src/android/graphics/ |
H A D | Matrix_DelegateTest.java | 33 m1.setValues(new float[]{1, 0, 0, 0, 1, 0, 0, 0, 1}); in testIdentity() 54 m1.setValues(new float[]{1, 2, 3, 4, 5, 6, 7, 8, 9}); in testInvert() 57 m1.setValues(new float[]{3, 5, 6, 2, 5, 7, 4, 8, 2}); in testInvert()
|
/aosp12/packages/apps/Settings/src/com/android/settings/accessibility/ |
H A D | CaptionAppearanceFragment.java | 216 mPreset.setValues(presetValues); in initializeAllPreferences() 232 mForegroundColor.setValues(colorValues); in initializeAllPreferences() 239 mForegroundOpacity.setValues(opacityValues); in initializeAllPreferences() 243 mEdgeColor.setValues(colorValues); in initializeAllPreferences() 254 mBackgroundColor.setValues(bgColorValues); in initializeAllPreferences() 258 mBackgroundOpacity.setValues(opacityValues); in initializeAllPreferences() 262 mWindowColor.setValues(bgColorValues); in initializeAllPreferences() 266 mWindowOpacity.setValues(opacityValues); in initializeAllPreferences()
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A D | ObjectAnimator.java | 756 anim.setValues(values); in ofPropertyValuesHolder() 766 setValues(PropertyValuesHolder.ofInt(mProperty, values)); in setIntValues() 768 setValues(PropertyValuesHolder.ofInt(mPropertyName, values)); in setIntValues() 781 setValues(PropertyValuesHolder.ofFloat(mProperty, values)); in setFloatValues() 783 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values)); in setFloatValues() 796 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values)); in setObjectValues() 798 setValues(PropertyValuesHolder.ofObject(mPropertyName, in setObjectValues()
|
H A D | ValueAnimator.java | 407 anim.setValues(values); in ofPropertyValuesHolder() 459 setValues(PropertyValuesHolder.ofInt("", values)); in setIntValues() 487 setValues(PropertyValuesHolder.ofFloat("", values)); in setFloatValues() 524 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues() 541 public void setValues(PropertyValuesHolder... values) { in setValues() method in ValueAnimator
|
/aosp12/hardware/qcom/audio/legacy/alsa_sound/ |
H A D | alsa_default.cpp | 1646 char** setValues; in getUCMDevice() local 1648 if (setValues == NULL) { in getUCMDevice() 1652 if (setValues[0] == NULL) { in getUCMDevice() 1653 free(setValues); in getUCMDevice() 1658 if (setValues[1] == NULL) { in getUCMDevice() 1659 free(setValues); in getUCMDevice() 1660 free(setValues[0]); in getUCMDevice() 1664 sprintf(setValues[0], "%d",mode); in getUCMDevice() 1668 free(setValues[1]); in getUCMDevice() 1669 free(setValues[0]); in getUCMDevice() [all …]
|
H A D | ALSAControl.cpp | 111 status_t ALSAControl::setext(const char *name, int count, char **setValues) in setext() argument 127 ret = mixer_ctl_set_value(ctl, count, setValues); in setext()
|
/aosp12/frameworks/base/core/java/android/preference/ |
H A D | MultiSelectListPreference.java | 145 public void setValues(Set<String> values) { in setValues() method in MultiSelectListPreference 221 setValues(values); in onDialogClosed() 242 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue); in onSetInitialValue()
|
H A D | MultiCheckPreference.java | 142 setValues(null); in setEntryValuesCS() 177 public void setValues(boolean[] values) { in setValues() method in MultiCheckPreference 311 setValues(myState.values); in onRestoreInstanceState()
|
/aosp12/frameworks/opt/vcard/java/com/android/vcard/ |
H A D | VCardProperty.java | 114 public void setValues(String... propertyValues) { in setValues() method in VCardProperty 118 public void setValues(List<String> propertyValueList) { in setValues() method in VCardProperty
|
/aosp12/packages/apps/Nfc/src/com/android/nfc/beam/ |
H A D | SendUi.java | 435 mSlowSendAnimator.setValues(postX, postY); in showStartSend() 441 mAlphaDownAnimator.setValues(alphaDown); in showStartSend() 499 mScaleUpAnimator.setValues(scaleUpX, scaleUpY, scaleUpAlpha); in finish() 510 mFastSendAnimator.setValues(postX, postY, alpha); in finish() 515 mFadeInAnimator.setValues(fadeIn); in finish() 761 mAlphaUpAnimator.setValues(alphaUp); in showSendHint()
|
/aosp12/frameworks/base/core/java/android/app/servertransaction/ |
H A D | LaunchActivityItem.java | 132 setValues(instance, intent, ident, info, curConfig, overrideConfig, compatInfo, referrer, in obtain() 143 setValues(this, null, 0, null, null, null, null, null, null, 0, null, null, null, null, in recycle() 179 setValues(this, in.readTypedObject(Intent.CREATOR), in.readInt(), in LaunchActivityItem() 296 private static void setValues(LaunchActivityItem instance, Intent intent, int ident, in setValues() method in LaunchActivityItem
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/views/ |
H A D | AbstractSlideInView.java | 177 mOpenCloseAnimator.setValues(PropertyValuesHolder.ofFloat( in onDragEnd() 201 mOpenCloseAnimator.setValues( in handleClose()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/editor/ |
H A D | StructuredNameEditorView.java | 72 public void setValues(DataKind kind, ValuesDelta entry, RawContactDelta state, boolean readOnly, in setValues() method in StructuredNameEditorView 74 super.setValues(kind, entry, state, readOnly, vig); in setValues()
|
H A D | Editor.java | 67 … public void setValues(DataKind kind, ValuesDelta values, RawContactDelta state, boolean readOnly, in setValues() method
|
H A D | KindSectionView.java | 365 nameView.setValues(accountType.getKindForMimetype(DataKind.PSEUDO_MIME_TYPE_NAME), in addNameEditorViews() 382 phoneticNameView.setValues( in addNameEditorViews() 419 editor.setValues(dataKind, valuesDelta, rawContactDelta, !dataKind.editable, in addNonNameEditorView()
|
/aosp12/packages/apps/Settings/src/com/android/settings/applications/appinfo/ |
H A D | InstantAppDomainsPreferenceController.java | 55 instantAppDomainsPreference.setValues(new int[handledDomains.length]); in updateState()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
H A D | RecentsAtomicAnimationFactory.java | 57 .setValues(values) in createStateElementAnimation()
|
/aosp12/frameworks/base/core/java/android/transition/ |
H A D | ChangeTransform.java | 76 object.setValues(value); 521 public void setValues(float[] values) { in setValues() method in ChangeTransform.PathAnimatorMatrix 535 mMatrix.setValues(mValues); in setAnimationMatrix()
|
/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | FrameValues.java | 105 public void setValues(Object values) { in setValues() method in FrameValues
|
H A D | MotionSensor.java | 86 outFrame.setValues(mValues); in onProcess()
|