HomeSort by relevance Sort by last modified time
    Searched defs:fullSize (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGeneratorTest.cpp 42 SkISize fullSize() { return SkISize::Make(100, 100); }
54 m_generator = ImageFrameGenerator::create(fullSize(), m_data, true);
90 m_generator->setImageDecoderFactory(MockImageDecoderFactory::create(this, fullSize()));
133 m_generator.get(), createCompleteImage(fullSize()));
134 EXPECT_EQ(fullSize(), fullImage->scaledSize());
137 const ScaledImageFragment* tempImage = m_generator->decodeAndScale(fullSize());
139 EXPECT_EQ(fullSize(), tempImage->scaledSize());
148 m_generator.get(), createCompleteImage(fullSize()));
149 EXPECT_EQ(fullSize(), fullImage->scaledSize());
181 const ScaledImageFragment* fullImage = m_generator->decodeAndScale(fullSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
NativeImageSkia.cpp 531 unsigned long long fullSize = static_cast<unsigned long long>(scaledImageSize.width()) * static_cast<unsigned long long>(scaledImageSize.height());
550 return fragmentSize > fullSize / 4;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SearchRecentSuggestionsProvider.java 251 int fullSize = (mFullQueryTerms != null) ? mFullQueryTerms.size() : 0;
252 if (fullSize > 0) {
254 for (int i = 0; i < fullSize; i++) {
256 if (i < fullSize -1) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 55 unsigned int fullSize = typeSizeof(fTy);
66 t[j] = bld->getSSA(fullSize);
83 r[j] = bld->getSSA(fullSize);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 55 unsigned int fullSize = typeSizeof(fTy);
66 t[j] = bld->getSSA(fullSize);
83 r[j] = bld->getSSA(fullSize);
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 647 Bitmap fullSize = null;
653 fullSize = BitmapFactory.decodeStream(is, null, options);
656 if (fullSize != null) {
658 scaleDownSampleSize = bounds.x / fullSize.getWidth();
666 if (roundedTrueCrop.width() > fullSize.getWidth()) {
668 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
670 if (roundedTrueCrop.right > fullSize.getWidth()) {
677 if (roundedTrueCrop.height() > fullSize.getHeight()) {
679 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
681 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 478 size_t fullSize = packetSize;
480 fullSize += buffer->range_length();
482 MediaBuffer *tmp = new MediaBuffer(fullSize);
513 buffer->set_range(0, fullSize);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 428 Bitmap fullSize = BitmapFactory.decodeStream(is, null, null);
429 return new BitmapDrawable(resources, fullSize);
498 Bitmap fullSize = null;
504 fullSize = BitmapFactory.decodeStream(is, null, options);
506 if (fullSize != null) {
507 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropActivity.java 497 Bitmap fullSize = null;
499 fullSize = BitmapFactory.decodeStream(mInStream);
501 if (fullSize != null) {
502 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 500 Bitmap fullSize = null;
502 fullSize = BitmapFactory.decodeStream(mInStream);
504 if (fullSize != null) {
505 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java 645 Bitmap fullSize = null;
651 fullSize = BitmapFactory.decodeStream(is, null, options);
654 if (fullSize != null) {
656 scaleDownSampleSize = bounds.x / fullSize.getWidth();
664 if (roundedTrueCrop.width() > fullSize.getWidth()) {
666 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
668 if (roundedTrueCrop.right > fullSize.getWidth()) {
675 if (roundedTrueCrop.height() > fullSize.getHeight()) {
677 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
679 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]

Completed in 1265 milliseconds