/external/webkit/WebCore/manual-tests/resources/ |
hover-subframe-1.html | 8 width: 400px; 17 width: 100%;
|
hover-subframe-2.html | 8 width: 400px; 17 width: 100%;
|
/external/webkit/WebCore/manual-tests/ |
user-drag-with-decorations.html | 3 <div style="height:100px; width:100px;overflow:scroll;"> 4 <div style="-webkit-user-drag:element;position:absolute; background: rgba(0,128,0,0.5); height:100px; width:100px;">
|
css3-cursor-fallback-strict.html | 9 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div> 10 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div> 17 <td><div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), text;"></div></td> <!-- Valid, no fallback needed --> 18 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), help;'></div></td> 19 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), url(custom-cursors.html), url(unknown-scheme:custom-cursors.html), url(resources/helpCursor.tiff), text;'></div></td> 20 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), url("resources/helpCursor.tiff"), text;'></div></td> 21 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff) 1 1, text;'></div></td> <!-- CSS3 hot spot - valid, no fallback needed --> 26 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff) 1 1 text;'></div></td> <!-- CSS3 hot spot - invalid, should have comma after hotspot coords --> 27 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff) 1, text;'></div></td> <!-- CSS3 hot spot - invalid, should have two hotspot coords --> 28 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff) 1 2 3, text;' (…) [all...] |
/external/webkit/WebCore/manual-tests/win/ |
horizontal-scroll-composited.html | 8 <div style="-webkit-transform: translatez(0); width: 1000px; height: 800px; border-style: solid; border-color: Red; border-width: 3px; background-image: url(../resources/apple.jpg); background-repeat:repeat"></div>
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
mb_utils.cpp | 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width) 42 comp += width; 43 prev += width; 53 comp += width; 54 prev += width; 64 comp += width; 65 prev += width; 74 comp += width; 75 prev += width; 86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_blit_0.c | 32 int width, height; local 37 width = info->d_width; 44 srcskip += width-(width+7)/8; 49 for ( c=0; c<width; ++c ) { 66 for ( c=0; c<width; ++c ) { 85 int width, height; local 91 width = info->d_width; 98 srcskip += width-(width+7)/8 120 int width, height; local 156 int width, height; local 192 int width = info->d_width; local 244 int width = info->d_width; local 278 int width = info->d_width; local 311 int width = info->d_width; local 345 int width = info->d_width; local 390 int width = info->d_width; local [all...] |
/frameworks/base/core/java/android/webkit/ |
ViewManager.java | 41 int width; field in class:ViewManager.ChildView 48 void setBounds(int x, int y, int width, int height) { 51 this.width = width; 55 void attachView(int x, int y, int width, int height) { 59 setBounds(x, y, width, height); 122 int width = mWebView.contentToViewDimension(v.width); local 132 lp.width = width; [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-209067.js | 197 s += '<a href="#ContentArea"><img src="http://i.cnn.net/cnn/images/1.gif" alt="Click here to skip to main content." width="10" height="1" border="0" align="right"></a>'; 198 s += '<table width="770" border="0" cellpadding="0" cellspacing="0" style="speak: none">'; 199 s += ' <col width="229">'; 200 s += ' <col width="73">'; 201 s += ' <col width="468">'; 204 s += '[[!~~ netscape hat ~~]][[table border="0" cellpadding="0" cellspacing="0" width="100%"]][[tr]][[td]][[script Language="Javascript" SRC="http://toolbar.aol.com/dashboard.twhat?dom=cnn" type="text/javascript"]][[/script]][[/td]][[/tr]][[/table]]'; 206 s += '[[div]][[img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2" border="0"]][[/div]]'; 211 s += ' <td width="229" style="speak: normal"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/logo/cnn.gif" alt="CNN.com" width="229" height="52" border="0"></td>'; 212 s += ' <td width="73"></td>' [all...] |
/external/opencore/codecs_v2/utilities/colorconvert/src/ |
ccrgb12toyuv420.cpp | 232 int32 width = param[0]; local 234 int32 width_16 = ((width + 15) >> 4) << 4; 241 int adjust = (width >> 1); 247 if (height < height_16 || width < width_16) 253 if (width < width_16) 255 offset -= (width_16 - width); 276 if (width_16 >= width) 278 i = ((height_16 - height) >> 1) * width_16 + (((width_16 - width) >> 3) << 2); 279 /* make sure that (width_16-width)>>1 is divisible by 4 */ 280 j = ((height_16 - height) >> 2) * (width_16 >> 1) + (((width_16 - width) >> 4) << 2) [all...] |
cpvvideoblend.cpp | 65 width_src = frameSize->width; 67 pitch_src = frameSize->width; 133 width_src = pCameraInput->width; 139 Dst_width = pToEncode->width; // 1:1, so equal to source 141 pitch_dst = pToEncode->width; // width of the destination buffer 169 width_src = pBitmap->width; 172 pitch_src = width_src; // equal to the source width 178 pitch_dst = pToEncode->width; 215 Src_width = srcDecodeFrm->width; [all...] |
/external/webkit/WebCore/platform/graphics/ |
Image.cpp | 94 scaleX = dstRect.width() / srcRect.width(); 116 intrinsicTileSize.setWidth(scaledTileSize.width()); 120 FloatSize scale(scaledTileSize.width() / intrinsicTileSize.width(), 124 oneTileRect.setX(destRect.x() + fmodf(fmodf(-srcPoint.x(), scaledTileSize.width()) - scaledTileSize.width(), scaledTileSize.width())); 131 visibleSrcRect.setX((destRect.x() - oneTileRect.x()) / scale.width()); 133 visibleSrcRect.setWidth(destRect.width() / scale.width()) [all...] |
/external/webkit/WebCore/rendering/ |
RenderScrollbar.cpp | 52 setFrameRect(IntRect(0, 0, part->width(), part->height())); 158 int oldThickness = isHorizontal ? height() : width(); 163 newThickness = isHorizontal ? part->height() : part->width(); 167 setFrameRect(IntRect(x(), y(), isHorizontal ? width() : newThickness, isHorizontal ? newThickness : height())); 261 return IntRect(x(), y(), isHorizontal ? partRenderer->width() : width(), isHorizontal ? height() : partRenderer->height()); 263 return IntRect(isHorizontal ? x() + width() - partRenderer->width() : x(), 266 isHorizontal ? partRenderer->width() : width(), [all...] |
RenderPartObject.cpp | 63 int styleWidth = width() - extraWidth; 65 // Some IFrames have a width and/or height of 1 when they are meant to be 71 bool widthIsFixed = style()->width().isFixed(); 81 // width 84 // Use the preferred width if it is larger and only if 85 // scrollbars are visible or the width style is not fixed. 87 setWidth(max(width(), root->minPrefWidth()) + extraWidth); 91 int w = width() - extraWidth; 92 if (w > view->width()) 94 if (w != view->width() || h != view->height()) [all...] |
/frameworks/base/media/libstagefright/colorconversion/ |
ColorConverter.cpp | 53 size_t width, size_t height, 61 width, height, srcBits, srcSkip, dstBits, dstSkip); 66 width, height, srcBits, srcSkip, dstBits, dstSkip); 71 width, height, srcBits, srcSkip, dstBits, dstSkip); 83 size_t width, size_t height, 87 CHECK(dstSkip >= width * 2); 97 for (size_t x = 0; x < width; x += 2) { 131 src += width * 2; 137 size_t width, size_t height, 141 CHECK(dstSkip >= width * 2) [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
TableHelper.java | 35 * object are provided then the column will listen to change in its width 41 * @param sample_text A sample text to figure out column width if preference 43 * @param pref_name The preference entry name for column width 56 // Otherwise we just read the width from the prefs and apply it. 73 // listener to catch column resize to put store the new width value. 80 // get the new width 95 * object are provided then the column will listen to change in its width 101 * @param sample_text A sample text to figure out column width if preference 103 * @param pref_name The preference entry name for column width 115 // Otherwise we just read the width from the prefs and apply it [all...] |
/development/tools/yuv420sp2rgb/ |
yuv420sp2rgb.c | 34 int width; member in struct:rgb_context 52 int width, int height, 66 ctx.width = width; 72 for (j = 0; j < width; j++) { 73 nB = *(pY + i * width + j); 82 for (j = 0; j < width; j++) { 83 nY = *(pY + i * width + j); 84 nV = *(pUV + (i/2) * width + bytes_per_pixel * (j/2)); 85 nU = *(pUV + (i/2) * width + bytes_per_pixel * (j/2) + 1) 273 int height, width, gray, rotate; local [all...] |
/external/elfutils/libebl/ |
eblgstrtab.c | 43 unsigned int width; member in struct:Ebl_GStrent 62 unsigned int width; member in struct:Ebl_GStrtab 75 ebl_gstrtabinit (unsigned int width, bool nullstr) 88 ret->width = width; 94 ret->null.string = (char *) calloc (1, width); 154 if (st->left < align + sizeof (struct Ebl_GStrent) + len * st->width) 156 morememory (st, sizeof (struct Ebl_GStrent) + len * st->width); 164 newstr->width = st->width; [all...] |
/external/skia/src/core/ |
SkBlitter_A8.cpp | 39 void SkA8_Blitter::blitH(int x, int y, int width) 41 SkASSERT(x >= 0 && y >= 0 && (unsigned)(x + width) <= (unsigned)fDevice.width()); 50 memset(device, 0xFF, width); 57 for (int i = 0; i < width; i++) 154 int width = clip.width(); local 162 for (int i = width - 1; i >= 0; --i) 223 void SkA8_Blitter::blitRect(int x, int y, int width, int height) 225 SkASSERT(x >= 0 && y >= 0 && (unsigned)(x + width) <= (unsigned)fDevice.width() && (unsigned)(y + height) <= (unsigned)fDevice.height()) 267 int width = device.width(); local 370 int width = clip.width(); local [all...] |
SkBlitter_RGB16.cpp | 65 virtual void blitH(int x, int y, int width); 68 virtual void blitRect(int x, int y, int width, int height); 90 virtual void blitH(int x, int y, int width); 93 virtual void blitRect(int x, int y, int width, int height); 116 virtual void blitH(int x, int y, int width); 118 virtual void blitRect(int x, int y, int width, int height); 136 virtual void blitH(int x, int y, int width); 138 virtual void blitRect(int x, int y, int width, int height); 148 virtual void blitH(int x, int y, int width); 213 unsigned width = clip.width() variable 384 int width = clip.width(); variable 644 int width = clip.width(); variable 952 int width = device.width(); local [all...] |
/external/webkit/WebCore/platform/graphics/wince/ |
ImageBufferWince.cpp | 41 virtual IntSize size() const { return IntSize(m_data->m_bitmap->width(), m_data->m_bitmap->height()); } 65 : m_bitmap(SharedBitmap::createInstance(false, size.width(), size.height(), false)) 105 PassRefPtr<ImageData> imageData = ImageData::create(rect.width(), rect.height()); 111 IntRect sourceRect(0, 0, bitmap->width(), bitmap->height()); 118 src += (sourceRect.y() * bitmap->width() + sourceRect.x()) * 4; 119 dst += ((sourceRect.y() - rect.y()) * imageData->width() + sourceRect.x() - rect.x()) * 4; 120 int bytesToCopy = sourceRect.width() * 4; 121 int srcSkip = (bitmap->width() - sourceRect.width()) * 4; 122 int dstSkip = (imageData->width() - sourceRect.width()) * 4 [all...] |
/cts/tests/src/android/media/cts/ |
MediaStubActivity.java | 26 public static final int WIDTH = 320; 37 lp.width = WIDTH; 41 mHolder.setFixedSize(WIDTH, HEIGHT);
|
/external/icu4c/samples/layout/ |
Surface.h | 13 le_int32 x, le_int32 y, le_int32 width, le_int32 height);
|
rsurface.h | 17 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height);
|
/external/proguard/docs/manual/ |
style.css | 42 /* Settings for variable width code. */ 64 width: 100px; 72 width: 100px; 80 width: 100px;
|