HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 476 - 500 of 9458) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/third_party/polymer/components/core-icon/
core-icon.css 14 height: 24px;
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/system_stats/
system_stats_instance_track.css 7 height: 500px;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
BitmapPoolAdapter.java 26 public Bitmap get(int width, int height, Bitmap.Config config) {
31 public Bitmap getDirty(int width, int height, Bitmap.Config config) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
FileLoader.java 24 public DataFetcher<T> getResourceFetcher(File model, int width, int height) {
25 return uriLoader.getResourceFetcher(Uri.fromFile(model), width, height);
UrlLoader.java 22 public DataFetcher<T> getResourceFetcher(URL model, int width, int height) {
23 return glideUrlLoader.getResourceFetcher(new GlideUrl(model), width, height);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifBitmapProvider.java 17 public Bitmap obtain(int width, int height, Bitmap.Config config) {
18 return bitmapPool.getDirty(width, height, config);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Batch.java 76 /** Draws a rectangle with the bottom left corner at x,y having the given width and height in pixels. The rectangle is offset by
86 * @param height the height in pixels
93 * @param srcHeight the source height in texels
96 public void draw (Texture texture, float x, float y, float originX, float originY, float width, float height, float scaleX,
99 /** Draws a rectangle with the bottom left corner at x,y having the given width and height in pixels. The portion of the
105 * @param height the height in pixels
109 * @param srcHeight the source height in texels
112 public void draw (Texture texture, float x, float y, float width, float height, int srcX, int srcY, int srcWidth,
    [all...]
TextureRegion.java 43 * @param height The height of the texture region. May be negative to flip the sprite when drawn. */
44 public TextureRegion (Texture texture, int width, int height) {
46 setRegion(0, 0, width, height);
50 * @param height The height of the texture region. May be negative to flip the sprite when drawn. */
51 public TextureRegion (Texture texture, int x, int y, int width, int height) {
53 setRegion(x, y, width, height);
68 * @param height The height of the texture region. May be negative to flip the sprite when drawn. */
119 setRegion(region.getRegionX() + x, region.getRegionY() + y, width, height); local
240 float height = (v2 - v) * texture.getHeight(); local
258 int height = regionHeight; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ETC1.java 48 /** the height in pixels **/
49 public final int height; field in class:ETC1.ETC1Data
55 public ETC1Data (int width, int height, ByteBuffer compressedData, int dataOffset) {
57 this.height = height;
83 height = getHeightPKM(compressedData, 0);
90 if (!MathUtils.isPowerOfTwo(width) || !MathUtils.isPowerOfTwo(height)) {
137 return "raw [" + width + "x" + height + "], compressed: " + (compressedData.capacity() - ETC1.PKM_HEADER_SIZE);
177 int height = 0; local
182 height = ETC1.getHeightPKM(etc1Data.compressedData, 0);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/objects/
EllipseMapObject.java 33 /** Creates an {@link Ellipse} object whose lower left corner is at (0, 0) with width=1 and height=1 */
38 /** Creates an {@link Ellipse} object with the given X and Y coordinates along with a specified width and height.
43 * @param height Height in pixels */
44 public EllipseMapObject (float x, float y, float width, float height) {
46 ellipse = new Ellipse(x, y, width, height);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BitmapFontAlignmentTest.java 98 float height = logoSprite.getHeight(); local
102 y += height / 2 + layout.height / 2;
112 float height = logoSprite.getHeight(); local
119 y += height / 2 + layout.height / 2;
130 float height = logoSprite.getHeight(); local
134 y += height / 2 + layout.height / 2;
150 float height = logoSprite.getHeight(); local
170 float height = logoSprite.getHeight(); local
188 float height = logoSprite.getHeight(); local
    [all...]
  /external/libvncserver/common/
turbojpeg.h 103 * MCU block height (in pixels) for a given level of chrominance subsampling.
319 * @param height height (in pixels) of the source image
353 int width, int pitch, int height, int pixelFormat, unsigned char **jpegBuf,
369 * @param height height of the image (in pixels)
377 DLLEXPORT unsigned long DLLCALL tjBufSize(int width, int height,
398 * @param height pointer to an integer variable that will receive the height
407 unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height,
    [all...]
  /external/libvncserver/libvncserver/
tabletrans24template.c 54 int width, int height)
64 while (height > 0) {
79 height--;
93 int width, int height)
105 while (height > 0) {
118 height--;
145 int width, int height)
154 while (height > 0) {
163 height--;
178 int width, int height)
    [all...]
  /external/libyuv/files/unit_test/
unit_test.cc 26 DEFINE_int32(libyuv_height, 0, "height of test image.");
58 const char* height = getenv("LIBYUV_HEIGHT"); local
59 if (height) {
60 benchmark_height_ = atoi(height); // NOLINT
110 const char* height = getenv("LIBYUV_HEIGHT"); local
111 if (height) {
112 benchmark_height_ = atoi(height); // NOLINT
162 const char* height = getenv("LIBYUV_HEIGHT"); local
163 if (height) {
164 benchmark_height_ = atoi(height); // NOLIN
214 const char* height = getenv("LIBYUV_HEIGHT"); local
266 const char* height = getenv("LIBYUV_HEIGHT"); local
318 const char* height = getenv("LIBYUV_HEIGHT"); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_clear.h 49 pipe->clear_render_target(pipe, ps, color, 0, 0, ps->width, ps->height);
57 0, 0, ps->width, ps->height);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_modeset.h 41 int width, height; member in struct:native_mode
72 uint width, uint height);
  /external/mesa3d/src/mesa/main/
viewport.h 35 _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height);
40 GLsizei width, GLsizei height);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_readpixels.c 45 GLsizei width, GLsizei height,
54 _mesa_readpixels(ctx, x, y, width, height, format, type, pack, dest);
  /external/opencv3/modules/cudalegacy/test/
TestDrawRects.h 56 Ncv32u width, Ncv32u height, Ncv32u numRects, T color);
71 Ncv32u height; member in class:TestDrawRects
TestRectStdDev.h 55 Ncv32u width, Ncv32u height, NcvRect32u rect, Ncv32f scaleFactor,
69 Ncv32u height; member in class:TestRectStdDev
TestResize.h 55 Ncv32u width, Ncv32u height, Ncv32u scaleFactor, NcvBool bTextureCache);
68 Ncv32u height; member in class:TestResize
  /external/opencv3/modules/imgcodecs/src/
rgbe.hpp 74 int RGBE_WriteHeader(FILE *fp, int width, int height, rgbe_header_info *info);
75 int RGBE_ReadHeader(FILE *fp, int *width, int *height, rgbe_header_info *info);
  /external/opencv3/modules/objdetect/src/
HaarStructs.h 32 int height[3]; member in struct:Fe
43 int height; member in struct:hr
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DBase.h 15 virtual void UpdateForRenderResolutionChange(float width, float height);
16 virtual void UpdateForWindowSizeChange(float width, float height);
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DBase.h 15 virtual void UpdateForRenderResolutionChange(float width, float height);
16 virtual void UpdateForWindowSizeChange(float width, float height);

Completed in 1516 milliseconds

<<11121314151617181920>>