/external/skia/src/image/ |
SkImage_Base.h | 15 SkImage_Base(int width, int height) : INHERITED(width, height) {}
|
/external/skia/src/opts/ |
SkBlitMask_opts_arm_neon.h | 10 SkColor color, int width, 14 SkColor color, int width, SkPMColor);
|
/external/skia/tools/skpdiff/ |
SkDifferentPixelsMetric_cpu.cpp | 22 if (baseline->width() != test->width() || baseline->height() != test->height() || 23 baseline->width() <= 0 || baseline->height() <= 0 || 28 int width = baseline->width(); local 33 result->poiAlphaMask.setConfig(SkBitmap::kA8_Config, width, height); 47 for (int x = 0; x < width; x++) { 65 result->result = 1.0 - ((double)result->poiCount / (width * height));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
ColorDrawableWithDimensions.java | 25 public ColorDrawableWithDimensions(int color, int width, int height) { 27 mWidth = width;
|
/frameworks/native/opengl/libagl/ |
dxt.h | 27 bool DXT1HasAlpha(const GLvoid *data, int width, int height); 28 void decodeDXT(const GLvoid *data, int width, int height,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
ViewUtil.java | 29 * Returns the width as specified in the LayoutParams 30 * @throws IllegalStateException Thrown if the view's width is unknown before a layout pass 36 if (p.width < 0) { 37 throw new IllegalStateException("Expecting view's width to be a constant rather " + 40 return p.width;
|
/packages/apps/Mms/src/com/android/mms/model/ |
RegionModel.java | 31 int width, int height) { 32 this(regionId, DEFAULT_FIT, left, top, width, height); 36 int width, int height) { 37 this(regionId, fit, left, top, width, height, null); 41 int width, int height, String bgColor) { 46 mWidth = width; 111 * @param width the mWidth to set 113 public void setWidth(int width) { 114 mWidth = width;
|
/packages/wallpapers/Basic/src/com/android/wallpaper/fall/ |
FallWallpaper.java | 23 protected RenderScriptScene createScene(int width, int height) { 24 return new FallRS(width, height);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
GrassWallpaper.java | 23 protected RenderScriptScene createScene(int width, int height) { 24 return new GrassRS(this, width, height);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/nexus/ |
NexusWallpaper.java | 23 protected RenderScriptScene createScene(int width, int height) { 24 return new NexusRS(width, height);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/ |
Visualization2.java | 25 protected Visualization2RS createScene(int width, int height) { 26 return new Visualization2RS(width, height);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/ |
Visualization3.java | 25 protected Visualization3RS createScene(int width, int height) { 26 return new Visualization3RS(width, height);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/ |
Visualization4.java | 25 protected Visualization4RS createScene(int width, int height) { 26 return new Visualization4RS(width, height);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/ |
Visualization5.java | 25 protected Visualization5RS createScene(int width, int height) { 26 return new Visualization5RS(width, height);
|
/external/chromium_org/media/cast/test/ |
video_utility.cc | 17 if (frame1->coded_size().width() != frame2->coded_size().width() || 27 frame1->coded_size().width(), frame1->coded_size().height()); 31 int width = frame->coded_size().width(); local 33 int half_width = (width + 1) / 2; 40 for (int i = 0; i < width * height; ++i) { 56 int width = frame->coded_size().width(); local 58 int half_width = (width + 1) / 2 [all...] |
/frameworks/base/media/mca/filterfw/native/core/ |
geometry.cpp | 73 if (width <= 0.0f || height <= 0.0f || ratio <= 0.0f) { 77 const float current_ratio = width / height; 79 const float dx = width * (ratio / current_ratio - 1.0f); 81 width += dx; 91 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) { 95 const float current_length = width > height ? width : height; 97 const float dx = width * (length / current_length - 1.0f); 99 width += dx; 108 if (width <= 0.0f || height <= 0.0f || factor <= 0.0f) [all...] |
/external/libyuv/files/include/libyuv/ |
planar_functions.h | 27 int width, int height, 37 int width, int height); 45 int width, int height); 52 int width, int height); 60 int width, int height); 70 int width, int height); 76 int width, int height); 83 int width, int height); 90 int width, int height); 100 int width, int height) [all...] |
convert_argb.h | 38 int width, int height); 46 int width, int height); 54 int width, int height); 62 int width, int height); 70 int width, int height); 76 int width, int height); 82 int width, int height); 89 int width, int height); 96 int width, int height); 102 int width, int height) [all...] |
/external/chromium_org/content/renderer/ |
sad_plugin.cc | 19 const int width = plugin_rect.width(); local 31 canvas->drawRectCoords(0, 0, SkIntToScalar(width), SkIntToScalar(height), 35 SkIntToScalar(std::max(0, (width - sad_plugin_bitmap.width()) / 2)),
|
/external/chromium_org/skia/ext/ |
bitmap_platform_device_cairo.h | 70 // Constructs a device with size |width| * |height| with contents initialized 73 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque); 78 static BitmapPlatformDevice* CreateAndClear(int width, int height, 83 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 96 virtual SkBaseDevice* onCreateCompatibleDevice(SkBitmap::Config, int width, 101 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableLengthSize.h | 41 static PassRefPtr<AnimatableLengthSize> create(PassRefPtr<AnimatableValue> width, PassRefPtr<AnimatableValue> height) 43 return adoptRef(new AnimatableLengthSize(width, height)); 45 const AnimatableValue* width() const { return m_width.get(); } function in class:WebCore::AnimatableLengthSize 53 AnimatableLengthSize(PassRefPtr<AnimatableValue> width, PassRefPtr<AnimatableValue> height) 54 : m_width(width)
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrRectanizer_skyline.cpp | 30 seg->fWidth = width(); 36 return fAreaSoFar / ((float)this->width() * this->height()); 54 bool rectangleFits(int skylineIndex, int width, int height, int* y) const; 55 void addSkylineLevel(int skylineIndex, int x, int y, int width, int height); 58 bool GrRectanizerSkyline::addRect(int width, int height, GrIPoint16* loc) { 59 if ((unsigned)width > (unsigned)this->width() || 65 int bestWidth = this->width() + 1; 71 if (this->rectangleFits(i, width, height, &y)) { 72 // minimize y position first, then width of skylin [all...] |
/external/chromium_org/ui/gfx/ |
size.h | 25 // A size has width and height values. 29 Size(int width, int height) : SizeBase<Size, int>(width, height) {} 47 return SizeF(width(), height()); 54 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
|
size_f.h | 20 SizeF(float width, float height) : SizeBase<SizeF, float>(width, height) {} 28 SetSize(width() * x_scale, height() * y_scale); 35 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
|
/external/skia/src/gpu/ |
GrRectanizer_skyline.cpp | 30 seg->fWidth = width(); 36 return fAreaSoFar / ((float)this->width() * this->height()); 54 bool rectangleFits(int skylineIndex, int width, int height, int* y) const; 55 void addSkylineLevel(int skylineIndex, int x, int y, int width, int height); 58 bool GrRectanizerSkyline::addRect(int width, int height, GrIPoint16* loc) { 59 if ((unsigned)width > (unsigned)this->width() || 65 int bestWidth = this->width() + 1; 71 if (this->rectangleFits(i, width, height, &y)) { 72 // minimize y position first, then width of skylin [all...] |