| /developers/build/prebuilts/gradle/SlidingTabsBasic/Application/src/main/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /developers/samples/android/common/src/java/com/example/android/common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
| WindowSurface.java | 74 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 102 void init(int width, int height, float minStep) { 104 y = (float)((height-1)*Math.random()); 118 void step(int width, int height, float minStep, float maxStep) { 126 if (y <= 0 || y >= (height-1)) { 128 else if (y >= (height-1)) y = height-1;
|
| /development/samples/browseable/BasicTransition/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/browseable/SlidingTabsColors/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/view/ |
| SlidingTabStrip.java | 118 final int height = getHeight(); local 120 final int dividerHeightPx = (int) (Math.min(Math.max(0f, mDividerHeight), 1f) * height); 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, 149 height, mSelectedIndicatorPaint); 153 canvas.drawRect(0, height - mBottomBorderThickness, getWidth(), height, mBottomBorderPaint); 156 int separatorTop = (height - dividerHeightPx) / 2;
|
| /external/ImageMagick/coders/ |
| aai.c | 117 height, 149 height=ReadBlobLSBLong(image); 152 if ((width == 0UL) || (height == 0UL)) 160 image->rows=height; 218 height=ReadBlobLSBLong(image); 219 if ((width != 0UL) && (height != 0UL)) 236 } while ((width != 0UL) && (height != 0UL)); 114 height, local
|
| avs.c | 119 height, 151 height=ReadBlobMSBLong(image); 154 if ((width == 0UL) || (height == 0UL)) 162 image->rows=height; 218 height=ReadBlobMSBLong(image); 219 if ((width != 0UL) && (height != 0UL)) 236 } while ((width != 0UL) && (height != 0UL)); 116 height, local
|
| /external/freetype/src/raster/ |
| ftrend1.c | 108 FT_UInt width, height, pitch; local 151 /* If either `width' or `height' round to 0, try */ 165 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 166 if ( height == 0 ) 171 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 174 if ( width > FT_USHORT_MAX || height > FT_USHORT_MAX ) 194 bitmap->rows = height; 197 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
|
| /external/freetype/src/sfnt/ |
| ttsbit.c | 259 metrics->height = metrics->ascender - metrics->descender; 314 metrics->height = ppem_ * ( hori->Ascender - 425 FT_UInt width, height; local 437 height = decoder->metrics->height; 440 map->rows = height; 509 metrics->height = p[0]; 568 FT_Int pitch, width, height, line_bits, h; local 581 height = decoder->metrics->height; 707 FT_Int pitch, width, height, line_bits, h, nbits; local 1014 FT_UInt height = decoder->metrics->height; local [all...] |
| /external/jemalloc/include/jemalloc/internal/ |
| rtree.h | 84 unsigned height; member in struct:rtree_s 135 return (rtree->height - 1); 139 assert(start_level < rtree->height); 248 if (i == rtree->height - 1) { 256 assert(i < rtree->height - 1); 276 if (i == rtree->height - 1) { 284 assert(i + 1 < rtree->height);
|
| /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/ |
| IOSGLES30.java | 40 public native void glTexImage3D(int target, int level, int internalformat, int width, int height, int depth, int border, int format, int type, Buffer pixels);
42 public native void glTexImage3D(int target, int level, int internalformat, int width, int height, int depth, int border, int format, int type, int offset);
44 public native void glTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, Buffer pixels);
46 public native void glTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, int offset);
48 public native void glCopyTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height);
88 public native void glRenderbufferStorageMultisample(int target, int samples, int internalformat, int width, int height);
216 public native void glInvalidateSubFramebuffer(int target, int numAttachments, IntBuffer attachments, int x, int y, int width, int height);
|
| /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
| IOSGLES30.java | 24 public native void glTexImage3D(int target, int level, int internalformat, int width, int height, int depth, int border, int format, int type, Buffer pixels); 26 public native void glTexImage3D(int target, int level, int internalformat, int width, int height, int depth, int border, int format, int type, int offset); 28 public native void glTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, Buffer pixels); 30 public native void glTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, int format, int type, int offset); 32 public native void glCopyTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height); 72 public native void glRenderbufferStorageMultisample(int target, int samples, int internalformat, int width, int height); 200 public native void glInvalidateSubFramebuffer(int target, int numAttachments, IntBuffer attachments, int x, int y, int width, int height);
|
| /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/raster/ |
| ftrend1.c | 108 FT_UInt width, height, pitch; local 151 /* If either `width' or `height' round to 0, try */ 165 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 166 if ( height == 0 ) 171 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 174 if ( width > FT_USHORT_MAX || height > FT_USHORT_MAX ) 194 bitmap->rows = height; 197 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
|
| /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
| VerticalGroup.java | 28 * The preferred width is the largest preferred width of any child. The preferred height is the sum of the children's preferred 83 float width, height; local 94 height = layout.getPrefHeight(); 97 height = child.getHeight(); 107 if (!reverse) y -= (height + spacing); 109 child.setBounds(Math.round(x), Math.round(y), Math.round(width), Math.round(height)); 111 child.setBounds(x, y, width, height); 112 if (reverse) y += (height + spacing);
|
| /external/libvpx/libvpx/test/ |
| blockiness_test.cc | 33 int width, int height); 40 BlockinessTestBase(int width, int height) : width_(width), height_(height) {} 72 int width, int height) { 73 for (int h = 0; h < height; ++h) { 84 void FillRandom(uint8_t *data, int stride, int width, int height) { 85 for (int h = 0; h < height; ++h) {
|
| /external/mesa3d/src/egl/wayland/wayland-drm/ |
| wayland-drm.c | 70 uint32_t id, uint32_t name, int32_t width, int32_t height, 87 buffer->buffer.height = height; 118 uint32_t id, uint32_t name, int32_t width, int32_t height, 134 name, width, height, format, 0, stride, 0, 0, 0, 0); 141 int32_t width, int32_t height, uint32_t format, 162 create_buffer(client, resource, id, name, width, height, format,
|
| /external/mesa3d/src/gallium/state_trackers/xorg/ |
| xorg_exa.c | 280 assert(pPix->drawable.height <= priv->tex->height0); 290 pPix->drawable.height ); 388 x1 == pPixmap->drawable.width && y1 == pPixmap->drawable.height) { 470 int width, int height) 478 srcX, srcY, dstX, dstY, width, height); 482 u_box_2d(srcX, srcY, width, height, &src_box); 489 (dstY + height) < srcY || dstY > (srcY + height))) { 495 pDstPixmap->drawable.height, 687 int dstX, int dstY, int width, int height) [all...] |