HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 51 - 75 of 5587) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
IntList.java 29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[size++] = value
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[size++] = value
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntList.java 29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[size++] = value
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractUnivariateStatistic.java 49 * @param values data array to store (may be null to remove stored data)
52 public void setData(final double[] values) {
53 storedData = (values == null) ? null : values.clone();
74 * @param values data array to store
79 public void setData(final double[] values, final int begin, final int length) {
81 System.arraycopy(values, begin, storedData, 0, length);
98 public double evaluate(final double[] values) {
99 test(values, 0, 0);
100 return evaluate(values, 0, values.length)
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
DefaultCarrierConfigValuesLoader.java 29 * The default implementation of loader for carrier config values
41 // Cached values for subIds
52 Bundle values; local
55 values = mValuesCache.get(subId);
56 if (values == null) {
57 values = new Bundle();
58 mValuesCache.put(subId, values);
59 loadLocked(subId, values);
64 Log.i(MmsService.TAG, "Carrier configs loaded: " + values);
66 return values;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 79 values = self.tdb.Select(
84 colval = pickle.loads(values[0][colname])
86 colval = pickle.loads(bytes(values[0][colname], "iso8859-1"))
124 values = self.tdb.Select(tabname, [col2],
127 values = self.tdb.Select(tabname, [col2],
131 self.assertEqual(len(values), 2)
132 if values[0]['Species'] == 'Penguin' :
133 self.assertEqual(values[1]['Species'], 'SR-71A Blackbird')
134 elif values[0]['Species'] == 'SR-71A Blackbird' :
135 self.assertEqual(values[1]['Species'], 'Penguin'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 79 values = self.tdb.Select(
84 colval = pickle.loads(values[0][colname])
86 colval = pickle.loads(bytes(values[0][colname], "iso8859-1"))
124 values = self.tdb.Select(tabname, [col2],
127 values = self.tdb.Select(tabname, [col2],
131 self.assertEqual(len(values), 2)
132 if values[0]['Species'] == 'Penguin' :
133 self.assertEqual(values[1]['Species'], 'SR-71A Blackbird')
134 elif values[0]['Species'] == 'SR-71A Blackbird' :
135 self.assertEqual(values[1]['Species'], 'Penguin'
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
SemiVariance.java 26 * <p>Computes the semivariance of a set of values with respect to a given cutoff value.
27 * We define the <i>downside semivariance</i> of a set of values <code>x</code>
33 * is defined similarly, with the sum taken over values of <code>x</code> that
38 * and bias correction may be set using property setters or their values can provided as
172 * @param values the input array
174 * @throws IllegalArgumentException if values is null
178 public double evaluate(final double[] values) {
179 if (values == null) {
182 return evaluate(values, 0, values.length)
    [all...]
  /external/skia/src/core/
SkScalar.cpp 14 const SkScalar values[], int length) {
17 SkASSERT(values != NULL);
25 // Could use sentinel values to eliminate conditionals, but since the
28 return values[length-1];
30 return values[0];
35 return SkScalarInterp(values[right-1], values[right], fract);
  /external/valgrind/none/tests/ppc32/
jm-misc.stdout.exp 2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
  /external/valgrind/none/tests/ppc64/
jm-misc.stdout.exp 2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
  /frameworks/base/core/java/android/transition/
TransitionValues.java 27 * 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 tracked by transitions for this scen
54 public final Map<String, Object> values = new ArrayMap<String, Object>(); field in class:TransitionValues
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
ProviderUtil.java 49 * @param values The content of the message
53 public static boolean shouldSetCreator(ContentValues values, int uid) {
55 (!values.containsKey(Telephony.Sms.CREATOR) &&
56 !values.containsKey(Telephony.Mms.CREATOR));
62 * @param values The content of the message
66 public static boolean shouldRemoveCreator(ContentValues values, int uid) {
68 (values.containsKey(Telephony.Sms.CREATOR) ||
69 values.containsKey(Telephony.Mms.CREATOR));
  /external/webrtc/src/system_wrappers/source/
data_log_c_helpers_unittest.c 71 int values[kTestArrayLen] = {1, 2, 3, 4}; local
72 return WebRtcDataLog_InsertArray_int(kTableName, kColumnName2, values,
81 float values[kTestArrayLen] = {1.0f, 2.0f, 3.0f, 4.0f}; local
82 return WebRtcDataLog_InsertArray_float(kTableName, kColumnName2, values,
91 double values[kTestArrayLen] = {1.0, 2.0, 3.0, 4.0}; local
92 return WebRtcDataLog_InsertArray_double(kTableName, kColumnName2, values,
101 int32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
102 return WebRtcDataLog_InsertArray_int32(kTableName, kColumnName2, values,
111 uint32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
112 return WebRtcDataLog_InsertArray_uint32(kTableName, kColumnName2, values,
121 int64_t values[kTestArrayLen] = {1, 2, 3, 4}; local
    [all...]
  /frameworks/base/media/java/android/media/
AudioGainConfig.java 20 * 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
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DatabaseModifier.java 34 public abstract long insert(String table, String nullColumnHack, ContentValues values);
39 public abstract long insert(ContentValues values);
44 public abstract int update(String table, ContentValues values,
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoWriteSecureSettingsPermissionTest.java 37 ContentValues values = new ContentValues(); local
38 values.put(Settings.Secure.NAME, Settings.Secure.ACCESSIBILITY_ENABLED);
39 values.put(Settings.Secure.VALUE, Boolean.TRUE);
40 getContext().getContentResolver().insert(Settings.Secure.CONTENT_URI, values);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 42 ContentValues values = new ContentValues(); local
43 values.put(ContactsContract.Data.MIMETYPE,
45 values.put(CommonDataKinds.StructuredName.DISPLAY_NAME, name);
46 insertData(resolver, rawContactId, values);
51 ContentValues values = new ContentValues(); local
52 values.put(ContactsContract.Data.MIMETYPE, CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
53 values.put(CommonDataKinds.Phone.NUMBER, number);
54 return DataUtil.insertData(resolver, rawContactId, values);
58 ContentValues values = new ContentValues(); local
59 values.put(ContactsContract.Data.MIMETYPE, CommonDataKinds.Email.CONTENT_ITEM_TYPE)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ArrayRegion.java 31 private Value[] values; field in class:ArrayRegion
39 values = new Value[length];
47 return values[index];
55 values[index] = value;
  /external/skia/src/animator/
SkAnimateProperties.h 18 SK_PROPERTY(values)
  /external/valgrind/none/tests/s390x/
trot.stdout.exp 2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is bbbb ccdd ffff
10 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
12 the translated values is bbbb ccdd 0 0 0
14 the translated values is bbbb ccdd ffff 0 0
16 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
trto.stdout.exp 2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is cc dd ff cc ab ca
10 the translated values is cc dd ff cc ab ca bc cc dd ea
12 the translated values is cc dd 0 0 0 0
14 the translated values is cc dd 0 0 0 0
16 the translated values is cc dd ff cc ab ca bc cc dd 0
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
TestSensorEvent.java 34 public final float values[]; field in class:TestSensorEvent
54 values = event.values.clone();
65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) {
66 this(sensor, timestamp, timestamp, accuracy, values);
73 float[] values) {
78 this.values = values;
84 "Timestamp=%sns, ReceivedTimestamp=%sns, Accuracy=%s, Values=%s",
88 Arrays.toString(this.values));
    [all...]
  /external/valgrind/none/tests/amd64/
gen_insn_test.pl 241 my @values = split(/,/, $3);
260 foreach my $value (@values)
278 my @values = split(/,/, $3);
297 foreach my $value (@values)
311 my @values = split(/,/, $2);
313 $values[0] = oct($values[0]) if $values[0] =~ /^0/;
314 $values[1] = oct($values[1]) if $values[1] =~ /^0/
    [all...]
  /external/valgrind/none/tests/x86/
gen_insn_test.pl 218 my @values = split(/,/, $3);
237 foreach my $value (@values)
255 my @values = split(/,/, $3);
274 foreach my $value (@values)
288 my @values = split(/,/, $2);
290 $values[0] = oct($values[0]) if $values[0] =~ /^0/;
291 $values[1] = oct($values[1]) if $values[1] =~ /^0/
    [all...]

Completed in 898 milliseconds

1 23 4 5 6 7 8 91011>>