OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetValue
(Results
1 - 25
of
101
) sorted by null
1
2
3
4
5
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
Lerper.java
43
public int getValue(int currentValue, int
targetValue
) {
44
int delta =
targetValue
- currentValue;
47
// make sure change currentValue and not exceeding
targetValue
53
if (retValue >
targetValue
) {
54
retValue =
targetValue
;
57
// make sure change currentValue and not exceeding
targetValue
63
if (retValue <
targetValue
) {
64
retValue =
targetValue
;
67
retValue =
targetValue
;
72
public float getValue(float currentValue, float
targetValue
) {
[
all
...]
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java
471
* @param
targetValue
The target value of the interpolation.
474
public Tween target(float
targetValue
) {
475
targetValues[0] =
targetValue
;
549
* @param
targetValue
The relative target value of the interpolation.
552
public Tween targetRelative(float
targetValue
) {
554
targetValues[0] = isInitialized() ?
targetValue
+ startValues[0] :
targetValue
;
629
* @param
targetValue
The target of this waypoint.
632
public Tween waypoint(float
targetValue
) {
634
waypoints[waypointsCnt] =
targetValue
;
[
all
...]
/external/icu/icu4c/source/common/
ucnv2022.cpp
[
all
...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetISO2022.java
[
all
...]
/cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java
231
float
targetValue
= getActivity().getResources()
234
assertEquals(
targetValue
, testView.getX());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java
707
float
targetValue
;
711
targetValue
= 1.0f;
715
targetValue
= 0.0f;
718
targetValue
);
721
(long) (duration * Math.abs(mAppearAnimationFraction -
targetValue
)));
[
all
...]
/frameworks/support/design/src/android/support/design/widget/
CollapsingTextHelper.java
681
private static boolean isClose(float value, float
targetValue
) {
682
return Math.abs(value -
targetValue
) < 0.001f;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java
[
all
...]
/packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java
379
final float
targetValue
, final long duration_ms,
381
if (startValue ==
targetValue
) {
386
animator.setFloatValues(startValue,
targetValue
);
[
all
...]
/external/guice/extensions/persist/lib/
hibernate-annotations.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/
lint-checks-22.2.0.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.4.0/
lint-checks-22.4.0.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.4.2/
lint-checks-22.4.2.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.0/
lint-checks-22.5.0.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.1/
lint-checks-22.5.1.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.3/
lint-checks-22.5.3.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.0/
lint-checks-22.7.0.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.1/
lint-checks-22.7.1.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.3/
lint-checks-22.7.3.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.8.0/
lint-checks-22.8.0.jar
/prebuilts/sdk/current/support/design/libs/
android-support-design.jar
/prebuilts/devtools/tools/lib/
lint-checks.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.9.2/
lint-checks-22.9.2.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/23.0.1/
lint-checks-23.0.1.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/23.0.2/
lint-checks-23.0.2.jar
Completed in 613 milliseconds
1
2
3
4
5