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

12

/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java61 mValues = ContainerHelpers.EMPTY_BOOLEANS;
65 mValues = new boolean[initialCapacity];
76 clone.mValues = mValues.clone();
101 return mValues[i];
113 System.arraycopy(mValues, i + 1, mValues, i, mSize - (i + 1));
127 mValues[i] = value;
139 System.arraycopy(mValues, 0, nvalues, 0, mValues
284 private boolean[] mValues; field in class:SparseBooleanArray
[all...]
H A DSparseIntArray.java44 private int[] mValues; field in class:SparseIntArray
64 mValues = ContainerHelpers.EMPTY_INTS;
68 mValues = new int[initialCapacity];
79 clone.mValues = mValues.clone();
104 return mValues[i];
124 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
137 mValues[i] = value;
149 System.arraycopy(mValues,
[all...]
H A DLongSparseArray.java54 private Object[] mValues; field in class:LongSparseArray
74 mValues = ContainerHelpers.EMPTY_OBJECTS;
78 mValues = new Object[initialCapacity];
90 clone.mValues = mValues.clone();
113 if (i < 0 || mValues[i] == DELETED) {
116 return (E) mValues[i];
127 if (mValues[i] != DELETED) {
128 mValues[i] = DELETED;
145 if (mValues[inde
[all...]
H A DSparseArray.java54 private Object[] mValues; field in class:SparseArray
74 mValues = ContainerHelpers.EMPTY_OBJECTS;
78 mValues = new Object[initialCapacity];
90 clone.mValues = mValues.clone();
113 if (i < 0 || mValues[i] == DELETED) {
116 return (E) mValues[i];
127 if (mValues[i] != DELETED) {
128 mValues[i] = DELETED;
145 if (mValues[inde
[all...]
H A DLongSparseLongArray.java48 private long[] mValues; field in class:LongSparseLongArray
68 mValues = ContainerHelpers.EMPTY_LONGS;
72 mValues = new long[initialCapacity];
83 clone.mValues = mValues.clone();
108 return mValues[i];
128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
141 mValues[i] = value;
151 System.arraycopy(mValues,
[all...]
H A DSparseLongArray.java44 private long[] mValues; field in class:SparseLongArray
64 mValues = ContainerHelpers.EMPTY_LONGS;
68 mValues = new long[initialCapacity];
79 clone.mValues = mValues.clone();
104 return mValues[i];
124 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
137 mValues[i] = value;
147 System.arraycopy(mValues,
[all...]
/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/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.java48 private Object[] mValues; field in class:LongSparseArray
68 mValues = ContainerHelpers.EMPTY_OBJECTS;
72 mValues = new Object[initialCapacity];
84 clone.mValues = mValues.clone();
107 if (i < 0 || mValues[i] == DELETED) {
110 return (E) mValues[i];
121 if (mValues[i] != DELETED) {
122 mValues[i] = DELETED;
139 if (mValues[inde
[all...]
H A DSparseArrayCompat.java28 private Object[] mValues; field in class:SparseArrayCompat
48 mValues = ContainerHelpers.EMPTY_OBJECTS;
52 mValues = new Object[initialCapacity];
64 clone.mValues = mValues.clone();
87 if (i < 0 || mValues[i] == DELETED) {
90 return (E) mValues[i];
101 if (mValues[i] != DELETED) {
102 mValues[i] = DELETED;
119 if (mValues[inde
[all...]
/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.java80 // mValues could be null if this is being constructed piecemeal. Just record the
82 if (mValues != null) {
83 PropertyValuesHolder valuesHolder = mValues[0];
102 // mValues could be null if this is being constructed piecemeal. Just record the
104 if (mValues != null) {
105 PropertyValuesHolder valuesHolder = mValues[0];
141 } else if (mValues != null && mValues.length > 0) {
142 for (int i = 0; i < mValues.length; ++i) {
148 propertyName += mValues[
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DMotionSensor.java39 private float[] mValues = new float[3]; field in class:MotionSensor
74 synchronized(mValues) {
75 mValues[0] = event.values[0];
76 mValues[1] = event.values[1];
77 mValues[2] = event.values[2];
85 synchronized(mValues) {
86 outFrame.setValues(mValues);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DMotionSensorWTime.java41 private float[] mValues = new float[3]; field in class:MotionSensorWTime
80 synchronized(mValues) {
81 mValues[0] = event.values[0];
82 mValues[1] = event.values[1];
83 mValues[2] = event.values[2];
91 synchronized(mValues) {
93 mTemp[0][mCounter] = mValues[0];
94 mTemp[1][mCounter] = mValues[1];
95 mTemp[2][mCounter] = mValues[2];
/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/graphics/java/android/renderscript/
H A DScriptIntrinsicConvolve3x3.java26 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicConvolve3x3
96 for (int ct=0; ct < mValues.length; ct++) {
97 mValues[ct] = v[ct];
98 fp.addF32(mValues[ct]);
H A DScriptIntrinsicConvolve5x5.java26 private final float[] mValues = new float[25]; field in class:ScriptIntrinsicConvolve5x5
97 for (int ct=0; ct < mValues.length; ct++) {
98 mValues[ct] = v[ct];
99 fp.addF32(mValues[ct]);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicConvolve3x3.java26 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicConvolve3x3
91 for (int ct=0; ct < mValues.length; ct++) {
92 mValues[ct] = v[ct];
93 fp.addF32(mValues[ct]);
H A DScriptIntrinsicConvolve5x5.java26 private final float[] mValues = new float[25]; field in class:ScriptIntrinsicConvolve5x5
87 for (int ct=0; ct < mValues.length; ct++) {
88 mValues[ct] = v[ct];
89 fp.addF32(mValues[ct]);

Completed in 1611 milliseconds

12