HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 1 - 25 of 10584) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
SizeReadyCallback.java 12 * @param height The height in pixels of the target.
14 void onSizeReady(int width, int height);
  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) {
12 (unsigned)height > (unsigned)this->height()) {
16 int32_t area = width * height; // computed here since height will be modified
18 height = GrNextPow2(height);
19 if (height < kMIN_HEIGHT_POW2) {
20 height = kMIN_HEIGHT_POW2;
23 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);
  /external/skqp/src/gpu/
GrRectanizer_pow2.cpp 10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) {
12 (unsigned)height > (unsigned)this->height()) {
16 int32_t area = width * height; // computed here since height will be modified
18 height = GrNextPow2(height);
19 if (height < kMIN_HEIGHT_POW2) {
20 height = kMIN_HEIGHT_POW2;
23 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/v4l2_codec2/vda/
size.h 21 Size(int width, int height)
22 : width_(width < 0 ? 0 : width), height_(height < 0 ? 0 : height) {}
25 constexpr int height() const { return height_; } function in struct:media::Size
28 void set_height(int height) { height_ = height < 0 ? 0 : height; }
30 void SetSize(int width, int height) {
32 set_height(height);
35 bool IsEmpty() const { return !width() || !height(); }
    [all...]
  /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/libmojo/ui/gfx/geometry/
size_f.cc 12 return width() * height();
16 SetSize(width() + grow_width, height() + grow_height);
21 height_ = height() <= other.height() ? height() : other.height();
26 height_ = height() >= other.height() ? height() : other.height();
    [all...]
  /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...]
  /frameworks/native/services/surfaceflinger/
RenderArea.cpp 17 * Checks that the requested width and height are valid and updates them to the render area
24 uint32_t height = getHeight(); local
27 std::swap(width, height);
31 std::swap(width, height);
34 if ((mReqWidth > width) || (mReqHeight > height)) {
35 ALOGE("size mismatch (%d, %d) > (%d, %d)", mReqWidth, mReqHeight, width, height);
43 mReqHeight = height;
  /external/libvpx/libvpx/vp8/common/
copy_c.c 18 unsigned char *dst_ptr, int dst_stride, int height) {
21 for (r = 0; r < height; ++r) {
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 29 public int height; field in class:Texture
41 height = 0;
  /external/tensorflow/tensorflow/examples/android/jni/
rgb2yuv.h 26 uint8_t* const output, int width, int height);
29 const int width, const int height);
  /cts/hostsidetests/sustainedperf/shadertoy_android/src/
GLtestLib.java 29 * @param height the current view height
31 public static native void init(int width, int height);
  /cts/tests/tests/view/src/android/view/cts/surfacevalidator/
PixelChecker.java 19 boolean checkPixels(int blackishPixelCount, int width, int height);
  /external/annotation-tools/scene-lib/src/annotations/toys/
package-info.java 1 @SimplerAnnotation(be = BalanceEnum.BALANCED, height = 0, wrappedHeight = { 1 }, favoriteClass = Object.class)
  /external/harfbuzz_ng/util/
ansi-print.hh 36 unsigned int height,

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>