/external/webkit/WebKit/mac/Misc/ |
WebNSImageExtras.m | 40 if(originalSize.width > size.width){ 41 widthResizeDelta = size.width / originalSize.width; 53 NSSize newSize = NSMakeSize((originalSize.width * resizeDelta), (originalSize.height * resizeDelta));
|
/frameworks/base/core/java/android/service/urlrenderer/ |
UrlRendererService.java | 57 public void render(List<String> urls, int width, int height, 59 processRequest(urls, width, height, 87 * @param width The desired width of the result. 91 public abstract void processRequest(List<String> urls, int width,
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.test.TouchUtils.html | 80 <TABLE summary="Removed Methods" WIDTH="100%"> 85 <TD VALIGN="TOP" WIDTH="25%"> 95 <TABLE summary="Added Methods" WIDTH="100%"> 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...] |
changes-summary.html | 92 <TABLE summary="Added Packages" WIDTH="100%"> 97 <TD VALIGN="TOP" WIDTH="25%"> 104 <TD VALIGN="TOP" WIDTH="25%"> 111 <TD VALIGN="TOP" WIDTH="25%"> 118 <TD VALIGN="TOP" WIDTH="25%"> 125 <TD VALIGN="TOP" WIDTH="25%"> 132 <TD VALIGN="TOP" WIDTH="25%"> 142 <TABLE summary="Changed Packages" WIDTH="100%"> 147 <TD VALIGN="TOP" WIDTH="25%"> 154 <TD VALIGN="TOP" WIDTH="25%" [all...] |
/external/webkit/WebCore/page/ |
PrintContext.cpp | 68 float ratio = printRect.height() / printRect.width(); 99 float currPageWidth = pageSizeInPixels.width() / userScaleFactor; 113 void PrintContext::begin(float width) 115 // By imaging to a width a little wider than the available pixels, 128 float minLayoutWidth = width * PrintingMinimumShrinkFactor; 129 float maxLayoutWidth = width * PrintingMaximumShrinkFactor; 136 void PrintContext::spoolPage(GraphicsContext& ctx, int pageNumber, float width) 139 float scale = width / pageRect.width(); 177 printContext.begin(pageRect.width()); [all...] |
/external/webkit/WebCore/platform/wx/ |
ScrollbarThemeWx.cpp | 118 x += scrollbar->width() - (size.width() * 2) + cMacButtonOverlap; 123 return IntRect(x, y, size.width(), size.height()); 137 size.setWidth(size.width() + cMacButtonOverlap); 139 x = scrollbar->x() + scrollbar->width() - size.width(); 148 return IntRect(x, y, size.width(), size.height()); 156 trackStart = bs.width(); 166 if (scrollbar->width() < 2 * thickness) 168 return IntRect(scrollbar->x() + trackStart, scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness) [all...] |
/frameworks/base/awt/java/awt/ |
Image.java | 107 * Gets the width of this image. The specified ImageObserver object is 108 * notified when the width of this image is available. 111 * the ImageObserver object which is is notified when the width 113 * @return the width of image, or -1 if the width of this image is not 133 * width, height, and applied scaling algorithm. 135 * @param width 136 * the width of scaled Image. 143 public Image getScaledInstance(int width, int height, int hints) { 146 filter = new AreaAveragingScaleFilter(width, height) [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.media.AudioFormat.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...] |
android.provider.Contacts.OrganizationColumns.html | 82 <TABLE summary="Changed Fields" WIDTH="100%"> 87 <TD VALIGN="TOP" WIDTH="25%"> 90 <TD VALIGN="TOP" WIDTH="30%"> 96 <TD VALIGN="TOP" WIDTH="25%"> 99 <TD VALIGN="TOP" WIDTH="30%"> 105 <TD VALIGN="TOP" WIDTH="25%"> 108 <TD VALIGN="TOP" WIDTH="30%"> 114 <TD VALIGN="TOP" WIDTH="25%"> 117 <TD VALIGN="TOP" WIDTH="30%"> 123 <TD VALIGN="TOP" WIDTH="25%" [all...] |
pkg_android.content.html | 78 <TABLE summary="Added Classes and Interfaces" WIDTH="100%"> 83 <TD VALIGN="TOP" WIDTH="25%"> 90 <TD VALIGN="TOP" WIDTH="25%"> 97 <TD VALIGN="TOP" WIDTH="25%"> 104 <TD VALIGN="TOP" WIDTH="25%"> 111 <TD VALIGN="TOP" WIDTH="25%"> 118 <TD VALIGN="TOP" WIDTH="25%"> 125 <TD VALIGN="TOP" WIDTH="25%"> 132 <TD VALIGN="TOP" WIDTH="25%"> 139 <TD VALIGN="TOP" WIDTH="25%" [all...] |
android.provider.Contacts.PhonesColumns.html | 82 <TABLE summary="Changed Fields" WIDTH="100%"> 87 <TD VALIGN="TOP" WIDTH="25%"> 90 <TD VALIGN="TOP" WIDTH="30%"> 96 <TD VALIGN="TOP" WIDTH="25%"> 99 <TD VALIGN="TOP" WIDTH="30%"> 105 <TD VALIGN="TOP" WIDTH="25%"> 108 <TD VALIGN="TOP" WIDTH="30%"> 114 <TD VALIGN="TOP" WIDTH="25%"> 117 <TD VALIGN="TOP" WIDTH="30%"> 123 <TD VALIGN="TOP" WIDTH="25%" [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/ |
M4vH263Decoder.cpp | 72 void M4vH263Decoder::allocateFrames(int32_t width, int32_t height) { 74 (((width + 15) & - 16) * ((height + 15) & - 16) * 3) / 2; 138 int32_t width, height; local 139 PVGetVideoDimensions(mHandle, &width, &height); 140 if (mode == H263_MODE && (width == 0 || height == 0)) { 141 width = 352; 144 allocateFrames(width, height); 208 int32_t width, height; local 209 PVGetVideoDimensions(mHandle, &width, &height); 210 if (width != mWidth || height != mHeight) [all...] |
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
GLES10.spec | 17 void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ) 18 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ) 19 void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) 20 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height ) 55 void glLineWidth ( GLfloat width ) 56 void glLineWidthx ( GLfixed width ) 82 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels ) 89 void glScissor ( GLint x, GLint y, GLsizei width, GLsizei height ) 99 void glTexImage2D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) 102 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels [all...] |
/frameworks/base/opengl/tools/glgen/specs/jsr239/ |
glspec-1.0 | 17 void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
18 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
19 void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
20 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
55 void glLineWidth ( GLfloat width )
56 void glLineWidthx ( GLfixed width )
82 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
89 void glScissor ( GLint x, GLint y, GLsizei width, GLsizei height )
99 void glTexImage2D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels )
102 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels ) [all...] |
/packages/apps/Gallery3D/src/com/cooliris/media/ |
AdaptiveBackgroundTexture.java | 52 public AdaptiveBackgroundTexture(Bitmap source, int width, int height) { 54 mWidth = width; 59 public AdaptiveBackgroundTexture(Texture texture, int width, int height) { 62 mWidth = width; 104 // Full width, partial height. 111 // Full height, partial or full width. 156 private static void boxBlurFilter(int[] in, int[] out, int width, int height, int startFadeX) { 158 int maxX = width - 1; 174 for (int x = 0; x != width; ++x) { // CR: x < width [all...] |
/external/jsr305/javadoc/javax/annotation/ |
package-summary.html | 31 <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> 82 <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> 88 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/MatchesPattern.Checker.html" title="class in javax.annotation">MatchesPattern.Checker</A></B></TD> 92 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/Nonnegative.Checker.html" title="class in javax.annotation">Nonnegative.Checker</A></B></TD> 96 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/Nonnull.Checker.html" title="class in javax.annotation">Nonnull.Checker</A></B></TD> 100 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/RegEx.Checker.html" title="class in javax.annotation">RegEx.Checker</A></B></TD> 108 <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> 114 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/CheckForNull.html" title="annotation in javax.annotation">CheckForNull</A></B></TD> 118 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/CheckForSigned.html" title="annotation in javax.annotation">CheckForSigned</A></B></TD> 126 <TD WIDTH="15%"><B><A HREF="../../javax/annotation/CheckReturnValue.html" title="annotation in javax.annotat (…) [all...] |
/external/proguard/docs/ |
style.css | 36 width: 100%; 88 border-width: 1px; 133 border-width: 1px; 167 width: 408px; 174 width: 8px; 183 width: 400px; 192 width: 380px;
|
/external/skia/src/core/ |
SkBlitter_4444.cpp | 43 virtual void blitH(int x, int y, int width); 46 virtual void blitRect(int x, int y, int width, int height); 146 void SkARGB4444_Blitter::blitH(int x, int y, int width) 148 SkASSERT(x >= 0 && y >= 0 && x + width <= fDevice.width()); 163 sk_dither_memset16(device, color, other, width); 168 16 - fScale16, width); 211 void SkARGB4444_Blitter::blitRect(int x, int y, int width, int height) 213 SkASSERT(x >= 0 && y >= 0 && x + width <= fDevice.width() && y + height <= fDevice.height()) 357 int width = clip.width(); local 390 const int width = device.width(); local [all...] |
SkBitmap.cpp | 180 int SkBitmap::ComputeRowBytes(Config c, int width) { 181 if (width < 0) { 193 rowBytes.set(width); 199 rowBytes.set(width); 203 rowBytes.set(width); 207 rowBytes.set(width); 217 Sk64 SkBitmap::ComputeSize64(Config c, int width, int height) { 219 size.setMul(SkBitmap::ComputeRowBytes(c, width), height); 223 size_t SkBitmap::ComputeSize(Config c, int width, int height) { 224 Sk64 size = SkBitmap::ComputeSize64(c, width, height) 547 const int width = fWidth; local 671 const int width = bm.width(); local 942 int width = this->width(); local 973 int width = this->width(); local 1261 int width = buffer.readInt(); local [all...] |
/external/webkit/WebCore/manual-tests/ |
video-player.html | 2 #videoelem { width: 100%; height: 100%; position: absolute; } 3 #videocontainer { position: relative; width: 400px; height:230px;-webkit-user-select:none; -webkit-transition-duration:0.2s} 17 .videozoombutton { bottom:10px;right:10px;width:1.1em;height:1.1em;font-size:15pt; line-height: 15pt; border:2px solid white; -webkit-border-radius: 8px;} 18 .videoloading { top: 0; bottom: 0; margin:auto; left:0; right:0; width: 7em; height: 1.2em; cursor:default;} 21 .videoplay { top: 0; bottom: 0; margin:auto; left:0; right:0; width: 1.2em; height: 1.2em;} 78 container.style.width = "640px"; 82 container.style.width = "400px";
|
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
FontMetricsImpl.java | 100 * metrics[7] - maximum char width<p> 108 * metrics[15] - maximum char width in pixels<p> 156 * Returns the advance width of the specified char of the Font describing 160 * the char which width is to be returned 161 * @return the advance width of the specified char of the Font describing 174 * Returns the advance width of the specified char of the Font describing 178 * the char which width is to be returned 179 * @return the advance width of the specified char of the Font describing 238 * Returns the total advance width of the specified string in the metrics of 242 * the String which width is to be measure 249 int width = 0; local [all...] |
/frameworks/base/awt/java/awt/image/ |
BufferedImageFilter.java | 64 * The width. 66 private int width; field in class:BufferedImageFilter 116 public void setDimensions(int width, int height) { 117 this.width = width; 120 if (width <= 0 || height <= 0) { 216 if (x + w > width) { 217 w = width - x; 244 // bData = new byte[width*height]; 250 // iData = new int[width*height] [all...] |
/external/freetype/src/base/ |
ftbitmap.c | 107 FT_Int i, width, height; local 111 width = bitmap->width; 121 new_pitch = ( width + xpixels + 7 ) >> 3; 125 new_pitch = ( width + xpixels + 3 ) >> 2; 129 new_pitch = ( width + xpixels + 1 ) >> 1; 135 new_pitch = ( width + xpixels ); 146 FT_Int bit_last = ( width + xpixels ) * bpp; 181 FT_Int len = ( width * bpp + 7 ) >> 3; 190 FT_Int len = ( width * bpp + 7 ) >> 3 494 FT_Int width = source->width; local [all...] |
/external/libpcap/missing/ |
snprintf.c | 135 int width, int prec, int flags, int minusp) 166 width -= len; 168 width--; 169 while(width-- > 0){ 204 width -= len; 205 while(width-- > 0){ 224 int width, 229 width -= prec; 231 width -= strlen((char *)arg); 233 while(width-- > 0 296 int width = 0; local [all...] |
/external/tcpdump/missing/ |
snprintf.c | 135 int width, int prec, int flags, int minusp) 166 width -= len; 168 width--; 169 while(width-- > 0){ 204 width -= len; 205 while(width-- > 0){ 224 int width, 229 width -= prec; 231 width -= strlen((char *)arg); 233 while(width-- > 0 296 int width = 0; local [all...] |