OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rectF
(Results
1 - 8
of
8
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/cts/
RectFTest.java
21
import android.graphics.
RectF
;
27
private
RectF
mRectF;
38
// new the
RectF
instance
39
mRectF = new
RectF
();
42
// new the
RectF
instance
43
mRectF = new
RectF
(1.5f, 2.5f, 20.3f, 40.9f);
46
RectF
rectF
= new
RectF
(1.5f, 2.5f, 20.3f, 40.9f);
47
// new the
RectF
instanc
[
all
...]
/packages/apps/Gallery2/src/com/android/camera/
FocusOverlayManager.java
22
import android.graphics.
RectF
;
519
RectF
rectF
= new
RectF
(left, top, left + 2 * areaSize, top + 2 * areaSize);
520
mMatrix.mapRect(
rectF
);
521
Util.rectFToRect(
rectF
, rect);
Util.java
33
import android.graphics.
RectF
;
636
public static void dumpRect(
RectF
rect, String msg) {
641
public static void rectFToRect(
RectF
rectF
, Rect rect) {
642
rect.left = Math.round(
rectF
.left);
643
rect.top = Math.round(
rectF
.top);
644
rect.right = Math.round(
rectF
.right);
645
rect.bottom = Math.round(
rectF
.bottom);
/packages/apps/LegacyCamera/src/com/android/camera/
Util.java
31
import android.graphics.
RectF
;
564
public static void dumpRect(
RectF
rect, String msg) {
569
public static void rectFToRect(
RectF
rectF
, Rect rect) {
570
rect.left = Math.round(
rectF
.left);
571
rect.top = Math.round(
rectF
.top);
572
rect.right = Math.round(
rectF
.right);
573
rect.bottom = Math.round(
rectF
.bottom);
FocusManager.java
26
import android.graphics.
RectF
;
454
RectF
rectF
= new
RectF
(left, top, left + areaWidth, top + areaHeight);
455
mMatrix.mapRect(
rectF
);
456
Util.rectFToRect(
rectF
, rect);
/packages/apps/Camera/src/com/android/camera/
FocusOverlayManager.java
22
import android.graphics.
RectF
;
521
RectF
rectF
= new
RectF
(left, top, left + areaWidth, top + areaHeight);
522
mMatrix.mapRect(
rectF
);
523
Util.rectFToRect(
rectF
, rect);
Util.java
33
import android.graphics.
RectF
;
629
public static void dumpRect(
RectF
rect, String msg) {
634
public static void rectFToRect(
RectF
rectF
, Rect rect) {
635
rect.left = Math.round(
rectF
.left);
636
rect.top = Math.round(
rectF
.top);
637
rect.right = Math.round(
rectF
.right);
638
rect.bottom = Math.round(
rectF
.bottom);
/frameworks/base/core/java/android/widget/
FastScroller.java
25
import android.graphics.
RectF
;
90
private
RectF
mOverlayPos;
289
mOverlayPos = new
RectF
();
391
final
RectF
pos = mOverlayPos;
404
final
RectF
rectF
= mOverlayPos;
409
canvas.drawText(mSectionText, (int) (
rectF
.left +
rectF
.right) / 2 - hOff,
410
(int) (
rectF
.bottom +
rectF
.top) / 2 + mOverlaySize / 4 - descent - vOff
[
all
...]
Completed in 1368 milliseconds