Searched refs:mValues (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/core/java/android/content/
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 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 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/util/
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 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 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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java64 mValues = new WeakReference[initialCapacity];
83 if (i < 0 || mValues[i] == DELETED || mValues[i].get() == null) {
86 return (E) mValues[i].get();
97 if (mValues[i] != DELETED) {
98 mValues[i] = DELETED;
115 if (mValues[index] != DELETED) {
116 mValues[index] = DELETED;
125 WeakReference<?>[] values = mValues;
151 System.arraycopy(mValues,
374 private WeakReference<?>[] mValues; field in class:SparseWeakArray
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java29 private Object[] mValues; field in class:LongSparseArray
48 mValues = new Object[initialCapacity];
59 clone.mValues = mValues.clone();
82 if (i < 0 || mValues[i] == DELETED) {
85 return (E) mValues[i];
96 if (mValues[i] != DELETED) {
97 mValues[i] = DELETED;
114 if (mValues[index] != DELETED) {
115 mValues[inde
[all...]
H A DSparseArrayCompat.java43 mValues = new Object[initialCapacity];
62 if (i < 0 || mValues[i] == DELETED) {
65 return (E) mValues[i];
76 if (mValues[i] != DELETED) {
77 mValues[i] = DELETED;
94 if (mValues[index] != DELETED) {
95 mValues[index] = DELETED;
119 Object[] values = mValues;
149 mValues[i] = value;
153 if (i < mSize && mValues[
358 private Object[] mValues; field in class:SparseArrayCompat
[all...]
/frameworks/base/graphics/java/android/renderscript/
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]);
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]);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
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]);
H A DScriptIntrinsicConvolve3x3.java26 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicConvolve3x3
86 for (int ct=0; ct < mValues.length; ct++) {
87 mValues[ct] = v[ct];
88 fp.addF32(mValues[ct]);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java52 private float mValues[] = new float[MATRIX_SIZE]; field in class:Matrix_Delegate
85 System.arraycopy(matrix.mValues, 0, mValues, 0, MATRIX_SIZE);
93 System.arraycopy(values, 0, mValues, 0, MATRIX_SIZE);
100 reset(mValues);
109 if (mValues[k] != ((i==j) ? 1 : 0)) {
165 return getAffineTransform(mValues);
169 return (mValues[6] != 0 || mValues[7] != 0 || mValues[
[all...]
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java79 // mValues could be null if this is being constructed piecemeal. Just record the
81 if (mValues != null) {
82 PropertyValuesHolder valuesHolder = mValues[0];
101 // mValues could be null if this is being constructed piecemeal. Just record the
103 if (mValues != null) {
104 PropertyValuesHolder valuesHolder = mValues[0];
315 if (mValues == null || mValues.length == 0) {
330 if (mValues == null || mValues
[all...]
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/av/media/libmedia/
H A DMediaScannerClient.cpp29 mValues(NULL),
37 delete mValues;
62 mValues = new StringArray;
84 mValues->push_back(value);
159 uint8_t* src = (uint8_t *)mValues->getEntry(i);
173 const char* source = mValues->getEntry(i);
185 mValues->setEntry(i, "???");
189 mValues->setEntry(i, buffer);
208 encoding &= possibleEncodings(mValues->getEntry(i));
216 status_t status = handleStringTag(mNames->getEntry(i), mValues
[all...]
/frameworks/base/core/java/android/text/
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...]
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...]
/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/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);

Completed in 231 milliseconds

12