/external/webkit/WebCore/rendering/ |
RenderFrameSet.cpp | 97 if (borderRect.width() >= 3) { 118 context->fillRect(IntRect(borderRect.topLeft(), IntSize(width(), 1)), borderStartEdgeColor(), colorSpace); 119 context->fillRect(IntRect(borderRect.bottomLeft(), IntSize(width(), 1)), borderEndEdgeColor(), colorSpace); 156 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness)); 260 // and the available space is 300px, each column will become 100px in width. 303 // columns will each be 50px in width. 495 layOutAxis(m_cols, frameSet()->colLengths(), width() - (cols - 1) * borderThickness); 531 // Keep track of the maximum width of a row which will become the maximum width of the frameset. 563 ASSERT(child->width() >= m_cols.m_sizes[c]) 615 int width = m_cols.m_sizes[c]; local 663 int width = m_cols.m_sizes[c]; local [all...] |
/external/webkit/WebCore/svg/graphics/filters/ |
SVGFEMorphology.cpp | 101 RefPtr<ImageData> imageData = ImageData::create(imageRect.width(), imageRect.height()); 103 int radiusX = static_cast<int>(m_radiusX * filter->filterResolution().width()); 105 int effectWidth = effectDrawingRect.width() * 4; 107 // Limit the radius size to effect width 108 radiusX = min(effectDrawingRect.width() - 1, radiusX); 129 for (int x = 0; x < effectDrawingRect.width(); ++x) { 130 unsigned endX = min(x + radiusX, effectDrawingRect.width() - 1); 140 if (x + radiusX <= effectDrawingRect.width())
|
/external/webkit/WebKit/qt/tests/hybridPixmap/ |
test.html | 18 myWidget.compare(obj.toString(),"[Qt Native Pixmap "+obj.width+","+obj.height+"]"); 19 myWidget.compare(String(pxm),"[Qt Native Pixmap "+pxm.width+","+pxm.height+"]");
|
/frameworks/base/awt/org/apache/harmony/awt/ |
ChoiceStyle.java | 26 * width and x screen coordinate of the list popup window. 30 int getPopupX(int x, int width, int choiceWidth, int screenWidth);
|
/frameworks/base/awt/org/apache/harmony/awt/gl/render/ |
JavaBlitter.java | 83 Surface dstSurf, int width, int height, AffineTransform sysxform, 88 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height, 99 blit(srcX, srcY, srcSurf, 0, 0, dstSurf, width, height, 106 Surface dstSurf, int width, int height, AffineTransform sysxform, 119 width, height, comp, bgcolor, clip); 125 int w = srcX + width < srcW ? width : srcW - srcX; 142 Surface dstSurf, int width, int height, Composite comp, 149 width, height, comp, bgcolor, clip); 155 int width, int height, Composite comp, Color bgcolor 480 int width = r.width; local [all...] |
/frameworks/base/cmds/stagefright/ |
record.cpp | 40 DummySource(int width, int height) 41 : mWidth(width), 43 mSize((width * height * 3) / 2) { 163 int width, height; local 164 bool success = meta->findInt32(kKeyWidth, &width); 168 int width = 800; local 170 sp<MediaSource> decoder = new DummySource(width, height); 176 enc_meta->setInt32(kKeyWidth, width);
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.widget.TextView.html | 80 <TABLE summary="Added Methods" WIDTH="100%"> 85 <TD VALIGN="TOP" WIDTH="25%"> 92 <TD VALIGN="TOP" WIDTH="25%"> 99 <TD VALIGN="TOP" WIDTH="25%"> 106 <TD VALIGN="TOP" WIDTH="25%"> 113 <TD VALIGN="TOP" WIDTH="25%"> 120 <TD VALIGN="TOP" WIDTH="25%"> 127 <TD VALIGN="TOP" WIDTH="25%"> 134 <TD VALIGN="TOP" WIDTH="25%"> 141 <TD VALIGN="TOP" WIDTH="25%" [all...] |
android.provider.MediaStore.html | 81 <TABLE summary="Added Fields" WIDTH="100%"> 86 <TD VALIGN="TOP" WIDTH="25%"> 93 <TD VALIGN="TOP" WIDTH="25%"> 100 <TD VALIGN="TOP" WIDTH="25%"> 107 <TD VALIGN="TOP" WIDTH="25%"> 114 <TD VALIGN="TOP" WIDTH="25%"> 121 <TD VALIGN="TOP" WIDTH="25%"> 128 <TD VALIGN="TOP" WIDTH="25%"> 135 <TD VALIGN="TOP" WIDTH="25%"> 142 <TD VALIGN="TOP" WIDTH="25%" [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
RectShape.java | 43 protected void onResize(float width, float height) { 44 mRect.set(0, 0, width, height);
|
/frameworks/base/media/java/android/media/ |
FaceDetector.java | 105 * Note that the width of the image must be even. 107 * @param width the width of the image 112 public FaceDetector(int width, int height, int maxFaces) 117 fft_initialize(width, height, maxFaces); 118 mWidth = width; 121 mBWBuffer = new byte[width * height]; 189 native private int fft_initialize(int width, int height, int maxFaces);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
CanvasTexture.java | 26 public CanvasTexture(int width, int height) { 27 setSize(width, height);
|
GLOptionItem.java | 93 int width = mIcon == null ? sNoIconLeadingSpace : mIcon.getWidth(); local 94 width += mText.getWidth() + mCheckBox.getWidth(); 95 width += sTextRightPadding + sTextLeftPadding; 100 width = Math.max(sMinimalWidth, width); 104 .setPreferredContentSize(width, height) 112 int width = getWidth() - p.left - p.right; local 138 checkbox.draw(root, width - checkbox.getWidth(), yoffset);
|
/packages/apps/Gallery3D/src/com/cooliris/wallpaper/ |
Slideshow.java | 84 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 87 mRect = getRectToFitBitmap(mBitmap.getWidth(), mBitmap.getHeight(), width, height); 88 mFrameRect.right = width; 92 mQueuedRect = getRectToFitBitmap(mQueuedBitmap.getWidth(), mQueuedBitmap.getHeight(), width, height); 93 mQueuedFrameRect.right = width; 122 performSetup(frame.width(), frame.height()); 176 float amountToGrowX = timeElapsed * (rect.width() / 15.0f); 177 float amountToGrowY = amountToGrowX * (rect.height() / rect.width());
|
/packages/apps/Mms/src/com/android/mms/layout/ |
LayoutParameters.java | 33 * Get the width of current layout. 41 * Get the width of the image region of current layout.
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
Environment.java | 54 * How much should the balloon width be larger than width of the real key. 55 * It is relative to the smaller one of screen width and height. 61 * It is relative to the smaller one of screen width and height. 67 * screen width and height. 73 * screen width and height. 79 * of screen width and height. 85 * one of screen width and height.
|
/packages/wallpapers/Basic/src/com/android/wallpaper/walkaround/ |
WalkAroundWallpaper.java | 137 public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) { 138 super.onSurfaceChanged(holder, format, width, height); 175 size.width == metrics.heightPixels && size.height == metrics.widthPixels) || 177 size.width == metrics.widthPixels && size.height == metrics.heightPixels)) { 178 params.setPreviewSize(size.width, size.height); 186 if (size.width >= metrics.widthPixels && size.height >= metrics.heightPixels) { 187 params.setPreviewSize(size.width, size.height); 206 params.setPreviewSize(size.width, size.height);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/ |
Visualization2RS.java | 26 Visualization2RS(int width, int height) { 27 super(width, height, R.drawable.fire);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/ |
android.widget.ListView.groovy | 29 * The default for new views is to be wrap_content on both width/height. 30 * However ListView is special in that ideally we want fill_parent width by default.
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
ScreenViewer.java | 250 private int width; field in class:ScreenViewer.LoupeViewer 296 int width = getWidth(); local 300 if (width != this.width || height != this.height) { 301 this.width = width; 304 grid = new BufferedImage(width + zoom + 1, height + zoom + 1, 319 width += zoom; 322 for (int x = zoom; x <= width; x += zoom) { 327 g2.drawLine(0, y, width, y) 483 private int width; field in class:ScreenViewer.Crosshair 636 int width = getWidth(); local [all...] |
/external/quake/quake/src/QW/client/ |
d_surf.c | 35 int D_SurfaceCacheForRes (int width, int height)
47 pix = width*height;
129 surfcache_t *D_SCAlloc (int width, int size)
134 if ((width < 0) || (width > 256))
135 Sys_Error ("D_SCAlloc: bad cache width %d\n", width);
185 sc_rover->width = 0;
193 new->width = width;
[all...] |
/external/quake/quake/src/WinQuake/ |
d_surf.cpp | 35 int D_SurfaceCacheForRes (int width, int height)
47 pix = width*height;
130 surfcache_t *D_SCAlloc (int width, int size)
135 if ((width < 0) || (width > 256))
136 Sys_Error ("D_SCAlloc: bad cache width %d\n", width);
182 sc_rover->width = 0;
190 new->width = width;
[all...] |
/external/webkit/WebCore/svg/ |
SVGPreserveAspectRatio.cpp | 165 float origDestWidth = destRect.width(); 168 float widthToHeightMultiplier = srcRect.height() / srcRect.width(); 190 destRect.setX(destRect.x() + origDestWidth / 2.0f - destRect.width() / 2.0f); 195 destRect.setX(destRect.x() + origDestWidth - destRect.width()); 200 float widthToHeightMultiplier = srcRect.height() / srcRect.width(); 203 float destToSrcMultiplier = srcRect.width() / destRect.width(); 218 // if the destination width is less than the width of the image we'll be drawing 221 srcRect.setWidth(destRect.width() * destToSrcMultiplier) [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/color/ |
ColorScaler.java | 181 int width = r.getWidth(); local 183 float result[][] = new float[width*height][nColorChannels]; 194 for (int row=r.getMinX(); row<width; row++) { 204 for (int row=r.getMinX(); row<width; row++) { 223 int width = r.getWidth(); local 235 for (int row=r.getMinX(); row<width; row++) { 245 for (int row=r.getMinX(); row<width; row++) { 263 int width = r.getWidth(); local 265 short result[] = new short[width*height*nColorChannels]; 270 for (int row=r.getMinX(); row<width; row++) 300 int width = wr.getWidth(); local [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.provider.Contacts.Settings.html | 81 <TABLE summary="Changed Methods" WIDTH="100%"> 86 <TD VALIGN="TOP" WIDTH="25%"> 90 <TD VALIGN="TOP" WIDTH="30%"> 96 <TD VALIGN="TOP" WIDTH="25%"> 100 <TD VALIGN="TOP" WIDTH="30%"> 110 <TABLE summary="Changed Fields" WIDTH="100%"> 115 <TD VALIGN="TOP" WIDTH="25%"> 118 <TD VALIGN="TOP" WIDTH="30%"> 124 <TD VALIGN="TOP" WIDTH="25%"> 127 <TD VALIGN="TOP" WIDTH="30%" [all...] |
android.telephony.NeighboringCellInfo.html | 79 <TABLE summary="Changed Constructors" WIDTH="100%"> 84 <TD VALIGN="TOP" WIDTH="25%"> 88 <TD VALIGN="TOP" WIDTH="30%"> 94 <TD VALIGN="TOP" WIDTH="25%"> 98 <TD VALIGN="TOP" WIDTH="30%"> 108 <TABLE summary="Added Methods" WIDTH="100%"> 113 <TD VALIGN="TOP" WIDTH="25%"> 120 <TD VALIGN="TOP" WIDTH="25%"> 127 <TD VALIGN="TOP" WIDTH="25%"> 137 <TABLE summary="Changed Methods" WIDTH="100%" [all...] |