HomeSort by relevance Sort by last modified time
    Searched defs:VALUES (Results 1 - 25 of 312) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/interpolator/src/main/java/androidx/interpolator/view/animation/
FastOutLinearInInterpolator.java 31 * Lookup table values sampled with x at regular intervals between 0 and 1 for a total of
34 private static final float[] VALUES = new float[] {
67 super(VALUES);
FastOutSlowInInterpolator.java 31 * Lookup table values sampled with x at regular intervals between 0 and 1 for a total of
34 private static final float[] VALUES = new float[] {
67 super(VALUES);
LinearOutSlowInInterpolator.java 31 * Lookup table values sampled with x at regular intervals between 0 and 1 for a total of
34 private static final float[] VALUES = new float[] {
67 super(VALUES);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_imageop.py 16 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
25 for height in VALUES:
26 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /external/emma/ant/ant14/com/vladium/emma/report/
IReportEnums.java 28 return VALUES;
32 private static final String [] VALUES = new String []
47 return VALUES;
51 private static final String [] VALUES = new String []
67 return VALUES;
71 private static final String [] VALUES = new String []
84 return VALUES;
88 private static final String [] VALUES = new String []
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilitiesData.java 114 public static final int [][] VALUES = {
  /external/python/cpython2/Lib/test/
test_imageop.py 14 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
23 for height in VALUES:
24 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
feature_keys.py 40 class Values(object):
41 """Key formats for accepting/returning values."""
42 # Floating point, with one or more values corresponding to each time in TIMES.
43 VALUES = "values"
46 class TrainEvalFeatures(Times, Values):
56 class FilteringFeatures(Times, Values, State):
  /frameworks/support/wear/src/main/java/androidx/wear/widget/
BezierSCurveInterpolator.java 37 * Lookup table values. Generated using a Bezier curve from (0,0) to (1,1) with control points:
40 * <p>Values sampled with x at regular intervals between 0 and 1.
42 private static final float[] VALUES = new float[]{
55 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
74 int position = Math.min((int) (input * (VALUES.length - 1)), VALUES.length - 2);
80 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /packages/apps/Camera2/src/com/android/camera/util/
Gusterpolator.java 37 * Lookup table values.
44 * Values sampled with x at regular intervals between 0 and 1.
46 private static final float[] VALUES = new float[] {
60 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
73 (int)(input * (VALUES.length - 1)),
74 VALUES.length - 2);
80 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
Gusterpolator.java 40 * Lookup table values.
47 * Values sampled with x at regular intervals between 0 and 1.
49 private static final float[] VALUES = new float[] {
62 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
75 (int)(input * (VALUES.length - 1)),
76 VALUES.length - 2);
82 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_imageop.py 16 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
25 for height in VALUES:
26 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_imageop.py 16 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
25 for height in VALUES:
26 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imageop.py 16 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
25 for height in VALUES:
26 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imageop.py 16 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES
25 for height in VALUES:
26 for width in VALUES:
135 # monochrome black-and-white image to greyscale pass the values 0 and
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
BooleanAttributeDescriptor.java 23 * Describes a text attribute that can only contain boolean values.
27 private static final String[] VALUES = new String[] { "true", "false" }; //$NON-NLS-1$ //$NON-NLS-2$
30 super(xmlLocalName, nsUri, attrInfo, VALUES);
  /external/emma/ant/ant14/com/vladium/emma/ant/
VerbosityCfg.java 34 return VALUES;
37 private static final String [] VALUES = new String []
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilitiesData.java 110 public static final int [][] VALUES = {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StandardPlural.java 36 * List version of {@link #values()}.
38 public static final List<StandardPlural> VALUES =
39 Collections.unmodifiableList(Arrays.asList(values()));
44 public static final int COUNT = VALUES.size();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StandardPlural.java 34 * List version of {@link #values()}.
36 public static final List<StandardPlural> VALUES =
37 Collections.unmodifiableList(Arrays.asList(values()));
42 public static final int COUNT = VALUES.size();
  /frameworks/support/samples/ViewPager2Demos/src/main/java/com/example/androidx/viewpager2/cards/
Card.java 37 private static final Set<Character> VALUES = unmodifiableSet(new LinkedHashSet<>(
45 this.mValue = checkValidValue(value, VALUES);
82 for (Character value : VALUES) {
  /test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
MetricsXmlSerializerTest.java 34 private static final double[] VALUES = new double[] {1, 11, 21, 1211, 111221};
73 mLocalReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 38 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
39 private static final int LENGTH = VALUES.length;
48 int length = VALUES.length;
51 sparseArray.put(KEYS[i], VALUES[i]);
60 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
65 Integer oldValue = VALUES[0]; // 0
85 sparseArray.setValueAt(size, VALUES[1]);
87 assertEquals(VALUES[1], sparseArray.valueAt(size));
90 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
91 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseArrayTest.java 35 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
36 private static final int LENGTH = VALUES.length;
45 int length = VALUES.length;
48 sparseArray.put(KEYS[i], VALUES[i]);
57 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
62 Integer oldValue = VALUES[0]; // 0
82 sparseArray.setValueAt(size, VALUES[1]);
84 assertEquals(VALUES[1], sparseArray.valueAt(size));
87 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
88 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseBooleanArrayTest.java 33 private static final boolean[] VALUES =
43 int length = VALUES.length;
45 sparseBooleanArray.put(KEYS[i], VALUES[i]);
49 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i]));
57 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex));
58 expectPos = VALUES[i] ? truePos : falsePos;
59 assertEquals(expectPos, sparseBooleanArray.indexOfValue(VALUES[i]));
64 boolean oldValue = VALUES[0]; // true
85 assertEquals(VALUES[1], sparseBooleanArray.get(KEYS[1]));
86 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]

Completed in 1155 milliseconds

1 2 3 4 5 6 7 8 91011>>