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

123

/frameworks/av/include/media/
H A DCharacterEncodingDetector.h54 StringArray mValues; member in class:android::CharacterEncodingDetector
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DCastTest.java26 ArrayList<String> mValues = new ArrayList<>(); field in class:CastTest
36 mValues.clear();
37 mValues.add("hello");
38 mValues.add("world");
39 mValues.add("not seen");
43 mBinder.setList(mValues);
/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/core/java/android/util/
H A DKeyValueListParser.java27 private final ArrayMap<String, String> mValues = new ArrayMap<>(); field in class:KeyValueListParser
50 mValues.clear();
56 mValues.clear();
60 mValues.put(pair.substring(0, sep).trim(), pair.substring(sep + 1).trim());
72 String value = mValues.get(key);
90 String value = mValues.get(key);
108 String value = mValues.get(key);
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 DIntArray.java32 private int[] mValues; field in class:IntArray
47 mValues = EmptyArray.INT;
49 mValues = ArrayUtils.newUnpaddedIntArray(initialCapacity);
74 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
77 mValues[index] = value;
96 return ContainerHelpers.binarySearch(mValues, mSize, value);
106 System.arraycopy(values.mValues, 0, mValues, mSize, count);
116 if (minCapacity >= 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...]
/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/support/v4/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java27 private final float[] mValues; field in class:LookupTableInterpolator
31 mValues = values;
32 mStepSize = 1f / (mValues.length - 1);
46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
54 return mValues[position] + weight * (mValues[position + 1] - mValues[position]);
/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
103 for (int ct=0; ct < mValues.length; ct++) {
104 mValues[ct] = v[ct];
105 fp.addF32(mValues[ct]);
H A DScriptIntrinsicConvolve5x5.java26 private final float[] mValues = new float[25]; field in class:ScriptIntrinsicConvolve5x5
105 for (int ct=0; ct < mValues.length; ct++) {
106 mValues[ct] = v[ct];
107 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...]
/frameworks/base/libs/hwui/
H A DInterpolator.h111 std::unique_ptr<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];

Completed in 597 milliseconds

123