HomeSort by relevance Sort by last modified time
    Searched refs:image1 (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/rendering/style/
StyleImage.h 69 static bool imagesEquivalent(StyleImage* image1, StyleImage* image2)
71 if (image1 != image2) {
72 if (!image1 || !image2)
74 return *image1 == *image2;
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
ToggleButton.java 43 Image image1,
48 mImage[0] = image1;
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 290 bool createImageDiff(const Image& image1, const Image& image2, Image* out)
292 int w = min(image1.width(), image2.width());
293 int h = min(image1.height(), image2.height());
294 *out = Image(image1);
295 bool same = (image1.width() == image2.width()) && (image1.height() == image2.height());
300 uint32_t basePixel = image1.pixelAt(x, y);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 483 BufferedImage image1 = delegate1.getImage(); local
486 image1.getWidth() != image2.getWidth() ||
487 image1.getHeight() != image2.getHeight()) {
492 int w = image1.getWidth();
497 image1.getRGB(0, 0, w, h, argb1, 0, w);
  /external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp 501 bool compareImagesFuzzyPixelCount(const QImage& image1, const QImage& image2, qreal tolerance = 0.05)
503 if (image1.size() != image2.size())
507 for (int row = 0; row < image1.size().width(); ++row) {
508 for (int column = 0; column < image1.size().height(); ++column)
509 if (image1.pixel(row, column) != image2.pixel(row, column))
513 if (diffPixelCount > (image1.size().width() * image1.size().height()) * tolerance)
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutput_unittest.py 135 def same_image(self, image1, image2):
  /external/opencv/cvaux/src/
cvcorrimages.cpp 176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
178 int icvFindCorrForGivenPoints( IplImage *image1,/* Image 1 */
206 if( image1 == 0 || image2 == 0 ||
215 w = image1->width;
216 h = image1->height;
220 CV_ERROR( CV_StsOutOfRange, "Size of image1 must be > 0" );
267 /* Compute number of visible points on image1 */
308 cvCvtColor(image1,grayImage1,CV_BGR2GRAY);
312 grayImage1.CopyOf(image1,0);
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 981 QImage image1(resource.width(), resource.height(), QImage::Format_ARGB32);
982 QPainter painter1(&image1);
987 QVERIFY(image1 == testImage);
    [all...]
  /external/opencv/cv/include/
cv.h 562 CVAPI(void) cvMultiplyAcc( const CvArr* image1, const CvArr* image2, CvArr* acc,
    [all...]

Completed in 977 milliseconds