OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:halfHeight
(Results
1 - 10
of
10
) sorted by null
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
241
final int
halfHeight
= height / 2;
246
while ((
halfHeight
/ inSampleSize) > reqHeight
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
241
final int
halfHeight
= height / 2;
246
while ((
halfHeight
/ inSampleSize) > reqHeight
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageResizer.java
241
final int
halfHeight
= height / 2;
246
while ((
halfHeight
/ inSampleSize) > reqHeight
/external/chromium_org/third_party/skia/src/effects/
SkDashPathEffect.cpp
278
SkScalar halfWidth,
halfHeight
;
281
halfHeight
= SkScalarHalf(rec.getWidth());
284
halfHeight
= SkScalarHalf(clampedInitialDashLength);
288
results->fFirst.addRect(x - halfWidth, y -
halfHeight
,
289
x + halfWidth, y +
halfHeight
);
329
SkScalar halfWidth,
halfHeight
;
332
halfHeight
= SkScalarHalf(rec.getWidth());
335
halfHeight
= SkScalarHalf(temp);
337
results->fLast.addRect(x - halfWidth, y -
halfHeight
,
338
x + halfWidth, y +
halfHeight
);
[
all
...]
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java
128
int
halfHeight
= bitmap.getHeight() / 2;
130
canvas.drawCircle(halfWidth,
halfHeight
, Math.max(halfWidth,
halfHeight
), paint);
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
CustomArrayAdapter.java
121
int
halfHeight
= bitmap.getHeight()/2;
123
canvas.drawCircle(halfWidth,
halfHeight
, Math.max(halfWidth,
halfHeight
), paint);
/external/chromium_org/content/shell/renderer/test_runner/
mock_web_theme_engine.cc
326
int
halfHeight
= irect.height() / 2;
351
left + quarterWidth, top +
halfHeight
,
359
right - quarterWidth, top +
halfHeight
,
382
left + gripLongIndent, top +
halfHeight
,
383
right - gripLongIndent, top +
halfHeight
,
403
int longOffset =
halfHeight
- gripLongIndent;
421
int longOffset =
halfHeight
- notchLongOffset;
481
checkIndent,
halfHeight
,
482
checkIndent,
halfHeight
,
498
halfHeight
= irect.height() / 2
[
all
...]
/external/chromium_org/third_party/skia/tests/
RoundRectTest.cpp
604
SkScalar
halfHeight
= SkScalarHalf(dst.height());
610
SkScalarNearlyEqual(dst.radii((SkRRect::Corner)i).fY,
halfHeight
));
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp
640
float
halfHeight
= size.height() / 2;
644
endCorner.set(halfWidth,
halfHeight
);
646
endCorner.set(halfWidth, -
halfHeight
);
648
endCorner.set(-halfWidth, -
halfHeight
);
650
endCorner.set(-halfWidth,
halfHeight
);
659
secondPoint.set(halfWidth + endX,
halfHeight
- endY);
661
firstPoint.set(halfWidth - endX,
halfHeight
+ endY);
[
all
...]
/cts/tests/tests/view/src/android/view/cts/
ViewTest.java
581
int
halfHeight
= display.getHeight() /2;
584
new LinearLayout.LayoutParams(halfWidth,
halfHeight
);
595
assertEquals(rect.top +
halfHeight
, rect.bottom);
635
int
halfHeight
= display.getHeight() /2;
638
new LinearLayout.LayoutParams(halfWidth,
halfHeight
);
649
assertEquals(rect.top +
halfHeight
, rect.bottom);
[
all
...]
Completed in 411 milliseconds