/external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/ |
Nest.java | 19 private int height; field in class:Nest 22 return height; 25 public void setHeight(int height) { 26 this.height = height;
|
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/ |
rect_track.css | 7 height: 18px;
|
spacing_track.css | 6 height: 4px;
|
ruler_track.css | 7 height: 12px; 11 height: 30px;
|
object_instance_track.css | 7 height: 18px;
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
SimpleTarget.java | 5 * 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) { 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: " + height + ", either provide dimensions in the constructor or call override()") [all...] |
/external/skia/src/gpu/ |
GrRectanizer_pow2.cpp | 11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { 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...] |
GrRectanizer.h | 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { 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);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
Size.java | 24 public final int height; field in class:Size 26 public Size(int width, int height) { 28 this.height = height;
|
SelectableResolution.java | 25 public final int height; field in class:SelectableResolution 30 public SelectableResolution(int cameraId, int width, int height) { 33 this.height = height; 40 return "Cam " + cameraId + ": " + width + " x " + height + " - "
|
/external/deqp/framework/common/ |
tcuSurface.cpp | 34 Surface::Surface(int width, int height) 36 , m_height (height) 37 , m_pixels (width*height) 50 * \param height New height. 52 void Surface::setSize (int width, int height) 55 m_height = height; 56 m_pixels.setStorage(width * height);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/ |
Door.java | 20 private int height; field in class:Door 22 public Door(String id, int height) { 24 this.height = height; 28 this.height = 3; 32 return height; 35 public void setHeight(int height) { 36 this.height = height;
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/ |
FixedResolutionStrategy.java | 16 /** This {@link ResolutionStrategy} will place the GLSurfaceView with the given height and width in the center the screen.
22 private final int height;
field in class:FixedResolutionStrategy 24 public FixedResolutionStrategy (int width, int height) {
26 this.height = height;
31 return new MeasuredDimension(width, height);
|
ResolutionStrategy.java | 19 /** Will manipulate the GLSurfaceView. Gravity is always center. The width and height of the View will be determined by the
29 public final int height;
field in class:ResolutionStrategy.MeasuredDimension 31 public MeasuredDimension (int width, int height) {
33 this.height = height;
|
/external/opencv3/3rdparty/libwebp/utils/ |
quant_levels_dec.c | 20 int DequantizeLevels(uint8_t* const data, int width, int height) { 21 if (data == NULL || width <= 0 || height <= 0) return 0; 24 (void)height;
|
/external/autotest/client/deps/glbench/src/ |
png_helper.h | 8 void write_png_file(const char* file_name, char* pixels, int width, int height);
|
/frameworks/av/cmds/stagefright/ |
jpeg.h | 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
|
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_delta_panel.h | 23 void deltaPanelRendering(uint8_t *pImage, int width, int height);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
ColorSpace.java | 31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed 39 * @param height the height of the image (must be a multiple of 2) 42 ByteBuffer input, ByteBuffer output, int width, int height) { 43 expectInputSize(input, (3 * width * height) / 2); 44 expectOutputSize(output, width * height * 4); 45 nativeYuv420pToRgba8888(input, output, width, height); 58 * @param height the height of the image 61 ByteBuffer input, ByteBuffer output, int width, int height) { [all...] |
/external/opencv3/modules/core/misc/java/src/java/ |
core+Size.java | 6 public double width, height; field in class:Size 8 public Size(double width, double height) { 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...] |