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

1234567891011>>

/frameworks/base/core/java/android/hardware/
H A DSensorEvent.java23 * course the sensor's {@link SensorEvent#values data}.
39 * screen. In this system, coordinates behind the screen have negative Z values.
61 * The length and contents of the {@link #values values} array depends on
67 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
71 * values[0]: Acceleration minus Gx on the x-axis
74 * values[1]: Acceleration minus Gy on the y-axis
77 * values[2]: Acceleration minus Gz on the z-axis
125 * gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
126 * gravity[1] = alpha * gravity[1] + (1 - alpha) * event.values[
434 public final float[] values; field in class:SensorEvent
[all...]
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/test-runner/src/junit/runner/
H A DSorter.java15 public void swap(Vector values, int left, int right); argument
18 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
21 String mid= (String)values.elementAt((left + right) / 2);
23 while (((String)(values.elementAt(left))).compareTo(mid) < 0)
25 while (mid.compareTo((String)(values.elementAt(right))) < 0)
28 swapper.swap(values, left, right);
35 sortStrings(values, oleft, right, swapper);
37 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(int native_instance, int index, int msec, float[] values, float[] blend) argument
161 nativeTimeToValues(int native_instance, int msec, float[] values) argument
[all...]
/frameworks/base/core/java/android/content/
H A DEntity.java37 public Entity(ContentValues values) { argument
38 mValues = values;
50 public void addSubValue(Uri uri, ContentValues values) { argument
51 mSubValues.add(new Entity.NamedContentValues(uri, values));
56 public final ContentValues values; field in class:Entity.NamedContentValues
58 public NamedContentValues(Uri uri, ContentValues values) { argument
60 this.values = values;
69 sb.append("\n -> ").append(namedValue.values);
/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/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/base/core/java/android/animation/
H A DObjectAnimator.java54 * a setter function that will be called to set animated values.
61 * name of the property being animated, use <code>float</code> or <code>int</code> typed values,
89 // New property/values/target should cause re-initialization prior to starting
114 // New property/values/target should cause re-initialization prior to starting
120 * a setter function that will be called to set animated values.
164 * Constructs and returns an ObjectAnimator that animates between int values. A single
165 * value implies that that value is the one being animated to. Two values imply a starting
166 * and ending values. More than two values imply a starting value, values t
177 ofInt(Object target, String propertyName, int... values) argument
195 ofInt(T target, Property<T, Integer> property, int... values) argument
215 ofFloat(Object target, String propertyName, float... values) argument
233 ofFloat(T target, Property<T, Float> property, float... values) argument
257 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
280 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
305 ofPropertyValuesHolder(Object target, PropertyValuesHolder... values) argument
314 setIntValues(int... values) argument
329 setFloatValues(float... values) argument
344 setObjectValues(Object... values) argument
[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/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/webkit/
H A DWebStorageClassic.java69 Map values = (Map) msg.obj;
70 Map origins = (Map) values.get(ORIGINS);
71 ValueCallback<Map> callback = (ValueCallback<Map>) values.get(CALLBACK);
76 Map values = (Map) msg.obj;
77 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
78 callback.onReceiveValue((Long)values.get(USAGE));
82 Map values = (Map) msg.obj;
83 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
84 callback.onReceiveValue((Long)values.get(QUOTA));
121 Map values
[all...]
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java75 ArrayList<byte[]> values = execute('g', key);
76 return (values == null || values.isEmpty()) ? null : values.get(0);
111 ArrayList<byte[]> values = execute('s', prefix);
112 return (values == null) ? null : values.toArray(new byte[values.size()][]);
116 byte[][] values = saw(getKeyBytes(prefix));
117 if (values
[all...]
/frameworks/av/media/mtp/
H A DMtpDataPacket.h79 void putAInt8(const int8_t* values, int count);
80 void putAUInt8(const uint8_t* values, int count);
81 void putAInt16(const int16_t* values, int count);
82 void putAUInt16(const uint16_t* values, int count);
83 void putAUInt16(const UInt16List* values);
84 void putAInt32(const int32_t* values, int count);
85 void putAUInt32(const uint32_t* values, int count);
87 void putAInt64(const int64_t* values, int count);
88 void putAUInt64(const uint64_t* values, int count);
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp29 float* values = autoValues.ptr(); local
36 scalars[i] = SkFloatToScalar(values[i]);
40 values = autoBlend.ptr();
42 blendStorage[i] = SkFloatToScalar(values[i]);
62 float* values = valueArray ? env->GetFloatArrayElements(valueArray, NULL) : NULL; local
63 result = interp->timeToValues(msec, (SkScalar*)values);
68 values[i] = SkScalarToFloat(*(SkScalar*)&values[i]);
70 env->ReleaseFloatArrayElements(valueArray, values, 0);
/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, Charsets.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));
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListDividers.java38 String values[] = new String[1000];
40 values[i] = ((Integer) i).toString();
45 android.R.layout.simple_list_item_1, values));
H A DListInHorizontal.java41 String values[] = new String[1000];
43 values[i] = ((Integer) i).toString();
48 android.R.layout.simple_list_item_1, values));
H A DListInVertical.java41 String values[] = new String[1000];
43 values[i] = ((Integer) i).toString();
48 android.R.layout.simple_list_item_1, values));

Completed in 1901 milliseconds

1234567891011>>