/external/proguard/src/proguard/evaluation/value/ |
InstructionOffsetValue.java | 36 private int[] values; field in class:InstructionOffsetValue 46 this.values = new int[] { value }; 50 public InstructionOffsetValue(int[] values) 52 this.values = values; 58 return values == null ? 0 : values.length; 64 return values[index]; 74 if (values != null) 76 for (int index = 0; index < values.length; index++ [all...] |
/hardware/invensense/6515/libsensors_iio/software/core/mllite/ |
hal_outputs.h | 16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy, 18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy, 20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy, 22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy, 24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy, 26 int inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy, 28 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy, 31 int inv_get_sensor_type_linear_acceleration(float *values, 34 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy, 37 int inv_get_sensor_type_orientation_6_axis(float *values, int8_t *accuracy [all...] |
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/ |
hal_outputs.h | 16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy, 18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy, 20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy, 22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy, 24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy, 26 int inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy, 28 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy, 31 int inv_get_sensor_type_linear_acceleration(float *values, 34 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy, 37 int inv_get_sensor_type_orientation_6_axis(float *values, int8_t *accuracy [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
ActivityManager_RunningServiceInfoTest.java | 59 ActivityManager.RunningServiceInfo values = local 61 assertEquals(mService, values.service); 62 assertEquals(1, values.pid); 63 assertEquals(PROCESS, values.process); 64 assertTrue(values.foreground); 65 assertEquals(1l, values.activeSince); 66 assertTrue(values.started); 67 assertEquals(2, values.clientCount); 68 assertEquals(1, values.crashCount); 69 assertEquals(1l, values.lastActivityTime) 78 ActivityManager.RunningServiceInfo values = local [all...] |
ActivityManagerProcessErrorStateInfoTest.java | 59 ActivityManager.ProcessErrorStateInfo values = local 62 assertEquals(condition, values.condition); 63 assertEquals(processName, values.processName); 64 assertEquals(pid, values.pid); 65 assertEquals(uid, values.uid); 66 assertEquals(tag, values.tag); 68 assertEquals(shortMsg, values.shortMsg); 69 assertEquals(longMsg, values.longMsg); 70 assertNull(values.crashData); // Deprecated field: always null 93 ActivityManager.ProcessErrorStateInfo values = new ActivityManager.ProcessErrorStateInfo() local [all...] |
ActivityManagerRecentTaskInfoTest.java | 52 ActivityManager.RecentTaskInfo values = ActivityManager.RecentTaskInfo.CREATOR local 54 assertEquals(id, values.id); 55 assertEquals(null, values.baseIntent); 56 assertEquals(null, values.origActivity); 67 values = ActivityManager.RecentTaskInfo.CREATOR 69 assertEquals(-1, values.id); 70 assertNotNull(values.baseIntent); 71 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction()); 72 assertEquals(origActivity, values.origActivity); 86 ActivityManager.RecentTaskInfo values = new ActivityManager.RecentTaskInfo() local [all...] |
/external/guava/guava-tests/benchmark/com/google/common/math/ |
StatsBenchmark.java | 37 double mean(double[] values) { 39 for (double value : values) { 42 return sum / values.length; 47 double mean(double[] values) { 50 for (double value : values) { 56 return sum / values.length; 61 double mean(double[] values) { 62 double mean = values[0]; 63 for (int i = 1; i < values.length; i++) { 64 mean = mean + (values[i] - mean) / (i + 1) 152 private double[][] values = new double[0x100][]; field in class:StatsBenchmark [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStoreAudioTestHelper.java | 122 ContentValues values = new ContentValues(); local 123 values.put(Media.DATA, isInternal ? INTERNAL_DATA : EXTERNAL_DATA); 124 values.put(Media.DATE_MODIFIED, DATE_MODIFIED); 125 values.put(Media.DISPLAY_NAME, DISPLAY_NAME); 126 values.put(Media.MIME_TYPE, MIME_TYPE); 127 values.put(Media.SIZE, SIZE); 128 values.put(Media.TITLE, TITLE); 129 values.put(Media.ALBUM, ALBUM); 130 values.put(Media.ARTIST, ARTIST); 131 values.put(Media.COMPOSER, COMPOSER) 201 ContentValues values = new ContentValues(); local 236 ContentValues values = super.getContentValues(isInternal); local 254 ContentValues values = super.getContentValues(isInternal); local 272 ContentValues values = super.getContentValues(isInternal); local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
UnivariateStatistic.java | 30 * @param values input array 33 double evaluate(double[] values); 39 * @param values the input array 44 double evaluate(double[] values, int begin, int length);
|
WeightedEvaluation.java | 31 * @param values input array 35 double evaluate(double[] values, double[] weights); 41 * @param values the input array 47 double evaluate(double[] values, double[] weights, int begin, int length);
|
/external/clang/test/FixIt/ |
no-macro-fixit.c | 8 va_list values; local 12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
|
/frameworks/base/test-runner/src/junit/runner/ |
Sorter.java | 13 public void swap(Vector values, int left, int right); 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);
|
/external/linux-tools-perf/src/tools/perf/util/ |
values.h | 17 void perf_read_values_init(struct perf_read_values *values); 18 void perf_read_values_destroy(struct perf_read_values *values); 20 void perf_read_values_add_value(struct perf_read_values *values, 24 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
|
/external/valgrind/none/tests/s390x/ |
trtt.stdout.exp | 2 the translated values is 4 the translated values is 6 the translated values is 8 the translated values is ffff dddd 10 the translated values is ffff dddd ffff cccc abab 12 the translated values is 0 0 0 0 0 14 the translated values is ffff dddd ffff 0 0 16 the translated values is ffff dddd ffff cccc abab caca bcbc cccc dada 0
|
troo.stdout.exp | 2 the translated values are 4 the translated values are 6 the translated values are ff bb dd ab ca 8 the translated values are ff bb dd ab ca bc cc da ea aa 10 the translated values are 12 the translated values are ff 14 the translated values are ff bb dd ab ca bc cc da
|
/frameworks/base/core/java/android/hardware/ |
SensorListener.java | 21 * 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[2]: Roll, rotation around Y axis (-90<=roll<=90), with positive values [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/ |
RawContactTest.java | 34 final ContentValues values = new ContentValues(); local 35 values.put("key1", "value1"); 36 values.put("key2", "value2"); 42 final RawContact contact = new RawContact(values); 49 final ContentValues values = new ContentValues(); local 50 values.put("key11", "value11"); 51 values.put("key22", "value22"); 57 final RawContact contact = new RawContact(values); 78 final ContentValues values = new ContentValues(); local 79 values.put("key1", "value1") 87 final ContentValues values = new ContentValues(); local [all...] |
/external/ceres-solver/internal/ceres/ |
block_random_access_matrix.h | 79 // MatrixRef m(cell->values, row_stride, col_stride); 88 : values(NULL) { 92 : values(ptr) { 95 double* values; member in struct:ceres::internal::CellInfo 119 // Zero out the values of the array. The structure of the matrix
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
RecordWriter.java | 15 void boolArray(String name, boolean[] values); 17 void characterArray(String name, char[] values); 19 void namedIndexArray(String name, String[] names, byte[] values); 21 void stringArray(String name, String[] values); 22 void stringTable(String name, String[][] values);
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/ |
datalogger_outputs.c | 46 * @param[out] values raw angular velocity in LSB. 49 void inv_get_sensor_type_gyro_raw_short(short *values, inv_time_t *timestamp) 53 if (values) 54 memcpy(values, &pg->raw, sizeof(short) * 3); 61 * @param[out] values raw angular velocity in dps. 64 void inv_get_sensor_type_gyro_raw_body_float(float *values, 76 if (values) { 77 values[0] = inv_q16_to_float(raw_body[0]); 78 values[1] = inv_q16_to_float(raw_body[1]); 79 values[2] = inv_q16_to_float(raw_body[2]) [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
MagnitudeVerificationTest.java | 37 float[][] values = { local 45 runStats(5.0f, 0.1f, values, true, 5.0f); 46 runStats(4.5f, 0.6f, values, true, 5.0f); 47 runStats(5.5f, 0.6f, values, true, 5.0f); 48 runStats(4.5f, 0.1f, values, false, 5.0f); 49 runStats(5.5f, 0.1f, values, false, 5.0f); 52 private void runStats(float expected, float threshold, float[][] values, boolean pass, float magnitude) { 54 MagnitudeVerification verification = getVerification(expected, threshold, values); 70 float[] ... values) { 71 Collection<TestSensorEvent> events = new ArrayList<>(values.length) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ |
StatUtils.java | 79 * Returns the sum of the values in the input array, or 85 * @param values array of values to sum 86 * @return the sum of the values or <code>Double.NaN</code> if the array 90 public static double sum(final double[] values) { 91 return SUM.evaluate(values); 101 * @param values the input array 104 * @return the sum of the values or Double.NaN if length = 0 108 public static double sum(final double[] values, final int begin, 110 return SUM.evaluate(values, begin, length) [all...] |
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p23.cpp | 13 void unexpanded_capture(Ts ...values) { 14 auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'values'}} 18 void implicit_capture(Ts ...values) { 19 auto implicit = [&] { print(values...); }; 24 void do_print(Ts... values) { 25 auto bycopy = [values...]() { print(values...); }; 27 auto byref = [&values...]() { print(values...); } [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
AbstractListMultimapTester.java | 34 protected void assertGet(K key, V... values) { 35 assertGet(key, Arrays.asList(values)); 38 protected void assertGet(K key, Collection<V> values) { 39 ASSERT.that(multimap().get(key)).has().exactlyAs(values).inOrder(); 41 if (!values.isEmpty()) { 42 ASSERT.that(multimap().asMap().get(key)).has().exactlyAs(values).inOrder(); 48 assertEquals(values.size(), multimap().get(key).size()); 49 assertEquals(values.size() > 0, multimap().containsKey(key)); 50 assertEquals(values.size() > 0, multimap().keySet().contains(key)); 51 assertEquals(values.size() > 0, multimap().keys().contains(key)) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Interpolator.java | 36 * 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) { 74 setKeyFrame(index, msec, values, null) [all...] |