OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:origHeight
(Results
1 - 9
of
9
) sorted by null
/external/skia/src/codec/
SkIcoCodec.cpp
197
int
origHeight
= this->getInfo().height();
198
float desiredSize = desiredScale * origWidth *
origHeight
;
200
float minError = ((float) (origWidth *
origHeight
)) - desiredSize + 1.0f;
SkPngCodec.cpp
228
png_uint_32 origWidth,
origHeight
;
230
png_get_IHDR(png_ptr, info_ptr, &origWidth, &
origHeight
, &bitDepth,
319
*imageInfo = SkImageInfo::Make(origWidth,
origHeight
, colorType, alphaType, profileType);
/frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java
124
int
origHeight
;
127
origHeight
= rootView.getHeight();
135
while (Math.abs(newHeight -
origHeight
) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
139
return (Math.abs(
origHeight
- newHeight) >= IME_MIN_HEIGHT);
/external/skia/src/images/
SkImageDecoder_libwebp.cpp
292
int origWidth,
origHeight
, hasAlpha;
293
if (!webp_parse_header(stream, &origWidth, &
origHeight
, &hasAlpha)) {
299
SkScaledBitmapSampler sampler(origWidth,
origHeight
, sampleSize);
317
if (!webp_get_config_resize(&config, decodedBitmap, origWidth,
origHeight
,
SkImageDecoder_libpng.cpp
256
png_uint_32 origWidth,
origHeight
;
258
png_get_IHDR(png_ptr, info_ptr, &origWidth, &
origHeight
, &bitDepth,
295
png_uint_32 origWidth,
origHeight
;
297
png_get_IHDR(png_ptr, info_ptr, &origWidth, &
origHeight
, &bitDepth,
311
SkScaledBitmapSampler sampler(origWidth,
origHeight
, sampleSize);
370
for (png_uint_32 y = 0; y <
origHeight
; y++) {
404
SkAutoTMalloc<uint8_t> storage(origWidth *
origHeight
* srcBytesPerPixel);
410
for (png_uint_32 y = 0; y <
origHeight
; y++) {
439
SkASSERT(read <=
origHeight
);
440
skip_src_rows(png_ptr, srcRow,
origHeight
- read)
[
all
...]
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java
519
final int
origHeight
= preloadedDrawable.getIntrinsicHeight();
529
assertEquals(Math.round(
origHeight
/ 2f), halfDrawable.getIntrinsicHeight());
538
assertEquals(
origHeight
* 2, doubleDrawable.getIntrinsicHeight());
547
assertEquals(
origHeight
, origDrawable.getIntrinsicHeight());
564
assertEquals(2 * Math.round(
origHeight
/ 2f), halfDrawable.getIntrinsicHeight());
569
assertEquals(
origHeight
, doubleDrawable.getIntrinsicHeight());
BitmapDrawableTest.java
544
final int
origHeight
= preloadedDrawable.getIntrinsicHeight();
559
assertEquals(Math.round(
origHeight
* scale), scaledDrawable.getIntrinsicHeight());
574
assertEquals(
origHeight
, scaledDrawable.getIntrinsicHeight());
NinePatchDrawableTest.java
421
final int
origHeight
= preloadedDrawable.getIntrinsicHeight();
435
assertEquals(Math.round(
origHeight
* scale), scaledDrawable.getIntrinsicHeight());
452
assertEquals(
origHeight
, scaledDrawable.getIntrinsicHeight());
513
final int
origHeight
= preloadedDrawable.getIntrinsicHeight();
528
assertEquals(Math.round(
origHeight
* scale), scaledDrawable.getIntrinsicHeight());
548
assertEquals(
origHeight
, scaledDrawable.getIntrinsicHeight());
/external/opencv3/modules/objdetect/src/
cascadedetect.cpp
[
all
...]
Completed in 1185 milliseconds