Searched defs:mValues (Results 1 - 25 of 36) sorted by path

12

/frameworks/av/include/media/
H A Dmediascanner.h102 StringArray* mValues; member in class:android::MediaScannerClient
/frameworks/av/media/libstagefright/wifi-display/
H A DTimeSeries.h37 double mValues[kHistorySize]; member in struct:android::TimeSeries
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java198 PropertyValuesHolder[] mValues; field in class:ValueAnimator
339 if (mValues == null || mValues.length == 0) {
342 PropertyValuesHolder valuesHolder = mValues[0];
367 if (mValues == null || mValues.length == 0) {
370 PropertyValuesHolder valuesHolder = mValues[0];
399 if (mValues == null || mValues.length == 0) {
403 PropertyValuesHolder valuesHolder = mValues[
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java44 private final ContentValues mValues; field in class:ContentProviderOperation
59 mValues = builder.mValues;
71 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null;
93 if (mValues != null) {
95 mValues.writeToParcel(dest, 0);
281 * expansion of back references. This can be called if either mValues or mValuesBackReferences
287 return mValues;
290 if (mValues == null) {
293 values = new ContentValues(mValues);
406 private ContentValues mValues; field in class:ContentProviderOperation.Builder
[all...]
H A DContentQueryMap.java43 private Map<String, ContentValues> mValues = null; field in class:ContentQueryMap
126 return mValues.get(rowName);
150 int capacity = mValues != null ? mValues.size() : 0;
151 mValues = new HashMap<String, ContentValues>(capacity);
159 mValues.put(cursor.getString(mKeyColumn), values);
165 return mValues;
H A DContentValues.java36 private HashMap<String, Object> mValues; field in class:ContentValues
44 mValues = new HashMap<String, Object>(8);
53 mValues = new HashMap<String, Object>(size, 1.0f);
62 mValues = new HashMap<String, Object>(from.mValues);
73 mValues = values;
81 return mValues.equals(((ContentValues) object).mValues);
86 return mValues.hashCode();
96 mValues
[all...]
H A DDefaultDataHandler.java84 private ContentValues mValues; field in class:DefaultDataHandler
128 Uri u = mContentResolver.insert(mUris.lastElement(), mValues);
129 mValues = null;
136 if (mValues != null) {
168 if (mValues == null) {
169 mValues = new ContentValues();
171 mValues.put(key, value);
205 if (mValues != null) {
H A DEntity.java34 final private ContentValues mValues; field in class:Entity
38 mValues = values;
43 return mValues;
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java53 private String[] mValues; field in class:CursorJoiner
95 mValues = new String[mColumnsLeft.length * 2];
167 populateValues(mValues, mCursorLeft, mColumnsLeft, 0 /* start filling at index 0 */);
168 populateValues(mValues, mCursorRight, mColumnsRight, 1 /* start filling at index 1 */);
169 switch (compareStrings(mValues)) {
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java206 private float mValues[] = new float[6]; field in class:LegacySensorManager.LegacyListener
258 final float v[] = mValues;
/frameworks/base/core/java/android/preference/
H A DMultiSelectListPreference.java44 private Set<String> mValues = new HashSet<String>(); field in class:MultiSelectListPreference
128 mValues.clear();
129 mValues.addAll(values);
138 return mValues;
180 mNewValues.addAll(mValues);
186 final Set<String> values = mValues;
224 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue);
/frameworks/base/core/java/android/provider/
H A DContactsContract.java1791 private ArrayList<String> mValues = new ArrayList<String>(); field in class:ContactsContract.Contacts.AggregationSuggestions.Builder
1816 mValues.add(value);
1836 builder.appendQueryParameter("query", mKinds.get(i) + ":" + mValues.get(i));
H A DSettings.java739 // Must synchronize on 'this' to access mValues and mValuesVersion.
740 private final HashMap<String, String> mValues = new HashMap<String, String>(); field in class:Settings.NameValueCache
798 mValues.clear();
802 if (mValues.containsKey(name)) {
803 return mValues.get(name); // Could be null, that's OK -- negative caching
830 mValues.put(name, value);
858 mValues.put(name, value);
/frameworks/base/core/java/android/text/
H A DPackedIntVector.java34 private int[] mValues; field in class:PackedIntVector
50 mValues = null;
77 int value = mValues[row * columns + column];
111 mValues[row * mColumns + column] = value;
132 mValues[row * mColumns + column] = value;
264 if (mValues != null) {
265 System.arraycopy(mValues, 0, newvalues, 0, columns * rowgapstart);
266 System.arraycopy(mValues, (mRows - after) * columns,
283 mValues = newvalues;
292 final int[] values = mValues;
[all...]
H A DPackedObjectVector.java29 private Object[] mValues; field in class:PackedObjectVector
40 mValues = new Object[mRows * mColumns];
49 Object value = mValues[row * mColumns + column];
60 mValues[row * mColumns + column] = value;
118 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
123 mValues = newvalues;
142 Object val = mValues[i * mColumns + j];
144 mValues[destrow * mColumns + j] = val;
158 Object val = mValues[
[all...]
/frameworks/base/core/java/android/util/
H A DLongSparseArray.java31 private Object[] mValues; field in class:LongSparseArray
50 mValues = new Object[initialCapacity];
61 clone.mValues = mValues.clone();
84 if (i < 0 || mValues[i] == DELETED) {
87 return (E) mValues[i];
98 if (mValues[i] != DELETED) {
99 mValues[i] = DELETED;
116 if (mValues[index] != DELETED) {
117 mValues[inde
[all...]
H A DSparseArray.java31 private Object[] mValues; field in class:SparseArray
50 mValues = new Object[initialCapacity];
61 clone.mValues = mValues.clone();
84 if (i < 0 || mValues[i] == DELETED) {
87 return (E) mValues[i];
98 if (mValues[i] != DELETED) {
99 mValues[i] = DELETED;
116 if (mValues[index] != DELETED) {
117 mValues[inde
[all...]
H A DSparseBooleanArray.java44 mValues = new boolean[initialCapacity];
54 clone.mValues = mValues.clone();
79 return mValues[i];
91 System.arraycopy(mValues, i + 1, mValues, i, mSize - (i + 1));
105 mValues[i] = value;
117 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
120 mValues
244 private boolean[] mValues; field in class:SparseBooleanArray
[all...]
H A DSparseIntArray.java29 private int[] mValues; field in class:SparseIntArray
48 mValues = new int[initialCapacity];
58 clone.mValues = mValues.clone();
83 return mValues[i];
103 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
116 mValues[i] = value;
128 System.arraycopy(mValues, 0, nvalues, 0, mValues
[all...]
H A DSparseLongArray.java31 private long[] mValues; field in class:SparseLongArray
50 mValues = new long[initialCapacity];
60 clone.mValues = mValues.clone();
85 return mValues[i];
105 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
118 mValues[i] = value;
128 System.arraycopy(mValues, i, mValues,
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java910 ContentValues[] mValues = new ContentValues[SIZE]; field in class:DatabasePerformanceTests.Perf20Test
934 mValues[i] = b;
942 mDatabase.update("t1", mValues[i], where[i], null);
954 ContentValues[] mValues = new ContentValues[SIZE]; field in class:DatabasePerformanceTests.Perf21Test
977 mValues[i] = b;
984 mDatabase.update("t1", mValues[i], where[i], null);
995 ContentValues[] mValues = new ContentValues[SIZE]; field in class:DatabasePerformanceTests.Perf22Test
1009 mValues[i] = b;
1016 mDatabase.insert("t1", null, mValues[i]);
1027 ContentValues[] mValues field in class:DatabasePerformanceTests.Perf23Test
1060 ContentValues[] mValues = new ContentValues[SIZE]; field in class:DatabasePerformanceTests.Perf24Test
1092 ContentValues[] mValues = new ContentValues[SIZE]; field in class:DatabasePerformanceTests.Perf25Test
[all...]
H A DNewDatabasePerformanceTests.java794 ContentValues[] mValues = new ContentValues[SIZE]; field in class:NewDatabasePerformanceTests.UpdateIndexWhere1000
818 mValues[i] = b;
825 mDatabase.update("t1", mValues[i], where[i], null);
837 ContentValues[] mValues = new ContentValues[SIZE]; field in class:NewDatabasePerformanceTests.UpdateWhere1000
860 mValues[i] = b;
866 mDatabase.update("t1", mValues[i], where[i], null);
877 ContentValues[] mValues = new ContentValues[SIZE]; field in class:NewDatabasePerformanceTests.InsertInteger10000
891 mValues[i] = b;
897 mDatabase.insert("t1", null, mValues[i]);
908 ContentValues[] mValues field in class:NewDatabasePerformanceTests.InsertIntegerIndex10000
940 ContentValues[] mValues = new ContentValues[SIZE]; field in class:NewDatabasePerformanceTests.InsertString10000
971 ContentValues[] mValues = new ContentValues[SIZE]; field in class:NewDatabasePerformanceTests.InsertStringIndexed10000
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicBlur.java30 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicBlur
H A DScriptIntrinsicConvolve3x3.java28 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicConvolve3x3
88 for (int ct=0; ct < mValues.length; ct++) {
89 mValues[ct] = v[ct];
90 fp.addF32(mValues[ct]);
H A DScriptIntrinsicConvolve5x5.java26 private final float[] mValues = new float[25]; field in class:ScriptIntrinsicConvolve5x5
83 for (int ct=0; ct < mValues.length; ct++) {
84 mValues[ct] = v[ct];
85 fp.addF32(mValues[ct]);

Completed in 473 milliseconds

12