/frameworks/base/libs/hwui/ |
D | DrawProfiler.cpp | 152 void DrawProfiler::addRect(Rect& r, float data, float* shapeOutput) { in addRect() function in android::uirenderer::DrawProfiler 167 addRect(r, mData[i].record, mRects[RECORD_INDEX] + shapeIndex); in prepareShapes() 168 addRect(r, mData[i].prepare, mRects[PREPARE_INDEX] + shapeIndex); in prepareShapes() 169 addRect(r, mData[i].playback, mRects[PLAYBACK_INDEX] + shapeIndex); in prepareShapes() 170 addRect(r, mData[i].swapBuffers, mRects[SWAPBUFFERS_INDEX] + shapeIndex); in prepareShapes()
|
D | DrawProfiler.h | 62 void addRect(Rect& r, float data, float* shapeOutput);
|
D | StatefulBaseRenderer.cpp | 160 path.addRect(left, top, right, bottom); in clipRect()
|
D | PathCache.cpp | 584 path.addRect(r, SkPath::kCW_Direction); in getRect()
|
D | PathTessellator.cpp | 820 path.addRect(-radius, -radius, radius, radius); in tessellatePoints()
|
D | OpenGLRenderer.cpp | 2658 path.addRect(rect); 2664 path.addRect(left, top, right, bottom);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | DebugOverlayView.java | 110 void addRect(Rect r, int color) { in addRect() method in DebugOverlayView 141 addRect(new Rect(0, 0, sCornerRectSize, sCornerRectSize), 0xFFff0000); in onMeasure() 142 … addRect(new Rect(getMeasuredWidth() - sCornerRectSize, getMeasuredHeight() - sCornerRectSize, in onMeasure()
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
D | RoundRectShape.java | 114 mPath.addRect(r, Path.Direction.CW); in onResize() 123 mPath.addRect(mInnerRect, Path.Direction.CCW); in onResize()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | PathOpsActivity.java | 63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW); in onSizeChanged()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 517 public void addRect(RectF rect, Direction dir) { in addRect() method in Path 518 addRect(rect.left, rect.top, rect.right, rect.bottom, dir); in addRect() 530 public void addRect(float left, float top, float right, float bottom, Direction dir) { in addRect() method in Path
|
/frameworks/base/core/java/android/text/ |
D | Layout.java | 1406 dest.addRect(left, top, right, bottom, Path.Direction.CW); in addSelection() 1445 dest.addRect(getLineLeft(startline), top, in getSelectionPath() 1448 dest.addRect(getLineRight(startline), top, in getSelectionPath() 1454 dest.addRect(0, top, width, bottom, Path.Direction.CW); in getSelectionPath() 1464 dest.addRect(width, top, getLineRight(endline), bottom, Path.Direction.CW); in getSelectionPath() 1466 dest.addRect(0, top, getLineLeft(endline), bottom, Path.Direction.CW); in getSelectionPath()
|
/frameworks/base/core/jni/android/graphics/ |
D | Path.cpp | 168 static void addRect(JNIEnv* env, jobject clazz, jlong objHandle, in addRect() function in android::SkPathGlue 172 obj->addRect(left, top, right, bottom, dir); in addRect() 504 {"native_addRect","(JFFFFI)V", (void*) SkPathGlue::addRect},
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 329 pathDelegate.addRect(left, top, right, bottom, dir); in native_addRect() 760 private void addRect(float left, float top, float right, float bottom, in addRect() method in Path_Delegate
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BatteryMeterView.java | 425 mClipPath.addRect(mFrame, Path.Direction.CCW); in draw()
|
/frameworks/base/api/ |
D | current.txt | 11090 method public void addRect(android.graphics.RectF, android.graphics.Path.Direction); 11091 method public void addRect(float, float, float, float, android.graphics.Path.Direction);
|