HomeSort by relevance Sort by last modified time
    Searched defs:mArray (Results 1 - 15 of 15) sorted by null

  /frameworks/base/obex/javax/obex/
PrivateOutputStream.java 48 private ByteArrayOutputStream mArray;
60 mArray = new ByteArrayOutputStream();
70 return mArray.size();
85 mArray.write(b);
86 if (mArray.size() == mMaxPacketSize) {
110 while ((mArray.size() + remainLength) >= mMaxPacketSize) {
111 int bufferLeft = mMaxPacketSize - mArray.size();
112 mArray.write(buffer, offset1, bufferLeft);
118 mArray.write(buffer, offset1, remainLength);
128 if (mArray.size() > 0)
    [all...]
ApplicationParameter.java 40 private byte[] mArray;
112 mArray = new byte[mMaxLength];
119 System.arraycopy(mArray, 0, array_tmp, 0, mLength);
120 mArray = array_tmp;
123 mArray[mLength++] = tag;
124 mArray[mLength++] = len;
125 System.arraycopy(value, 0, mArray, mLength, len);
131 System.arraycopy(mArray, 0, para, 0, mLength);
  /frameworks/native/include/utils/
StringArray.h 66 return (unsigned(idx) >= unsigned(mCurrent)) ? NULL : mArray[idx];
78 char** mArray;
  /libcore/benchmarks/src/benchmarks/
ArrayIterationBenchmark.java 27 Foo[] mArray = new Foo[27];
29 for (int i = 0; i < mArray.length; ++i) mArray[i] = new Foo();
34 for (int i = 0; i < mArray.length; i++) {
35 sum += mArray[i].mSplat;
42 Foo[] localArray = mArray;
53 for (Foo a: mArray) {
  /frameworks/base/core/java/android/webkit/
WebBackForwardListClassic.java 28 private ArrayList<WebHistoryItemClassic> mArray;
36 mArray = new ArrayList<WebHistoryItemClassic>();
52 return mArray.get(index);
56 return mArray.size();
88 final int size = mArray.size();
92 final WebHistoryItem h = mArray.remove(i);
96 mArray.add((WebHistoryItemClassic) item);
108 mArray.clear();
124 final WebHistoryItem h = mArray.remove(index);
139 l.mArray = new ArrayList<WebHistoryItemClassic>(size)
    [all...]
ByteArrayBuilder.java 54 if (c.mLength == c.mArray.length) {
59 int amount = Math.min(length, c.mArray.length - c.mLength);
60 System.arraycopy(array, offset, c.mArray, c.mLength, amount);
132 public byte[] mArray;
136 mArray = new byte[length];
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 38 private final float[] mArray = new float[20];
52 System.arraycopy(src, 0, mArray, 0, 20);
59 System.arraycopy(src.mArray, 0, mArray, 0, 20);
65 public final float[] getArray() { return mArray; }
75 final float[] a = mArray;
87 System.arraycopy(src.mArray, 0, mArray, 0, 20);
94 System.arraycopy(src, 0, mArray, 0, 20);
102 final float[] a = mArray;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ResizableIntArray.java 23 private int[] mArray;
32 return mArray[index];
39 mArray[index] = val;
49 mArray[currentLength] = val;
54 * Calculate the new capacity of {@code mArray}.
55 * @param minimumCapacity the minimum capacity that the {@code mArray} should have.
56 * @return the new capacity that the {@code mArray} should have. Returns zero when there is no
57 * need to expand {@code mArray}.
60 final int currentCapcity = mArray.length;
73 mArray = Arrays.copyOf(mArray, newCapacity)
    [all...]
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 79 mArray(array), mLength(len) {
84 mArray = new CK_BYTE[len];
88 if (mArray != NULL) {
89 delete[] mArray;
94 return mArray;
106 CK_BYTE* array = mArray;
107 mArray = NULL;
112 CK_BYTE* mArray;
  /device/samsung/tuna/keymaster/
keymaster_tuna.cpp 79 mArray(array), mLength(len) {
84 mArray = new CK_BYTE[len];
88 if (mArray != NULL) {
89 delete[] mArray;
94 return mArray;
102 CK_BYTE* array = mArray;
103 mArray = NULL;
108 CK_BYTE* mArray;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 121 private int[] mArray;
128 mArray = a;
132 mArray = a;
137 return Arrays.hashCode(mArray);
147 if (!Arrays.equals(mArray, other.mArray)) return false;
  /frameworks/wilhelm/src/
itfstruct.h 236 BufferHeader *mArray;
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 275 milliseconds