Searched refs:height (Results 1 - 25 of 3865) sorted by relevance

1234567891011>>

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
H A DNest.java19 private int height; field in class:Nest
22 return height;
25 public void setHeight(int height) { argument
26 this.height = height;
/external/chromium-trace/catapult/firefighter/default/tracing/tracing/ui/tracks/
H A Drect_track.css7 height: 18px;
H A Dspacing_track.css6 height: 4px;
H A Druler_track.css7 height: 12px;
11 height: 30px;
H A Dobject_instance_track.css7 height: 18px;
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/
H A Drect_track.css7 height: 18px;
H A Dspacing_track.css6 height: 4px;
H A Druler_track.css7 height: 12px;
11 height: 30px;
H A Dobject_instance_track.css7 height: 18px;
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSimpleTarget.java5 * of non essential methods that allows the caller to specify an exact width/height. Typicaly use cases look something
28 private final int height; field in class:SimpleTarget
48 * @param height The height in pixels of the desired resource.
50 public SimpleTarget(int width, int height) { argument
52 this.height = height;
62 if (width <= 0 || height <= 0) {
63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width + " and"
64 + " height
[all...]
H A DSizeReadyCallback.java12 * @param height The height in pixels of the target.
14 void onSizeReady(int width, int height); argument
/external/skia/src/gpu/
H A DGrRectanizer_pow2.cpp11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument
13 (unsigned)height > (unsigned)this->height()) {
17 int32_t area = width * height; // computed here since height will be modified
19 height = GrNextPow2(height);
20 if (height < kMIN_HEIGHT_POW2) {
21 height = kMIN_HEIGHT_POW2;
24 Row* row = &fRows[HeightToRowIndex(height)];
[all...]
H A DGrRectanizer.h17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
19 SkASSERT(height >= 0);
27 int height() const { return fHeight; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
/external/deqp/framework/common/
H A DtcuSurface.cpp34 Surface::Surface(int width, int height) argument
36 , m_height (height)
37 , m_pixels (width*height)
50 * \param height New height.
52 void Surface::setSize (int width, int height) argument
55 m_height = height;
56 m_pixels.setStorage(width * height);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
H A DDoor.java20 private int height; field in class:Door
22 public Door(String id, int height) { argument
24 this.height = height;
28 this.height = 3;
32 return height;
35 public void setHeight(int height) { argument
36 this.height = height;
/external/opencv3/3rdparty/libwebp/utils/
H A Dquant_levels_dec.c20 int DequantizeLevels(uint8_t* const data, int width, int height) { argument
21 if (data == NULL || width <= 0 || height <= 0) return 0;
24 (void)height;
/external/autotest/client/deps/glbench/src/
H A Dpng_helper.h8 void write_png_file(const char* file_name, char* pixels, int width, int height);
/external/v8/test/mjsunit/compiler/
H A Dregress-3136962.js29 // value of global variable height was reused even after reassignment.
31 var height = 267; variable
34 function inner() { height = 0; ++count; }
38 for (var i = 0; i < height; ++i) {
40 if (i + j < 0 || i + j >= height) continue;
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+Size.java6 public double width, height; field in class:Size
8 public Size(double width, double height) { argument
10 this.height = height;
19 height = p.y;
29 height = vals.length > 1 ? vals[1] : 0;
32 height = 0;
37 return width * height;
41 return new Size(width, height);
49 temp = Double.doubleToLongBits(height);
[all...]
/external/libvpx/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.h24 unsigned int height,
34 unsigned int height,
/external/libvpx/libvpx/vp8/common/
H A Dcopy_c.c20 int height)
24 for (r = 0; r < height; r++)
18 vp8_copy32xn_c(const unsigned char *src_ptr, int src_stride, unsigned char *dst_ptr, int dst_stride, int height) argument
/external/pdfium/xfa/src/fxbarcode/
H A DBC_LuminanceSource.cpp25 CBC_LuminanceSource::CBC_LuminanceSource(int32_t width, int32_t height) argument
26 : m_width(width), m_height(height) {}
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java29 public int height; field in class:Texture
41 height = 0;
/external/harfbuzz_ng/util/
H A Dansi-print.hh35 unsigned int height,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_other.h39 unsigned width, unsigned height);
44 unsigned width, unsigned height);
53 unsigned width, unsigned height);
58 unsigned width, unsigned height);
64 unsigned width, unsigned height);
69 unsigned width, unsigned height);
78 unsigned width, unsigned height);
83 unsigned width, unsigned height);
89 unsigned width, unsigned height);
94 unsigned width, unsigned height);
[all...]

Completed in 858 milliseconds

1234567891011>>