Searched refs:values (Results 1 - 25 of 469) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/transition/
H A DVisibilityPropagation.java43 public void captureValues(TransitionValues values) { argument
44 View view = values.view;
45 Integer visibility = (Integer) values.values.get(Visibility.PROPNAME_VISIBILITY);
49 values.values.put(PROPNAME_VISIBILITY, visibility);
56 values.values.put(PROPNAME_VIEW_CENTER, loc);
65 * Returns {@link android.view.View#getVisibility()} for the View at the time the values
67 * @param values Th
71 getViewVisibility(TransitionValues values) argument
89 getViewX(TransitionValues values) argument
100 getViewY(TransitionValues values) argument
104 getViewCoordinate(TransitionValues values, int coordinateIndex) argument
[all...]
H A DTransitionValues.java27 * Data structure which holds cached values for the transition.
28 * The view field is the target which all of the values pertain to.
29 * The values field is a map which holds information for fields
31 * be unique to avoid clobbering values stored by other transitions,
36 * <p>These values are cached during the
38 * capture} phases of a scene change, once when the start values are captured
39 * and again when the end values are captured. These start/end values are then
47 * The View with these values
52 * The set of values tracke
54 public final Map<String, Object> values = new ArrayMap<String, Object>(); field in class:TransitionValues
[all...]
H A DChangeClipBounds.java53 private void captureValues(TransitionValues values) { argument
54 View view = values.view;
60 values.values.put(PROPNAME_CLIP, clip);
63 values.values.put(PROPNAME_BOUNDS, bounds);
81 || !startValues.values.containsKey(PROPNAME_CLIP)
82 || !endValues.values.containsKey(PROPNAME_CLIP)) {
85 Rect start = (Rect) startValues.values.get(PROPNAME_CLIP);
86 Rect end = (Rect) endValues.values
[all...]
/frameworks/base/core/java/android/hardware/
H A DSensorEvent.java22 * course the sensor's {@link SensorEvent#values data}.
37 * screen. In this system, coordinates behind the screen have negative Z values.
59 * The length and contents of the {@link #values values} array depends on
65 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
68 * <li> values[0]: Acceleration minus Gx on the x-axis </li>
69 * <li> values[1]: Acceleration minus Gy on the y-axis </li>
70 * <li> values[2]: Acceleration minus Gz on the z-axis </li>
117 * gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
118 * gravity[1] = alpha * gravity[1] + (1 - alpha) * event.values[
485 public final float[] values; field in class:SensorEvent
[all...]
H A DTriggerEvent.java38 * The length and contents of the {@link #values values} array depends on
46 public final float[] values; field in class:TriggerEvent
60 values = new float[size];
H A DSensorListener.java21 * sensor values have changed.
30 * <p>Called when sensor values have changed.
31 * The length and contents of the values array vary
45 * device's screen orientation changes. To access the unswapped values,
46 * use indices 3, 4 and 5 in values[].
50 * All values are angles in degrees.
52 * <p>values[0]: Azimuth, rotation around the Z axis (0<=azimuth<360).
55 * <p>values[1]: Pitch, rotation around X axis (-180<=pitch<=180), with positive
56 * values when the z-axis moves toward the y-axis.
58 * <p>values[
90 onSensorChanged(int sensor, float[] values) argument
[all...]
H A DLegacySensorManager.java53 // which won't get the rotated values
259 v[0] = event.values[0];
260 v[1] = event.values[1];
261 v[2] = event.values[2];
282 * output: 3,4,5: values in the old API format
283 * 0,1,2: transformed values in the old API format
287 float[] values, int orientation) {
288 float x = values[0];
289 float y = values[1];
290 float z = values[
286 mapSensorDataToWindow(int sensor, float[] values, int orientation) argument
[all...]
/frameworks/base/core/java/android/content/
H A DEntity.java34 public Entity(ContentValues values) { argument
35 mValues = values;
47 public void addSubValue(Uri uri, ContentValues values) { argument
48 mSubValues.add(new Entity.NamedContentValues(uri, values));
53 public final ContentValues values; field in class:Entity.NamedContentValues
55 public NamedContentValues(Uri uri, ContentValues values) { argument
57 this.values = values;
66 sb.append("\n -> ").append(namedValue.values);
/frameworks/base/test-runner/src/junit/runner/
H A DSorter.java13 public void swap(Vector values, int left, int right); argument
16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
19 String mid= (String)values.elementAt((left + right) / 2);
21 while (((String)(values.elementAt(left))).compareTo(mid) < 0)
23 while (mid.compareTo((String)(values.elementAt(right))) < 0)
26 swapper.swap(values, left, right);
33 sortStrings(values, oleft, right, swapper);
35 sortStrings(values, left, oright, swapper);
/frameworks/base/graphics/java/android/graphics/
H A DInterpolator.java36 * Reset the Interpolator to have the specified number of values and an
38 * values for each keyFrame must be assigned using setKeyFrame().
45 * Reset the Interpolator to have the specified number of values and
46 * keyFrames. After this call the values for each keyFrame must be assigned
65 * values (with an implicity blend array of [0, 0, 1, 1] giving linear
66 * transition to the next set of key values).
71 * @param values Array of values associated with theis key frame
73 public void setKeyFrame(int index, int msec, float[] values) { argument
74 setKeyFrame(index, msec, values, nul
87 setKeyFrame(int index, int msec, float[] values, float[] blend) argument
121 timeToValues(float[] values) argument
136 timeToValues(int msec, float[] values) argument
159 nativeSetKeyFrame(long native_instance, int index, int msec, float[] values, float[] blend) argument
161 nativeTimeToValues(long native_instance, int msec, float[] values) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioGainConfig.java20 * The AudioGainConfig is used by APIs setting or getting values on a given gain
36 int[] values, int rampDurationMs) {
41 mValues = values;
70 * Gain values for each channel in the order of bits set in
73 public int[] values() { method in class:AudioGainConfig
35 AudioGainConfig(int index, AudioGain gain, int mode, int channelMask, int[] values, int rampDurationMs) argument
/frameworks/base/core/java/android/provider/
H A DSyncStateContract.java105 ContentValues values = new ContentValues();
106 values.put(Columns.DATA, data);
107 values.put(Columns.ACCOUNT_NAME, account.name);
108 values.put(Columns.ACCOUNT_TYPE, account.type);
109 provider.insert(uri, values);
114 ContentValues values = new ContentValues();
115 values.put(Columns.DATA, data);
116 values.put(Columns.ACCOUNT_NAME, account.name);
117 values.put(Columns.ACCOUNT_TYPE, account.type);
118 return provider.insert(uri, values);
[all...]
H A DUserDictionary.java75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
170 ContentValues values = new ContentValues(COLUMN_COUNT);
172 values.put(WORD, word);
173 values.put(FREQUENCY, frequency);
174 values.put(LOCALE, null == locale ? null : locale.toString());
175 values.put(APP_ID, 0); // TODO: Get App UID
176 values.put(SHORTCUT, shortcut);
178 Uri result = resolver.insert(CONTENT_URI, values);
/frameworks/base/core/java/com/android/internal/os/
H A DBatterySipper.java27 public double[] values; field in class:BatterySipper
65 public BatterySipper(DrainType drainType, Uid uid, double[] values) { argument
66 this.values = values;
67 if (values != null) value = values[0];
73 return values;
/frameworks/ml/bordeaux/learning/multiclass_pa/jni/
H A Djni_multiclass_pa.cpp26 void CreateIndexValuePairs(const int* indices, const float* values, argument
31 pair<int, float> new_pair(indices[i], values[i]);
66 jfloat* values = env->GetFloatArrayElements(value_array, NULL); local
71 if (values && indices && value_len == index_len) {
74 CreateIndexValuePairs(indices, values, value_len, &inputs);
77 env->ReleaseFloatArrayElements(value_array, values, JNI_ABORT);
82 env->ReleaseFloatArrayElements(value_array, values, JNI_ABORT);
99 jfloat* values = env->GetFloatArrayElements(value_array, NULL); local
104 if (values && indices && value_len == index_len) {
106 CreateIndexValuePairs(indices, values, value_le
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSmsMessageBodyTest.java261 int[] values = {0, 0, 0, SmsConstants.ENCODING_7BIT, 0, 0};
279 values[0] = sTestMsgCounts[i];
280 values[1] = len;
281 values[2] = sSeptetUnitsRemaining[i];
283 callGsmLengthMethods(testStr, false, values);
284 callGsmLengthMethods(testStr, true, values);
285 callCdmaLengthMethods(testStr, false, values);
286 callCdmaLengthMethods(testStr, true, values);
293 int[] values = {0, 0, 0, SmsConstants.ENCODING_16BIT, 0, 0};
313 values[
382 fillData(int enabledLangsIndex, boolean use7bitOnly, int[] values, int length) argument
[all...]
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DScale.java34 private void captureValues(TransitionValues values) { argument
35 View view = values.view;
36 values.values.put(PROPNAME_SCALE, view.getScaleX());
56 final float startScale = (Float) startValues.values.get(PROPNAME_SCALE);
57 final float endScale = (Float) endValues.values.get(PROPNAME_SCALE);
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java24 * supports the case where the tuple of key column values is unique.
149 * next() are guaranteed to point to the row that was indicated. Reading values
196 * array and saves them in values beginning at startingIndex, skipping a slot
198 * values will be stored in slots 1, 3, and 5.
199 * @param values the String[] to populate
201 * @param columnIndicies the indicies of the values to read from the cursor
202 * @param startingIndex the slot in which to start storing values, and must be either 0 or 1.
204 private static void populateValues(String[] values, Cursor cursor, int[] columnIndicies, argument
208 values[startingIndex + i*2] = cursor.getString(columnIndicies[i]);
235 * Compare the values
242 compareStrings(String... values) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java34 * This class holds information about a property and the values that that property
42 * The name of the property associated with the values. This need not be a real property,
44 * aniamted values are looked up with getAnimatedValue(String) in ValueAnimator.
66 * The getter is only derived and used if one of the values is null.
71 * The type of values supplied. This information is used both in deriving the setter/getter
87 // The caller may have supplied values in a type that does not match the setter/getter
88 // functions (such as the integers 0 and 1 to represent floating point values for alpha).
112 * The type evaluator used to calculate the animated values. This evaluator is determined
152 * set of int values.
154 * @param values Th
157 ofInt(String propertyName, int... values) argument
168 ofInt(Property<?, Integer> property, int... values) argument
186 ofMultiInt(String propertyName, int[][] values) argument
240 ofMultiInt(String propertyName, TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) argument
262 ofMultiInt(String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
275 ofFloat(String propertyName, float... values) argument
286 ofFloat(Property<?, Float> property, float... values) argument
304 ofMultiFloat(String propertyName, float[][] values) argument
357 ofMultiFloat(String propertyName, TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) argument
379 ofMultiFloat(String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
397 ofObject(String propertyName, TypeEvaluator evaluator, Object... values) argument
442 ofObject(Property property, TypeEvaluator<V> evaluator, V... values) argument
469 ofObject(Property<?, V> property, TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) argument
522 ofKeyframe(String propertyName, Keyframe... values) argument
543 ofKeyframe(Property property, Keyframe... values) argument
588 setIntValues(int... values) argument
606 setFloatValues(float... values) argument
616 setKeyframes(Keyframe... values) argument
639 setObjectValues(Object... values) argument
1106 IntPropertyValuesHolder(String propertyName, int... values) argument
1111 IntPropertyValuesHolder(Property property, int... values) argument
1120 setIntValues(int... values) argument
1244 FloatPropertyValuesHolder(String propertyName, float... values) argument
1249 FloatPropertyValuesHolder(Property property, float... values) argument
1258 setFloatValues(float... values) argument
1360 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1467 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DCursorFilter.java54 results.values = cursor;
57 results.values = null;
66 if (results.values != null && results.values != oldCursor) {
67 mClient.changeCursor((Cursor) results.values);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorFilter.java55 results.values = cursor;
58 results.values = null;
67 if (results.values != null && results.values != oldCursor) {
68 mClient.changeCursor((Cursor) results.values);
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java120 String[] values = new String(value, StandardCharsets.UTF_8).split("\0", -1);
121 // There can be 14 or 15 values in ICS MR1.
122 if (values.length < 14 || values.length > 15) {
127 profile.name = values[0];
128 profile.type = Integer.valueOf(values[1]);
132 profile.server = values[2];
133 profile.username = values[3];
134 profile.password = values[4];
135 profile.dnsServers = values[
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridInHorizontal.java42 String values[] = new String[1000];
45 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
H A DGridInVertical.java42 String values[] = new String[1000];
45 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
H A DGridPadding.java38 String values[] = new String[1000];
40 values[i] = String.valueOf(i);
45 android.R.layout.simple_list_item_1, values));

Completed in 664 milliseconds

1234567891011>>