Home
last modified time | relevance | path

Searched defs:Size (Results 1 – 25 of 12388) sorted by relevance

12345678910>>...496

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Primitives/src/System/Drawing/
H A DSize.cs21 public struct Size : IEquatable<Size> struct
36 /// Initializes a new instance of the <see cref='System.Drawing.Size'/> class from
40 public Size(Point pt) in Size() method
53 public Size(int width, int height) in Size() method
129 /// Tests whether two <see cref='System.Drawing.Size'/> objects
161 /// <see cref='System.Drawing.Size'/>.
176 /// <see cref='System.Drawing.Size'/>.
201 …/// Contracts a <see cref='System.Drawing.Size'/> by another <see cref='System.Drawing.Size'…
223 /// <see cref='System.Drawing.Size'/>
241 /// <see cref='System.Drawing.Size'/>.
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Drawing/System.Drawing/
H A DSize.cs46 public struct Size struct
50 private int width, height;
64 public static readonly Size Empty;
95 public static Size Round (SizeF value) in Round()
227 public Size (Point pt) in Size() argument
241 public Size (int width, int height) in Size() method
260 public bool IsEmpty {
274 public int Width {
291 public int Height {
324 public override int GetHashCode () in GetHashCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/System.Windows/
H A DSize.cs37 public struct Size : IFormattable struct
39 public Size (double width, double height) in Size() method
48 public bool Equals (Size value) in Equals()
66 public override int GetHashCode () in GetHashCode()
98 public override string ToString () in ToString()
127 public bool IsEmpty {
134 public double Height {
147 public double Width {
160 public static Size Empty {
189 double _width;
[all …]
/dports/x11-toolkits/gtk-sharp20/gtk-sharp-2.12.45/gdk/
H A DSize.cs26 public struct Size : IEquatable<Size> { struct
28 int width, height;
30 public static readonly Size Empty;
61 public Size (Point pt) in Size() argument
67 public Size (int width, int height) in Size() method
73 public bool IsEmpty {
79 public int Width {
88 public int Height {
105 public bool Equals (Size other) in Equals()
110 public override int GetHashCode () in GetHashCode()
[all …]
/dports/x11-toolkits/gtk-sharp30/gtk-sharp-2.99.3/gdk/
H A DSize.cs26 public struct Size { struct
28 int width, height;
30 public static readonly Size Empty;
61 public Size (Point pt) in Size() argument
67 public Size (int width, int height) in Size() method
73 public bool IsEmpty {
79 public int Width {
88 public int Height {
97 public override bool Equals (object o) in Equals()
105 public override int GetHashCode () in GetHashCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.WindowsRuntime/src/System/Windows/
H A DSize.cs33 public struct Size struct
35 private float _width;
36 private float _height;
40 public Size(double width, double height) in Size() method
50 public double Width
62 public double Height
74 public static Size Empty
80 public bool IsEmpty
111 public bool Equals(Size value) in Equals()
116 public override int GetHashCode() in GetHashCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Interop/src/Windows/Foundation/
H A DSize.cs28 public struct Size struct
30 private float _width;
31 private float _height;
35 public Size(double width, double height) in Size() method
46 public double Width
58 public double Height
70 public static Size Empty
76 public bool IsEmpty
113 public bool Equals(Size value) in Equals()
118 public override int GetHashCode() in GetHashCode()
[all …]
/dports/graphics/pinta/pinta-1.7.1/Pinta.Docking/Xwt/
H A DSize.cs33 struct Size struct
35 double width, height;
39 public Size (double width, double height) in Size() method
45 public bool IsZero {
52 public double Width {
62 public double Height {
71 public static Size operator + (Size s1, Size s2) in operator +()
76 public static Size operator - (Size s1, Size s2) in operator -()
101 public override bool Equals (object ob) in Equals()
106 public override int GetHashCode () in GetHashCode()
[all …]
/dports/games/openra/OpenRA-release-20200503/OpenRA.Game/Primitives/
H A DSize.cs16 public struct Size : IEquatable<Size> struct
18 public readonly int Width;
19 public readonly int Height;
21 public static Size operator +(Size left, Size right) in operator +()
26 public static bool operator ==(Size left, Size right) in operator ==()
36 public static Size operator -(Size sz1, Size sz2) in operator -()
41 public Size(int width, int height) in Size() method
49 public bool Equals(Size other) in Equals()
54 public override bool Equals(object obj) in Equals()
62 public override int GetHashCode() in GetHashCode()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/kurbo-0.6.1/src/
H A Dsize.rs12 pub struct Size { struct
19 impl Size { argument
117 pub fn ceil(self) -> Size { in ceil()
199 impl fmt::Debug for Size { implementation
205 impl fmt::Display for Size { implementation
215 impl MulAssign<f64> for Size { implementation
234 impl Mul<f64> for Size { implementation
256 impl Div<f64> for Size { implementation
268 impl Add<Size> for Size { implementation
286 impl Sub<Size> for Size { implementation
[all …]
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/meta/tests/
H A Dtest_permutation.cpp47 const size_t Size = 5; in TEST_SUITE() local
55 const size_t Size = 5; in TEST_SUITE() local
63 const size_t Size = 5; in TEST_SUITE() local
71 const size_t Size = 5; in TEST_SUITE() local
79 const size_t Size = 5; in TEST_SUITE() local
87 const size_t Size = 5; in TEST_SUITE() local
98 const size_t Size = 5; in TEST_SUITE() local
109 const size_t Size = 1; in TEST_SUITE() local
120 const size_t Size = 5; in TEST_SUITE() local
131 const size_t Size = 2; in TEST_SUITE() local
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/kurbo-0.5.11/src/
H A Dsize.rs11 pub struct Size { struct
18 impl Size { impl
96 pub fn round(self) -> Size { in round()
116 pub fn ceil(self) -> Size { in ceil()
198 impl fmt::Debug for Size { implementation
204 impl fmt::Display for Size { implementation
214 impl MulAssign<f64> for Size { implementation
233 impl Mul<f64> for Size { implementation
245 impl Add<Size> for Size { implementation
263 impl Sub<Size> for Size { implementation
[all …]
/dports/devel/git-lfs/git-lfs-3.0.2/vendor/github.com/olekukonko/ts/
H A Dts.go11 type Size struct { struct
12 row uint16
13 col uint16
14 posX uint16
15 posY uint16
19 func (w Size) Col() int {
24 func (w Size) Row() int {
29 func (w Size) PosX() int {
34 func (w Size) PosY() int {
/dports/devel/etcd/etcd-2.3.8/Godeps/_workspace/src/github.com/olekukonko/ts/
H A Dts.go11 type Size struct { struct
12 row uint16
13 col uint16
14 posX uint16
15 posY uint16
19 func (w Size) Col() int {
24 func (w Size) Row() int {
29 func (w Size) PosX() int {
34 func (w Size) PosY() int {
/dports/net/syncthing/syncthing-1.18.1/syncthing/lib/config/
H A Dsize.pb.go28 type Size struct { struct
33 func (m *Size) Reset() { *m = Size{} }
34 func (*Size) ProtoMessage() {}
35 func (*Size) Descriptor() ([]byte, []int) {
38 func (m *Size) XXX_Unmarshal(b []byte) error {
66 proto.RegisterType((*Size)(nil), "config.Size")
91 func (m *Size) Marshal() (dAtA []byte, err error) {
101 func (m *Size) MarshalTo(dAtA []byte) (int, error) {
106 func (m *Size) MarshalToSizedBuffer(dAtA []byte) (int, error) {
138 func (m *Size) ProtoSize() (n int) {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/digitalocean/godo/
H A Dsizes.go24 type Size struct { struct
25 Slug string `json:"slug,omitempty"`
26 Memory int `json:"memory,omitempty"`
27 Vcpus int `json:"vcpus,omitempty"`
28 Disk int `json:"disk,omitempty"`
30 PriceHourly float64 `json:"price_hourly,omitempty"`
31 Regions []string `json:"regions,omitempty"`
32 Available bool `json:"available,omitempty"`
33 Transfer float64 `json:"transfer,omitempty"`
34 Description string `json:"description,omitempty"`
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/digitalocean/godo/
H A Dsizes.go24 type Size struct { struct
25 Slug string `json:"slug,omitempty"`
26 Memory int `json:"memory,omitempty"`
27 Vcpus int `json:"vcpus,omitempty"`
28 Disk int `json:"disk,omitempty"`
30 PriceHourly float64 `json:"price_hourly,omitempty"`
31 Regions []string `json:"regions,omitempty"`
32 Available bool `json:"available,omitempty"`
33 Transfer float64 `json:"transfer,omitempty"`
34 Description string `json:"description,omitempty"`
[all …]
/dports/sysutils/doctl/doctl-1.68.0/vendor/github.com/digitalocean/godo/
H A Dsizes.go24 type Size struct { struct
25 Slug string `json:"slug,omitempty"`
26 Memory int `json:"memory,omitempty"`
27 Vcpus int `json:"vcpus,omitempty"`
28 Disk int `json:"disk,omitempty"`
30 PriceHourly float64 `json:"price_hourly,omitempty"`
31 Regions []string `json:"regions,omitempty"`
32 Available bool `json:"available,omitempty"`
33 Transfer float64 `json:"transfer,omitempty"`
34 Description string `json:"description,omitempty"`
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/vendor/github.com/digitalocean/godo/
H A Dsizes.go19 type Size struct { struct
20 Slug string `json:"slug,omitempty"`
21 Memory int `json:"memory,omitempty"`
22 Vcpus int `json:"vcpus,omitempty"`
23 Disk int `json:"disk,omitempty"`
24 PriceMonthly float64 `json:"price_monthly,omitempty"`
25 PriceHourly float64 `json:"price_hourly,omitempty"`
26 Regions []string `json:"regions,omitempty"`
27 Available bool `json:"available,omitempty"`
28 Transfer float64 `json:"transfer,omitempty"`
[all …]
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/stmlib/third_party/STM/STM32H7xx_HAL_Driver/src/
H A Dstm32h7xx_hal_hash_ex.c168 …sTypeDef HAL_HASHEx_SHA224_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HASHEx_SHA224_Accumulate()
209 …sTypeDef HAL_HASHEx_SHA256_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HASHEx_SHA256_Accumulate()
314 …usTypeDef HAL_HASHEx_SHA224_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HASHEx_SHA224_Start_DMA()
344 …usTypeDef HAL_HASHEx_SHA256_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HASHEx_SHA256_Start_DMA()
535 …usTypeDef HAL_HMACEx_SHA224_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_SHA224_Start_DMA()
559 …usTypeDef HAL_HMACEx_SHA256_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_SHA256_Start_DMA()
635 …tusTypeDef HAL_HMACEx_MD5_Step1_2_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_MD5_Step1_2_DMA()
656 …tatusTypeDef HAL_HMACEx_MD5_Step2_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_MD5_Step2_DMA()
682 …tusTypeDef HAL_HMACEx_MD5_Step2_3_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_MD5_Step2_3_DMA()
705 …usTypeDef HAL_HMACEx_SHA1_Step1_2_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) in HAL_HMACEx_SHA1_Step1_2_DMA()
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/crossterm_winapi-0.7.0/src/structs/
H A Dsize.rs9 pub struct Size { struct
14 impl Size { argument
16 pub fn new(width: i16, height: i16) -> Size { in new()
21 impl From<COORD> for Size { implementation
27 impl Into<(u16, u16)> for Size { implementation
/dports/misc/broot/broot-1.7.0/cargo-crates/crossterm_winapi-0.8.0/src/structs/
H A Dsize.rs9 pub struct Size { struct
14 impl Size { argument
16 pub fn new(width: i16, height: i16) -> Size { in new()
21 impl From<COORD> for Size { implementation
27 impl Into<(u16, u16)> for Size { implementation
/dports/shells/nsh/nsh-0.4.2/cargo-crates/crossterm_winapi-0.6.2/src/structs/
H A Dsize.rs9 pub struct Size { struct
14 impl Size { impl
16 pub fn new(width: i16, height: i16) -> Size { in new()
21 impl From<COORD> for Size { implementation
27 impl Into<(u16, u16)> for Size { implementation
/dports/editors/helix/helix-0.5.0/cargo-crates/crossterm_winapi-0.9.0/src/structs/
H A Dsize.rs9 pub struct Size { struct
14 impl Size { argument
16 pub fn new(width: i16, height: i16) -> Size { in new()
21 impl From<COORD> for Size { implementation
27 impl Into<(u16, u16)> for Size { implementation
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/crossterm_winapi-0.4.0/src/structs/
H A Dsize.rs9 pub struct Size { struct
14 impl Size { argument
16 pub fn new(width: i16, height: i16) -> Size { in new()
21 impl From<COORD> for Size { implementation
27 impl Into<(u16, u16)> for Size { implementation

12345678910>>...496