/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Blend.java | 39 private Allocation image1; field in class:Blend 63 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType()); 113 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0); 117 mBlendHelper.forEach_setImageAlpha(image1); 124 mBlend.forEachSrc(image1, image2); 127 mBlend.forEachDst(image1, image2); 130 mBlend.forEachSrcOver(image1, image2); 133 mBlend.forEachDstOver(image1, image2); 136 mBlend.forEachSrcIn(image1, image2); 139 mBlend.forEachDstIn(image1, image2) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
table_row_nsimage_cache_unittest.mm | 54 NSImage* image1 = cache.GetImageForRow(1); 58 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 74 EXPECT_NE(image1, cache.GetImageForRow(1)); 75 image1 = cache.GetImageForRow(1); 83 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 98 NSImage* image1 = cache.GetImageForRow(1); 102 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 113 image1 = cache.GetImageForRow(1); 114 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 123 image1 = cache.GetImageForRow(1) [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
table_row_nsimage_cache_unittest.mm | 55 NSImage* image1 = cache.GetImageForRow(1); 59 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 75 EXPECT_NE(image1, cache.GetImageForRow(1)); 76 image1 = cache.GetImageForRow(1); 84 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 99 NSImage* image1 = cache.GetImageForRow(1); 103 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 114 image1 = cache.GetImageForRow(1); 115 COMPARE_SK_NS_IMG_SIZES(rows->at(1), image1); 124 image1 = cache.GetImageForRow(1) [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Blend.java | 46 private Allocation image1; field in class:Blend 70 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType()); 120 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0); 124 mBlendHelper.forEach_setImageAlpha(image1); 131 mBlend.forEachSrc(image1, image2); 134 mBlend.forEachDst(image1, image2); 137 mBlend.forEachSrcOver(image1, image2); 140 mBlend.forEachDstOver(image1, image2); 143 mBlend.forEachSrcIn(image1, image2); 146 mBlend.forEachDstIn(image1, image2) [all...] |
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
Blend.java | 47 private Allocation image1; field in class:Blend 71 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType()); 121 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0); 125 mBlendHelper.forEach_setImageAlpha(image1); 132 mBlend.forEachSrc(image1, image2); 135 mBlend.forEachDst(image1, image2); 138 mBlend.forEachSrcOver(image1, image2); 141 mBlend.forEachDstOver(image1, image2); 144 mBlend.forEachSrcIn(image1, image2); 147 mBlend.forEachDstIn(image1, image2) [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
image-resampling-with-scale.html | 11 var image1 = document.getElementById('image1'); 15 image1.setAttribute('src', imgSrc); 19 image1.style.webkitTransform = 'scale(' + scale + ')'; 29 <img id="image1" style="position: absolute; top: 45px; left: 35px;" width="100" height="100" >
|
svg-image-resampling-with-scale.html | 11 var image1 = document.getElementById('image1'); 14 image1.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', imgSrc); 18 image1.setAttribute('transform', 'scale(' + scale + ') translate(-50 -50)'); 30 <image id="image1" width="100" height="100"/>
|
/external/chromium_org/chrome/test/functional/ispy/common/ |
image_tools.py | 30 def _GetDifferenceWithMask(image1, image2, mask=None, 41 image1: the first image to compare. 56 Exception: if image1, image2, and mask are not the same size. 60 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255)) 61 if not _AreTheSameSize([image1, image2, image_mask]): 63 image_diff = Image.new('RGBA', image1.size, (0, 0, 0, 255)) 67 image1.getdata(), 159 def VisualizeImageDifferences(image1, image2, mask=None): 169 image1: an RGB image 170 image2: another RGB image of the same size as image1 [all...] |
/external/chromium_org/ui/gfx/image/ |
image_unittest.cc | 79 gfx::Image image1(NULL); 80 EXPECT_TRUE(image1.IsEmpty()); 81 EXPECT_EQ(0, image1.Width()); 82 EXPECT_EQ(0, image1.Height()); 83 EXPECT_EQ(0U, image1.RepresentationCount()); 108 gfx::Image image1(image_png_reps1); 109 EXPECT_TRUE(image1.IsEmpty()); 110 EXPECT_EQ(0U, image1.RepresentationCount()); 179 gfx::Image image1(image_skia); 180 scoped_refptr<base::RefCountedMemory> png_bytes1 = image1.As1xPNGBytes() [all...] |
image_unittest_util.h | 45 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); 84 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2);
|
image_unittest_util.cc | 274 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2) { 276 return image1 == image2; 278 return image1.BackedBySameObjectAs(image2);
|
/external/skia/tests/ |
SurfaceTest.cpp | 162 SkAutoTUnref<SkImage> image1(surface1->newImageSnapshot()); 179 REPORTER_ASSERT(reporter, image4->getTexture() != image1->getTexture()); 181 REPORTER_ASSERT(reporter, image3->getTexture() != image1->getTexture()); 182 REPORTER_ASSERT(reporter, image2->getTexture() != image1->getTexture()); 218 SkImage* image1 = surface->newImageSnapshot(); local 219 SkAutoTUnref<SkImage> aur_image1(image1); 220 SkDEBUGCODE(image1->validate();) 223 SkDEBUGCODE(image1->validate();) 229 REPORTER_ASSERT(reporter, image1 != image2);
|
/development/samples/training/AnimationsDemo/res/layout/ |
fragment_card_front.xml | 20 android:src="@drawable/image1"
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleImage.h | 76 static bool imagesEquivalent(const StyleImage* image1, const StyleImage* image2) 78 if (image1 != image2) { 79 if (!image1 || !image2) 81 return *image1 == *image2;
|
/cts/hostsidetests/holo/src/android/holo/cts/ |
ComparisonTask.java | 108 private static void createDiff(BufferedImage image1, BufferedImage image2, File out) 110 final int w1 = image1.getWidth(); 111 final int h1 = image1.getHeight(); 116 // The diff will contain image1, image2 and the difference between the two. 127 color1 = image1.getRGB(i, j); 131 color1 = image1.getRGB(i, j);
|
/external/skia/gm/rebaseline_server/ |
imagediffdb.py | 243 def _generate_image_diff(image1, image2): 244 """Wrapper for ImageChops.difference(image1, image2) that will handle some 252 image1: a PIL image object 255 Returns: per-pixel diffs between image1 and image2, as a PIL image object 258 return ImageChops.difference(image1.convert('RGB'), image2.convert('RGB')) 260 logging.error('Error diffing image1 [%s] and image2 [%s].' % ( 261 repr(image1), repr(image2)))
|
/external/chromium_org/chrome/browser/ui/app_list/test/ |
fast_show_pickler_unittest.cc | 33 void CompareImages(const gfx::ImageSkia& image1, 35 std::vector<gfx::ImageSkiaRep> reps1(image1.image_reps());
|
/external/chromium_org/ppapi/tests/ |
test_graphics_2d.h | 46 bool CompareImages(const pp::ImageData& image1, 50 bool CompareImageRect(const pp::ImageData& image1,
|
/external/chromium_org/ui/views/controls/button/ |
image_button_unittest.cc | 94 gfx::ImageSkia image1 = CreateTestImage(10, 11); local 96 button.SetImage(Button::STATE_NORMAL, &image1); 99 button.GetImage(Button::STATE_NORMAL).BackedBySameObjectAs(image1));
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
throbber_view.mm | 93 - (id)initWithImage1:(NSImage*)image1 image2:(NSImage*)image2; 99 - (id)initWithImage1:(NSImage*)image1 image2:(NSImage*)image2 { 101 image1_.reset([image1 retain]); 103 image1Size_ = [image1 size]; 117 // From [0..image1Height) we draw image1, at image1Height we draw nothing, and
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
throbber_view.mm | 94 - (id)initWithImage1:(NSImage*)image1 image2:(NSImage*)image2; 100 - (id)initWithImage1:(NSImage*)image1 image2:(NSImage*)image2 { 102 image1_.reset([image1 retain]); 104 image1Size_ = [image1 size]; 118 // From [0..image1Height) we draw image1, at image1Height we draw nothing, and
|
/external/chromium_org/tools/imagediff/ |
image_diff.cc | 335 bool CreateImageDiff(const Image& image1, const Image& image2, Image* out) { 336 int w = std::min(image1.w(), image2.w()); 337 int h = std::min(image1.h(), image2.h()); 338 *out = Image(image1); 339 bool same = (image1.w() == image2.w()) && (image1.h() == image2.h()); 345 uint32 base_pixel = image1.pixel_at(x, y);
|
/frameworks/av/libvideoeditor/vss/video_filters/src/ |
M4VFL_transition.c | 394 /* Set pointers to the beginning of the row for each input image1 plane */ 425 /* Get Luma value (x,y) of input Image1 */ 449 /* Get Luma value (x,y+1) of input Image1 */ 464 /* Get Luma value (x+1,y) of input Image1 */ 474 /* Get Luma value (x+1,y+1) of input Image1 */ 490 /* Update working pointer of input image1 for next row */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/ |
StretchesViewer.java | 91 private static final boolean equalSize(ImageData image1, ImageData image2) { 92 return (image1.width == image2.width && image1.height == image2.height);
|
/frameworks/base/docs/downloads/training/ |
Animations.zip | |