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

1 2 3 4 5 6 7 8 91011>>

  /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
27 private final int width; field in class:SimpleTarget
47 * @param width The width in pixels of the desired resource.
50 public SimpleTarget(int width, int height) {
51 this.width = width;
62 if (width <= 0 || height <= 0) {
63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width + " and
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 23 public final int width; field in class:Size
26 public Size(int width, int height) {
27 this.width = width;
SelectableResolution.java 24 public final int width; field in class:SelectableResolution
30 public SelectableResolution(int cameraId, int width, int height) {
32 this.width = width;
40 return "Cam " + cameraId + ": " + width + " x " + height + " - "
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
concat-charset.css 4 border-width:1px;
14 border-width:10px;
  /external/deqp/framework/common/
tcuSurface.cpp 34 Surface::Surface(int width, int height)
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height)
54 m_width = width;
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) {}
24 constexpr int width() const { return width_; } function in struct:media::Size
27 void set_width(int width) { width_ = width < 0 ? 0 : width; }
30 void SetSize(int width, int height) {
31 set_width(width);
35 bool IsEmpty() const { return !width() || !height();
    [all...]
  /external/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } 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.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
  /dalvik/dx/tests/008-field/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/009-method/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/010-class-attrib-InnerClasses/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/011-class-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/012-class-attrib-SourceFile/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/013-class-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/015-field-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/016-field-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/025-class-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/026-field-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/030-minimal-jasmin/
run 17 dx --debug --dump --width=200 blort.class | grep ' 000.:'
  /external/v8/src/arm64/
utils-arm64.cc 16 int CountLeadingZeros(uint64_t value, int width) {
18 DCHECK((width == 32) || (width == 64));
20 uint64_t bit_test = 1UL << (width - 1);
21 while ((count < width) && ((bit_test & value) == 0)) {
29 int CountLeadingSignBits(int64_t value, int width) {
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width) - 1
    [all...]
  /external/skia/gm/
thinconcavepaths.cpp 14 void draw_thin_stroked_rect(SkCanvas* canvas, const SkPaint& paint, SkScalar width) {
16 path.moveTo(10 + width, 10 + width);
17 path.lineTo(40, 10 + width);
19 path.lineTo(10 + width, 20);
21 path.lineTo(10, 20 + width);
22 path.lineTo(40 + width, 20 + width);
23 path.lineTo(40 + width, 10);
27 void draw_thin_right_angle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) {
    [all...]
  /external/skqp/gm/
thinconcavepaths.cpp 14 void draw_thin_stroked_rect(SkCanvas* canvas, const SkPaint& paint, SkScalar width) {
16 path.moveTo(10 + width, 10 + width);
17 path.lineTo(40, 10 + width);
19 path.lineTo(10 + width, 20);
21 path.lineTo(10, 20 + width);
22 path.lineTo(40 + width, 20 + width);
23 path.lineTo(40 + width, 10);
27 void draw_thin_right_angle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) {
    [all...]
  /external/libmojo/ui/gfx/geometry/
size_f.cc 12 return width() * height();
16 SetSize(width() + grow_width, height() + grow_height);
20 width_ = width() <= other.width() ? width() : other.width();
25 width_ = width() >= other.width() ? width() : other.width();
    [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);

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>