/aosp_15_r20/prebuilts/go/linux-x86/src/image/ |
D | geom.go | 88 type Rectangle struct { struct 89 Min, Max Point 93 func (r Rectangle) String() string { 98 func (r Rectangle) Dx() int { 103 func (r Rectangle) Dy() int { 108 func (r Rectangle) Size() Point { 116 func (r Rectangle) Add(p Point) Rectangle { 124 func (r Rectangle) Sub(p Point) Rectangle { 134 func (r Rectangle) Inset(n int) Rectangle { 154 func (r Rectangle) Intersect(s Rectangle) Rectangle { [all …]
|
D | image.go | 93 func pixelBufferLength(bytesPerPixel int, r Rectangle, imageTypeName string) int { 227 func NewRGBA(r Rectangle) *RGBA { 344 func NewRGBA64(r Rectangle) *RGBA64 { 471 func NewNRGBA(r Rectangle) *NRGBA { 615 func NewNRGBA64(r Rectangle) *NRGBA64 { 723 func NewAlpha(r Rectangle) *Alpha { 834 func NewAlpha16(r Rectangle) *Alpha16 { 931 func NewGray(r Rectangle) *Gray { 1031 func NewGray16(r Rectangle) *Gray16 { 1140 func NewCMYK(r Rectangle) *CMYK { [all …]
|
D | ycbcr.go | 147 func yCbCrSize(r Rectangle, subsampleRatio YCbCrSubsampleRatio) (w, h, cw, ch int) { 175 func NewYCbCr(r Rectangle, subsampleRatio YCbCrSubsampleRatio) *YCbCr { 299 func NewNYCbCrA(r Rectangle, subsampleRatio YCbCrSubsampleRatio) *NYCbCrA {
|
D | ycbcr_test.go | 61 func testYCbCr(t *testing.T, r Rectangle, subsampleRatio YCbCrSubsampleRatio, delta Point) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/image/draw/ |
D | draw.go | 55 func (op Op) Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) { 63 Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) 83 func clip(dst Image, r *image.Rectangle, src image.Image, sp *image.Point, mask image.Image, mp *im… 103 func processBackward(dst image.Image, r image.Rectangle, src image.Image, sp image.Point) bool { 110 func Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point, op Op) { 116 func DrawMask(dst Image, r image.Rectangle, src image.Image, sp image.Point, mask image.Image, mp i… 389 func drawFillOver(dst *image.RGBA, r image.Rectangle, sr, sg, sb, sa uint32) { 411 func drawFillSrc(dst *image.RGBA, r image.Rectangle, sr, sg, sb, sa uint32) { 435 func drawCopyOver(dst *image.RGBA, r image.Rectangle, src *image.RGBA, sp image.Point) { 484 dstPix []byte, dstStride int, r image.Rectangle, [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/element/ |
D | basic_shapes.rs | 135 pub struct Rectangle<Coord> { struct 141 impl<Coord> Rectangle<Coord> { argument 165 impl<'a, Coord> PointCollection<'a, Coord> for &'a Rectangle<Coord> { implementation 173 impl<Coord, DB: DrawingBackend> Drawable<DB> for Rectangle<Coord> { implementation
|
/aosp_15_r20/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
H A D | Rectangle.java | 26 public class Rectangle extends Quad { class 28 public Rectangle() { in Rectangle() method in Rectangle 31 public Rectangle(float x, float y, float width, float height) { in Rectangle() method in Rectangle 38 public Rectangle(Point origin, Point size) { in Rectangle() method in Rectangle 56 private Rectangle(Point p0, Point p1, Point p2, Point p3) { in Rectangle() method in Rectangle
|
/aosp_15_r20/external/clang/test/FixIt/ |
H A D | typo.c | 11 struct Rectangle { struct 19 struct Rectangle bounds; // expected-note{{'bounds' declared here}} argument 37 typedef struct Rectangle Rectangle; // expected-note{{'Rectangle' declared here}} in test() typedef
|
/aosp_15_r20/external/deqp/modules/glshared/ |
H A D | glsLifetimeTests.hpp | 540 struct Rectangle struct 542 …Rectangle(GLint x_, GLint y_, GLint width_, GLint height_) : x(x_), y(y_), width(width_), height(h… in Rectangle() function 545 GLint x; 546 GLint y; 547 GLint width; 548 GLint height;
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
H A D | vktDynamicStateInheritanceTests.cpp | 75 struct Rectangle struct 77 Vec3 xyz; // Before viewport transformation 78 int32_t r8g8b8; // (8-bit) red << 16 | green << 8 | blue 79 Vec2 widthHeight; // positive; before viewport transformation 80 int32_t viewportIndex;
|
/aosp_15_r20/external/deqp/modules/gles31/functional/ |
H A D | es31fSeparateShaderTests.cpp | 999 struct Rectangle struct 1001 … Rectangle(int x_, int y_, int width_, int height_) : x(x_), y(y_), width(width_), height(height_) in Rectangle() function 1004 int x; 1005 int y; 1006 int width; 1007 int height;
|
/aosp_15_r20/external/angle/src/libANGLE/ |
H A D | BlendStateExt_unittest.cpp | 313 TEST(Rectangle, Clip) in TEST() argument 373 TEST(Rectangle, Combine) in TEST() argument 411 TEST(Rectangle, Extend) in TEST() argument
|
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/image/ |
H A D | sample_distorted_bounding_box_op.cc | 36 class Rectangle { class 38 Rectangle() { Set(0, 0, 0, 0); } in Rectangle() function in tensorflow::__anon2b7672ba0111::Rectangle 39 Rectangle(int xmin, int ymin, int xmax, int ymax) { in Rectangle() function in tensorflow::__anon2b7672ba0111::Rectangle
|
/aosp_15_r20/libcore/luni/src/main/java/libcore/internal/ |
H A D | Java21LanguageFeatures.java | 55 public static class Rectangle extends Shape { class 59 public Rectangle(int length, int width) { in Rectangle() method in Rectangle
|
H A D | Java17LanguageFeatures.java | 65 public static class Rectangle extends Shape { class in Java17LanguageFeatures 69 public Rectangle(int length, int width) { in Rectangle() method in Java17LanguageFeatures.Rectangle
|
/aosp_15_r20/frameworks/native/opengl/tests/hwc/ |
H A D | hwcRects.cpp | 143 class Rectangle { class 145 Rectangle() : format(defaultFormat), transform(defaultTransform), in Rectangle() function in Rectangle
|
/aosp_15_r20/external/grpc-grpc/examples/ruby/lib/ |
H A D | route_guide_pb.rb | 33 …Rectangle = Google::Protobuf::DescriptorPool.generated_pool.lookup("routeguide.Rectangle").msgclass constant
|
/aosp_15_r20/prebuilts/go/linux-x86/src/image/internal/imageutil/ |
D | impl.go | 16 func DrawYCbCr(dst *image.RGBA, r image.Rectangle, src *image.YCbCr, sp image.Point) (ok bool) {
|
/aosp_15_r20/external/pytorch/torch/onnx/_internal/diagnostics/infra/sarif/ |
H A D | _rectangle.py | 13 class Rectangle(object): class
|
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/ |
H A D | Types.h | 428 struct Rectangle struct 430 uint16_t x; /**< Top-left x coordinate */ 431 uint16_t y; /**< Top-left y coordinate */ 432 uint16_t width; /**< Width of the rectangle */ 433 uint16_t height; /**< Height of the rectangle */
|
/aosp_15_r20/external/grpc-grpc/examples/php/route_guide/Routeguide/ |
H A D | Rectangle.php | 17 class Rectangle extends \Google\Protobuf\Internal\Message class
|
/aosp_15_r20/external/moshi/examples/src/main/java/com/squareup/moshi/recipes/ |
H A D | CustomQualifier.java | 48 static class Rectangle { class in CustomQualifier
|
/aosp_15_r20/external/chromium-trace/catapult/devil/devil/utils/ |
H A D | geometry.py | 39 class Rectangle( class
|
/aosp_15_r20/external/grpc-grpc/examples/python/route_guide/ |
H A D | asyncio_route_guide_server.py | 80 self, request: route_guide_pb2.Rectangle, unused_context
|
/aosp_15_r20/external/grpc-grpc/examples/protos/ |
H A D | route_guide.proto | 66 message Rectangle { message
|