Home
last modified time | relevance | path

Searched defs:values (Results 1 – 25 of 477) sorted by relevance

12345678910>>...20

/frameworks/base/core/java/android/transition/
DVisibilityPropagation.java43 public void captureValues(TransitionValues values) { in captureValues()
71 public int getViewVisibility(TransitionValues values) { in getViewVisibility()
89 public int getViewX(TransitionValues values) { in getViewX()
100 public int getViewY(TransitionValues values) { in getViewY()
104 private static int getViewCoordinate(TransitionValues values, int coordinateIndex) { in getViewCoordinate()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/quickaffordance/
DFlashlightQuickAffordanceConfigTest.kt67 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
90 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
113 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
136 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
153 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
175 val values = mutableListOf<KeyguardQuickAffordanceConfig.LockScreenState>() in <lambda>() constant
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DRecurrenceSetTest.java43 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet0() local
56 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet1() local
67 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet2() local
80 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet3() local
95 final ContentValues values = verifyPopulateContentValues(recurrence, null, in testRecurrenceSet4() local
110 final ContentValues values = verifyPopulateContentValues(recurrence, "FREQ=YEARLY", null, in testRecurrenceSet5() local
138 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet6() local
244 ContentValues values = new ContentValues(); in verifyPopulateContentValues() local
/frameworks/base/core/java/android/content/
DEntity.java38 public Entity(ContentValues values) { in Entity()
51 public void addSubValue(Uri uri, ContentValues values) { in addSubValue()
57 public final ContentValues values; field in Entity.NamedContentValues
59 public NamedContentValues(Uri uri, ContentValues values) { in NamedContentValues()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/
DPrimaryBouncerToGoneTransitionViewModelTest.kt70 val values = mutableListOf<Float>() in bouncerAlpha() constant
87 val values = mutableListOf<Float>() in bouncerAlpha_runDimissFromKeyguard() constant
106 val values = mutableListOf<ScrimAlpha>() in scrimAlpha_runDimissFromKeyguard() constant
126 val values = mutableListOf<ScrimAlpha>() in scrimBehindAlpha_leaveShadeOpen() constant
148 val values = mutableListOf<ScrimAlpha>() in scrimBehindAlpha_doNotLeaveShadeOpen() constant
DDreamingToLockscreenTransitionViewModelTest.kt55 val values = mutableListOf<Float>() in dreamOverlayTranslationY() constant
80 val values = mutableListOf<Float>() in dreamOverlayFadeOut() constant
103 val values = mutableListOf<Float>() in lockscreenFadeIn() constant
123 val values = mutableListOf<Float>() in lockscreenTranslationY() constant
DOccludedToLockscreenTransitionViewModelTest.kt53 val values = mutableListOf<Float>() in lockscreenFadeIn() constant
77 val values = mutableListOf<Float>() in lockscreenTranslationY() constant
98 val values = mutableListOf<Float>() in lockscreenTranslationYResettedAfterJobCancelled() constant
DLockscreenToOccludedTransitionViewModelTest.kt53 val values = mutableListOf<Float>() in lockscreenFadeOut() constant
77 val values = mutableListOf<Float>() in lockscreenTranslationY() constant
100 val values = mutableListOf<Float>() in lockscreenTranslationYIsCanceled() constant
DLockscreenToDreamingTransitionViewModelTest.kt53 val values = mutableListOf<Float>() in lockscreenFadeOut() constant
77 val values = mutableListOf<Float>() in lockscreenTranslationY() constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/settings/
DControlsSettingsRepositoryImplTest.kt82 val values = mutableListOf<Boolean>() in showInLockScreen() constant
109 val values = mutableListOf<Boolean>() in showInLockScreen_changesInOtherUsersAreNotQueued() constant
129 val values = mutableListOf<Boolean>() in actionInLockScreen() constant
156 val values = mutableListOf<Boolean>() in actionInLockScreen_changesInOtherUsersAreNotQueued() constant
/frameworks/base/core/java/android/animation/
DObjectAnimator.java243 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt()
289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt()
334 public static ObjectAnimator ofMultiInt(Object target, String propertyName, int[][] values) { in ofMultiInt()
380 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) { in ofMultiInt() argument
401 public static ObjectAnimator ofArgb(Object target, String propertyName, int... values) { in ofArgb()
421 int... values) { in ofArgb()
442 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { in ofFloat()
489 float... values) { in ofFloat()
535 float[][] values) { in ofMultiFloat()
581 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) { in ofMultiFloat() argument
[all …]
DPropertyValuesHolder.java156 public static PropertyValuesHolder ofInt(String propertyName, int... values) { in ofInt()
167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt()
185 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) { in ofMultiInt()
241 TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) { in ofMultiInt() argument
263 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) { in ofMultiInt()
275 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { in ofFloat()
286 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { in ofFloat()
304 public static PropertyValuesHolder ofMultiFloat(String propertyName, float[][] values) { in ofMultiFloat()
359 TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) { in ofMultiFloat() argument
381 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) { in ofMultiFloat()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
DLightRevealScrimInteractorTest.kt74 val values = mutableListOf<LightRevealEffect>() in lightRevealEffect - does not change during keyguard transition() constant
108 val values = mutableListOf<Float>() in revealAmount - inverted when appropriate() constant
137 val values = mutableListOf<Float>() in revealAmount - ignores transitions that do not affect reveal amount() constant
/frameworks/base/graphics/java/android/graphics/
DInterpolator.java73 public void setKeyFrame(int index, int msec, float[] values) { in setKeyFrame()
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) { in setKeyFrame()
121 public Result timeToValues(float[] values) { in timeToValues()
136 public Result timeToValues(int msec, float[] values) { in timeToValues()
160 …ve void nativeSetKeyFrame(long native_instance, int index, int msec, float[] values, float[] blend… in nativeSetKeyFrame()
162 private static native int nativeTimeToValues(long native_instance, int msec, float[] values); in nativeTimeToValues()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DMediaInserterTest.java106 ContentValues values = new ContentValues(); in createFileContent() local
112 ContentValues values = new ContentValues(); in createAudioContent() local
118 ContentValues values = new ContentValues(); in createVideoContent() local
124 ContentValues values = new ContentValues(); in createImageContent() local
138 ContentValues values; in fillBuffer() local
/frameworks/base/core/java/android/provider/
DSyncStateContract.java105 ContentValues values = new ContentValues(); in set() local
114 ContentValues values = new ContentValues(); in insert() local
123 ContentValues values = new ContentValues(); in update() local
160 ContentValues values = new ContentValues(); in newSetOperation() local
179 ContentValues values = new ContentValues(); in newUpdateOperation() local
/frameworks/hardware/interfaces/stats/aidl/vts/functional/
DVtsHalStatsTargetTest.cpp45 std::vector<VendorAtomValue> values; in TEST_P() local
66 std::vector<VendorAtomValue> values; in TEST_P() local
87 std::vector<VendorAtomValue> values; in TEST_P() local
108 std::vector<VendorAtomValue> values; in TEST_P() local
/frameworks/base/services/robotests/src/com/android/server/testing/shadows/
DShadowEventLog.java35 protected static int writeEvent(int tag, Object... values) { in writeEvent()
57 public final List<Object> values; field in ShadowEventLog.Entry
59 public Entry(int tag, List<Object> values) { in Entry()
/frameworks/av/drm/libmediadrm/tests/
DEventMetric_test.cpp30 std::map<int, EventStatistics> values; in TEST() local
43 std::map<int, EventStatistics> values; in TEST() local
74 std::map<std::string, EventStatistics> values; in TEST() local
122 std::map<int, EventStatistics> values; in TEST() local
DCounterMetric_test.cpp32 std::map<int, int64_t> values; in TEST_F() local
45 std::map<int, int64_t> values; in TEST_F() local
64 std::map<std::string, int64_t> values; in TEST_F() local
/frameworks/ex/common/java/com/android/common/content/
DSQLiteContentProvider.java71 protected abstract Uri insertInTransaction(Uri uri, ContentValues values); in insertInTransaction()
76 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection, in updateInTransaction()
95 public Uri insert(Uri uri, ContentValues values) { in insert()
122 public int bulkInsert(Uri uri, ContentValues[] values) { in bulkInsert()
148 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
/frameworks/base/libs/androidfw/tests/
DAttributeResolution_test.cpp78 std::array<uint32_t, attrs.size() * STYLE_NUM_ENTRIES> values; in TEST() local
109 std::array<uint32_t, attrs.size() * STYLE_NUM_ENTRIES> values; in TEST_F() local
162 std::array<uint32_t, attrs.size() * STYLE_NUM_ENTRIES> values; in TEST_F() local
214 std::array<uint32_t, attrs.size() * STYLE_NUM_ENTRIES> values; in TEST_F() local
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DImageShader.java96 public void set(boolean normalize, int stride, int components, int type, float[] values) { in set()
173 private void initBuffer(float[] values) { in initBuffer()
178 private void copyValues(float[] values) { in copyValues()
331 public void setUniformValue(String uniformName, int[] values) { in setUniformValue()
338 GLES20.glUniform1iv(uniform.getLocation(), len, values, 0); in setUniformValue() local
342 GLES20.glUniform2iv(uniform.getLocation(), len / 2, values, 0); in setUniformValue() local
346 GLES20.glUniform2iv(uniform.getLocation(), len / 3, values, 0); in setUniformValue() local
350 GLES20.glUniform2iv(uniform.getLocation(), len / 4, values, 0); in setUniformValue() local
360 public void setUniformValue(String uniformName, float[] values) { in setUniformValue()
367 GLES20.glUniform1fv(uniform.getLocation(), len, values, 0); in setUniformValue() local
[all …]
/frameworks/base/media/java/android/media/
DMediaInserter.java49 public void insert(Uri tableUri, ContentValues values) throws RemoteException { in insert()
53 public void insertwithPriority(Uri tableUri, ContentValues values) throws RemoteException { in insertwithPriority()
57 … private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { in insert()
/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/eab/
DEabContactSyncControllerTest.java180 ContentValues values = new ContentValues(); in insertDeletedContactToContactProvider() local
189 ContentValues values = new ContentValues(); in insertContactToContactProvider() local
202 ContentValues values = new ContentValues(); in insertContactToEabProvider() local
243 public Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { in insert()
256 public int update(@NonNull Uri uri, @Nullable ContentValues values, in update()

12345678910>>...20