HomeSort by relevance Sort by last modified time
    Searched defs:mArray (Results 1 - 13 of 13) 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;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MultiLineReceiver.java 36 private final ArrayList<String> mArray = new ArrayList<String>();
70 mArray.clear();
88 mArray.add(line);
94 if (mArray.size() > 0) {
97 String[] lines = mArray.toArray(new String[mArray.size()]);
  /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/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/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 808 milliseconds