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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGeneratorTest.cpp 42 SkISize fullSize() { return SkISize::Make(100, 100); }
53 m_generator = ImageFrameGenerator::create(fullSize(), m_data, false);
89 m_generator->setImageDecoderFactory(MockImageDecoderFactory::create(this, fullSize()));
133 OwnPtr<ScaledImageFragment> completeImageTemp = createCompleteImage(fullSize());
137 EXPECT_EQ(fullSize(), fullImage->scaledSize());
140 const ScaledImageFragment* tempImage = m_generator->decodeAndScale(fullSize());
142 EXPECT_EQ(fullSize(), tempImage->scaledSize());
152 const ScaledImageFragment* tempImage = m_generator->decodeAndScale(fullSize());
161 tempImage = m_generator->decodeAndScale(fullSize());
175 const ScaledImageFragment* tempImage = m_generator->decodeAndScale(fullSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
NativeImageSkia.cpp 563 unsigned long long fullSize = static_cast<unsigned long long>(scaledImageSize.width()) * static_cast<unsigned long long>(scaledImageSize.height());
582 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);
  /packages/apps/Camera2/src/com/android/camera/widget/
ModeOptions.java 206 final float fullSize = (mIsPortrait ? (float) getWidth() : (float) getHeight());
212 fullSize-mAnimateFrom.width()/2.0f);
286 ValueAnimator.ofFloat(fullSize-mAnimateFrom.width()/2.0f,
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 482 size_t fullSize = packetSize;
484 fullSize += buffer->range_length();
486 MediaBuffer *tmp = new MediaBuffer(fullSize);
517 buffer->set_range(0, fullSize);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 418 Bitmap fullSize = BitmapFactory.decodeStream(is, null, null);
419 return new BitmapDrawable(resources, fullSize);
486 Bitmap fullSize = null;
492 fullSize = BitmapFactory.decodeStream(is, null, options);
494 if (fullSize != null) {
495 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 671 Bitmap fullSize = null;
677 fullSize = BitmapFactory.decodeStream(is, null, options);
680 if (fullSize != null) {
682 scaleDownSampleSize = bounds.x / fullSize.getWidth();
690 if (roundedTrueCrop.width() > fullSize.getWidth()) {
692 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
694 if (roundedTrueCrop.right > fullSize.getWidth()) {
701 if (roundedTrueCrop.height() > fullSize.getHeight()) {
703 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
705 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]
  /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 678 Bitmap fullSize = null;
684 fullSize = BitmapFactory.decodeStream(is, null, options);
687 if (fullSize != null) {
689 scaleDownSampleSize = bounds.x / fullSize.getWidth();
697 if (roundedTrueCrop.width() > fullSize.getWidth()) {
699 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
701 if (roundedTrueCrop.right > fullSize.getWidth()) {
708 if (roundedTrueCrop.height() > fullSize.getHeight()) {
710 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
712 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 431 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
434 if (fullSize != count) {
436 fullSize);
448 fullSize);
480 fullSize);
563 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
565 if (fullSize != count) {
567 fullSize);
576 if (stream.write(mPixelBytes, mOffset, fullSize) != OK || mEnv->ExceptionCheck()) {
    [all...]

Completed in 1157 milliseconds