HomeSort by relevance Sort by last modified time
    Searched refs:mRects (Results 1 - 6 of 6) sorted by null

  /frameworks/base/libs/hwui/
DrawProfiler.cpp 153 mRects = new float*[NUM_ELEMENTS];
156 mRects[i] = (float*) calloc(mDataSize, 4 * sizeof(float));
181 addRect(r, mData[i].record, mRects[RECORD_INDEX] + shapeIndex);
182 addRect(r, mData[i].prepare, mRects[PREPARE_INDEX] + shapeIndex);
183 addRect(r, mData[i].playback, mRects[PLAYBACK_INDEX] + shapeIndex);
184 addRect(r, mData[i].swapBuffers, mRects[SWAPBUFFERS_INDEX] + shapeIndex);
193 canvas->drawRects(mRects[i], mDataSize * 4, &paint);
199 // To do so we use the bottom of mRects[0] and the top of mRects[NUM_ELEMENTS-1]
204 canvas->drawRect(mRects[0][i], mRects[NUM_ELEMENTS-1][i+1], mRects[0][i+2]
    [all...]
DrawProfiler.h 84 * mRects represents an array of rect shapes, divided into NUM_ELEMENTS
86 * For example mRects[0] is the array of rect floats suitable for
90 float** mRects;
DisplayListOp.h     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DebugOverlayView.java 49 ArrayList<Pair<Rect, Integer>> mRects = new ArrayList<Pair<Rect, Integer>>();
106 mRects.clear();
111 mRects.add(new Pair<Rect, Integer>(r, color));
119 mRects.add(new Pair<Rect, Integer>(vr, color));
128 mRects.add(new Pair<Rect, Integer>(r, color));
153 int numRects = mRects.size();
155 Pair<Rect, Integer> r = mRects.get(i);
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 65 // mRects[0] : a normal one.
66 // mRects[1] : same size to that of mRects[1], but its left-top point is shifted
67 // mRects[2] : sides are not multiples of 16
68 // mRects[3] : the left-top point is at an odd position
69 private Rect[] mRects = { new Rect(0, 0, 0 + mRectWidths[0], 0 + mRectHeights[0]),
75 private Rect[] mRectsShifted = { mRects[0], mRects[1] };
170 for (int l = 0; l < mRects.length; ++l) {
175 mRects[l], mRects[l])
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 183 private RangeArray<Rect> mRects = new RangeArray<Rect>(-BOX_MAX, BOX_MAX);
221 mRects.put(i, new Rect());
753 Rect r = mRects.get(j);
847 // Convert the information in mPlatform and mBoxes to mRects, so the user
871 if (Rect.intersects(mRects.get(i), mRects.get(j))) {
880 Rect r = mRects.get(i);
896 Rect r = mRects.get(i);
    [all...]

Completed in 143 milliseconds