Searched defs:mValues (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/av/include/media/
H A DCharacterEncodingDetector.h54 StringArray mValues; member in class:android::CharacterEncodingDetector
/frameworks/base/core/java/android/content/
H A DEntity.java31 final private ContentValues mValues; field in class:Entity
35 mValues = values;
40 return mValues;
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) {
/frameworks/base/media/java/android/media/
H A DAudioGainConfig.java32 private final int mValues[]; field in class:AudioGainConfig
41 mValues = values;
74 return mValues;
/frameworks/base/core/java/android/util/
H A DIntArray.java31 private int[] mValues; field in class:IntArray
46 mValues = EmptyArray.INT;
48 mValues = ArrayUtils.newUnpaddedIntArray(initialCapacity);
73 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
76 mValues[index] = value;
87 System.arraycopy(values.mValues, 0, mValues, mSize, count);
97 if (minCapacity >= mValues.length) {
102 System.arraycopy(mValues,
[all...]
H A DLongArray.java30 private long[] mValues; field in class:LongArray
45 mValues = EmptyArray.LONG;
47 mValues = ArrayUtils.newUnpaddedLongArray(initialCapacity);
72 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
75 mValues[index] = value;
86 System.arraycopy(values.mValues, 0, mValues, mSize, count);
96 if (minCapacity >= mValues.length) {
101 System.arraycopy(mValues,
[all...]
H A DLongSparseLongArray.java49 private long[] mValues; field in class:LongSparseLongArray
69 mValues = EmptyArray.LONG;
72 mValues = new long[mKeys.length];
83 clone.mValues = mValues.clone();
108 return mValues[i];
128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
141 mValues[i] = value;
146 mValues
[all...]
H A DSparseBooleanArray.java64 mValues = EmptyArray.BOOLEAN;
67 mValues = new boolean[mKeys.length];
78 clone.mValues = mValues.clone();
103 return mValues[i];
115 System.arraycopy(mValues, i + 1, mValues, i, mSize - (i + 1));
123 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
136 mValues[
263 private boolean[] mValues; field in class:SparseBooleanArray
[all...]
H A DSparseIntArray.java47 private int[] mValues; field in class:SparseIntArray
67 mValues = EmptyArray.INT;
70 mValues = new int[mKeys.length];
81 clone.mValues = mValues.clone();
106 return mValues[i];
126 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
139 mValues[i] = value;
144 mValues
[all...]
H A DSparseLongArray.java47 private long[] mValues; field in class:SparseLongArray
67 mValues = EmptyArray.LONG;
69 mValues = ArrayUtils.newUnpaddedLongArray(initialCapacity);
70 mKeys = new int[mValues.length];
81 clone.mValues = mValues.clone();
106 return mValues[i];
126 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
139 mValues[
[all...]
H A DLongSparseArray.java57 private Object[] mValues; field in class:LongSparseArray
77 mValues = EmptyArray.OBJECT;
80 mValues = ArrayUtils.newUnpaddedObjectArray(initialCapacity);
92 clone.mValues = mValues.clone();
115 if (i < 0 || mValues[i] == DELETED) {
118 return (E) mValues[i];
129 if (mValues[i] != DELETED) {
130 mValues[i] = DELETED;
147 if (mValues[inde
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBlur.java26 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicBlur
H A DScriptIntrinsicConvolve3x3.java24 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicConvolve3x3
94 for (int ct=0; ct < mValues.length; ct++) {
95 mValues[ct] = v[ct];
96 fp.addF32(mValues[ct]);
H A DScriptIntrinsicConvolve5x5.java24 private final float[] mValues = new float[25]; field in class:ScriptIntrinsicConvolve5x5
95 for (int ct=0; ct < mValues.length; ct++) {
96 mValues[ct] = v[ct];
97 fp.addF32(mValues[ct]);
/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/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBlur.java30 private final float[] mValues = new float[9]; field in class:ScriptIntrinsicBlur
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]);
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java32 private Object[] mValues; field in class:PackedObjectVector
38 mValues = EmptyArray.OBJECT;
51 Object value = mValues[row * mColumns + column];
62 mValues[row * mColumns + column] = value;
119 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart);
120 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
124 mValues = newvalues;
143 Object val = mValues[i * mColumns + j];
145 mValues[destrow * mColumns + j] = val;
159 Object val = mValues[
[all...]
H A DPackedIntVector.java35 private int[] mValues; field in class:PackedIntVector
51 mValues = null;
78 int value = mValues[row * columns + column];
112 mValues[row * mColumns + column] = value;
133 mValues[row * mColumns + column] = value;
265 if (mValues != null) {
266 System.arraycopy(mValues, 0, newvalues, 0, columns * rowgapstart);
267 System.arraycopy(mValues, (mRows - after) * columns,
284 mValues = newvalues;
293 final int[] values = mValues;
[all...]
/frameworks/base/libs/hwui/
H A DInterpolator.h110 float* mValues; member in class:android::uirenderer::LUTInterpolator
/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/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)) {

Completed in 109 milliseconds

12