[go: nahoru, domu]

blob: 366bed1cb20222b4200234c57e4df9dcf34ebbaf [file] [log] [blame]
George Mount842c8c12020-01-08 16:03:42 -08001// Signature format: 3.0
George Mount0ad23d02020-04-24 14:37:08 -07002package androidx.ui.core {
3
Aurimas Liutikas3ec16722020-05-27 13:08:04 -07004 @androidx.compose.Immutable public final class Constraints {
George Mount8f237572020-04-30 12:08:30 -07005 ctor public Constraints(internal long value);
6 method public androidx.ui.core.Constraints copy(int minWidth = this.minWidth, int maxWidth = this.maxWidth, int minHeight = this.minHeight, int maxHeight = this.maxHeight);
7 method @androidx.compose.Immutable public androidx.ui.core.Constraints copy(long value);
8 method public boolean getHasBoundedHeight();
9 method public boolean getHasBoundedWidth();
George Mount0ad23d02020-04-24 14:37:08 -070010 method public int getMaxHeight();
11 method public int getMaxWidth();
12 method public int getMinHeight();
13 method public int getMinWidth();
George Mount8f237572020-04-30 12:08:30 -070014 property public final boolean hasBoundedHeight;
15 property public final boolean hasBoundedWidth;
16 property public final int maxHeight;
17 property public final int maxWidth;
18 property public final int minHeight;
19 property public final int minWidth;
Aurimas Liutikasafd4a792020-06-22 13:35:25 -070020 field public static final androidx.ui.core.Constraints.Companion Companion;
George Mount8f237572020-04-30 12:08:30 -070021 field public static final int Infinity = 2147483647; // 0x7fffffff
George Mount0ad23d02020-04-24 14:37:08 -070022 }
23
24 public static final class Constraints.Companion {
George Mount8f237572020-04-30 12:08:30 -070025 method @androidx.compose.Stable public androidx.ui.core.Constraints fixed(int width, int height);
26 method @androidx.compose.Stable public androidx.ui.core.Constraints fixedHeight(int height);
27 method @androidx.compose.Stable public androidx.ui.core.Constraints fixedWidth(int width);
George Mount0ad23d02020-04-24 14:37:08 -070028 }
29
30 public final class ConstraintsKt {
George Mount8f237572020-04-30 12:08:30 -070031 method @androidx.compose.Stable public static androidx.ui.core.Constraints Constraints(int minWidth = 0, int maxWidth = 2147483647, int minHeight = 0, int maxHeight = 2147483647);
32 method @androidx.compose.Stable public static androidx.ui.unit.IntSize constrain(androidx.ui.core.Constraints, androidx.ui.unit.IntSize size);
33 method @androidx.compose.Stable public static int constrainHeight(androidx.ui.core.Constraints, int height);
34 method @androidx.compose.Stable public static int constrainWidth(androidx.ui.core.Constraints, int width);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070035 method @androidx.compose.Stable public static androidx.ui.core.Constraints enforce(androidx.ui.core.Constraints, androidx.ui.core.Constraints otherConstraints);
George Mount0ad23d02020-04-24 14:37:08 -070036 method public static boolean getHasFixedHeight(androidx.ui.core.Constraints);
37 method public static boolean getHasFixedWidth(androidx.ui.core.Constraints);
38 method public static boolean isZero(androidx.ui.core.Constraints);
George Mount8f237572020-04-30 12:08:30 -070039 method @androidx.compose.Stable public static androidx.ui.core.Constraints offset(androidx.ui.core.Constraints, int horizontal = 0, int vertical = 0);
40 method @androidx.compose.Stable public static boolean satisfiedBy(androidx.ui.core.Constraints, androidx.ui.unit.IntSize size);
George Mount0ad23d02020-04-24 14:37:08 -070041 }
42
43 public enum LayoutDirection {
Aurimas Liutikasafd4a792020-06-22 13:35:25 -070044 method public static androidx.ui.core.LayoutDirection valueOf(String name) throws java.lang.IllegalArgumentException;
45 method public static androidx.ui.core.LayoutDirection[] values();
George Mount0ad23d02020-04-24 14:37:08 -070046 enum_constant public static final androidx.ui.core.LayoutDirection Ltr;
47 enum_constant public static final androidx.ui.core.LayoutDirection Rtl;
48 }
49
50}
51
George Mount842c8c12020-01-08 16:03:42 -080052package androidx.ui.unit {
53
Nikolay Igotti99a9b132020-04-07 15:03:05 +030054 public final class AndroidDensityKt {
55 method public static androidx.ui.unit.Density Density(android.content.Context context);
56 }
57
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070058 @androidx.compose.Immutable public final class Bounds {
Mads Agerd32a4882020-04-22 13:27:50 +020059 method public float component1();
60 method public float component2();
61 method public float component3();
62 method public float component4();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070063 method @androidx.compose.Immutable public androidx.ui.unit.Bounds copy-rIHlIKc(float left, float top, float right, float bottom);
Mads Agerd32a4882020-04-22 13:27:50 +020064 method public float getBottom();
65 method public float getLeft();
66 method public float getRight();
67 method public float getTop();
George Mount842c8c12020-01-08 16:03:42 -080068 }
69
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070070 @androidx.compose.Immutable public interface Density {
George Mount842c8c12020-01-08 16:03:42 -080071 method public float getDensity();
72 method public float getFontScale();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070073 method @androidx.compose.Stable public default float toDp(int);
George Mount8f237572020-04-30 12:08:30 -070074 method @androidx.compose.Stable public default float toDp(float);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070075 method @androidx.compose.Stable public default float toDp-vVlMl6k(long);
76 method @androidx.compose.Stable public default int toIntPx-ipo6vVg(float);
77 method @androidx.compose.Stable public default int toIntPx-vVlMl6k(long);
78 method @androidx.compose.Stable public default float toPx-ipo6vVg(float);
79 method @androidx.compose.Stable public default float toPx-vVlMl6k(long);
80 method @androidx.compose.Stable public default androidx.ui.geometry.Rect toRect(androidx.ui.unit.Bounds);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070081 method @androidx.compose.Stable public default long toSp(int);
George Mount8f237572020-04-30 12:08:30 -070082 method @androidx.compose.Stable public default long toSp(float);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070083 method @androidx.compose.Stable public default long toSp-ipo6vVg(float);
Andrey Kulikov47f0e1a2020-01-28 13:52:46 +000084 property public abstract float density;
85 property public abstract float fontScale;
86 }
87
88 public final class DensityKt {
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070089 method @androidx.compose.Stable public static androidx.ui.unit.Density Density(float density, float fontScale = 1f);
George Mount842c8c12020-01-08 16:03:42 -080090 }
91
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070092 @androidx.compose.Immutable public final inline class Dp implements java.lang.Comparable<androidx.ui.unit.Dp> {
Mads Agerd32a4882020-04-22 13:27:50 +020093 ctor public Dp();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070094 method @androidx.compose.Stable public operator int compareTo-ipo6vVg(float p);
95 method @androidx.compose.Stable public static operator int compareTo-ipo6vVg(float $this, float other);
Mads Agerd32a4882020-04-22 13:27:50 +020096 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -070097 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
98 method @androidx.compose.Stable public static inline operator float div-impl(float $this, int other);
99 method @androidx.compose.Stable public static inline operator float div-ipo6vVg(float $this, float other);
100 method @androidx.compose.Stable public static inline operator float div-x8crYZs(float $this, float other);
101 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
Mads Agerd32a4882020-04-22 13:27:50 +0200102 method public static boolean equals-impl0(float p1, float p2);
George Mount842c8c12020-01-08 16:03:42 -0800103 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700104 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
105 method @androidx.compose.Stable public static inline operator float minus-ipo6vVg(float $this, float other);
106 method @androidx.compose.Stable public static inline operator float plus-ipo6vVg(float $this, float other);
107 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
108 method @androidx.compose.Stable public static inline operator float times-impl(float $this, int other);
109 method @androidx.compose.Stable public static inline operator float times-ipo6vVg(float $this, float other);
110 method @androidx.compose.Stable public static inline operator float times-x8crYZs(float $this, float other);
111 method @androidx.compose.Stable public static String toString-impl(float $this);
112 method @androidx.compose.Stable public static inline operator float unaryMinus-impl(float $this);
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700113 field public static final androidx.ui.unit.Dp.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800114 }
115
116 public static final class Dp.Companion {
Mads Agerd32a4882020-04-22 13:27:50 +0200117 method public float getHairline();
118 method public float getInfinity();
119 method public float getUnspecified();
120 property public final float Hairline;
121 property public final float Infinity;
122 property public final float Unspecified;
George Mount842c8c12020-01-08 16:03:42 -0800123 }
124
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700125 @androidx.compose.Immutable public final inline class DpCubed implements java.lang.Comparable<androidx.ui.unit.DpCubed> {
George Mount842c8c12020-01-08 16:03:42 -0800126 ctor public DpCubed();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700127 method @androidx.compose.Stable public operator int compareTo-JDqhs2g(float p);
128 method @androidx.compose.Stable public static operator int compareTo-JDqhs2g(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800129 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700130 method @androidx.compose.Stable public static inline operator float div-JDqhs2g(float $this, float other);
131 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
132 method @androidx.compose.Stable public static inline operator float div-ipo6vVg(float $this, float other);
133 method @androidx.compose.Stable public static inline operator float div-x8crYZs(float $this, float other);
134 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800135 method public static boolean equals-impl0(float p1, float p2);
136 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700137 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
138 method @androidx.compose.Stable public static inline operator float minus-JDqhs2g(float $this, float dimension);
139 method @androidx.compose.Stable public static inline operator float plus-JDqhs2g(float $this, float dimension);
140 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
141 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800142 }
143
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700144 @androidx.compose.Immutable public final inline class DpInverse implements java.lang.Comparable<androidx.ui.unit.DpInverse> {
George Mount842c8c12020-01-08 16:03:42 -0800145 ctor public DpInverse();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700146 method @androidx.compose.Stable public operator int compareTo-_K2iRR8(float p);
147 method @androidx.compose.Stable public static operator int compareTo-_K2iRR8(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800148 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700149 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
150 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800151 method public static boolean equals-impl0(float p1, float p2);
152 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700153 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
154 method @androidx.compose.Stable public static inline operator float minus-_K2iRR8(float $this, float dimension);
155 method @androidx.compose.Stable public static inline operator float plus-_K2iRR8(float $this, float dimension);
156 method @androidx.compose.Stable public static inline operator float times-JDqhs2g(float $this, float other);
157 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
158 method @androidx.compose.Stable public static inline operator float times-ipo6vVg(float $this, float other);
159 method @androidx.compose.Stable public static inline operator float times-x8crYZs(float $this, float other);
160 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800161 }
162
163 public final class DpKt {
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700164 method @androidx.compose.Stable public static inline long Position-98Cn76g(float x, float y);
165 method @androidx.compose.Stable public static inline float coerceAtLeast-98Cn76g(float, float minimumValue);
166 method @androidx.compose.Stable public static inline float coerceAtMost-98Cn76g(float, float maximumValue);
167 method @androidx.compose.Stable public static inline float coerceIn-x40Cv7w(float, float minimumValue, float maximumValue);
168 method @androidx.compose.Stable public static inline operator float div-H0Zl2lQ(float, float other);
169 method @androidx.compose.Stable public static inline operator float div-Y_YOLaE(double, float other);
170 method @androidx.compose.Stable public static inline operator float div-hZ6b2Ic(int, float other);
171 method @androidx.compose.Stable public static float getDistance-T8eBu-w(long);
Mads Agerd32a4882020-04-22 13:27:50 +0200172 method public static inline float getDp(int);
173 method public static inline float getDp(double);
174 method public static inline float getDp(float);
175 method public static inline float getHeight(androidx.ui.unit.Bounds);
176 method public static inline float getWidth(androidx.ui.unit.Bounds);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700177 method @androidx.compose.Stable public static inline boolean isFinite-ipo6vVg(float);
178 method @androidx.compose.Stable public static float lerp-3WSoJcA(float start, float stop, float fraction);
179 method @androidx.compose.Stable public static long lerp-d5NHFfI(long start, long stop, float fraction);
180 method @androidx.compose.Stable public static inline float max-98Cn76g(float a, float b);
181 method @androidx.compose.Stable public static inline float min-98Cn76g(float a, float b);
182 method @androidx.compose.Stable public static inline operator float times-H0Zl2lQ(float, float other);
183 method @androidx.compose.Stable public static inline operator float times-Y_YOLaE(double, float other);
184 method @androidx.compose.Stable public static inline operator float times-hZ6b2Ic(int, float other);
George Mount842c8c12020-01-08 16:03:42 -0800185 }
186
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700187 @androidx.compose.Immutable public final inline class DpSquared implements java.lang.Comparable<androidx.ui.unit.DpSquared> {
George Mount842c8c12020-01-08 16:03:42 -0800188 ctor public DpSquared();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700189 method @androidx.compose.Stable public operator int compareTo-x8crYZs(float p);
190 method @androidx.compose.Stable public static operator int compareTo-x8crYZs(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800191 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700192 method @androidx.compose.Stable public static inline operator float div-JDqhs2g(float $this, float other);
193 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
194 method @androidx.compose.Stable public static inline operator float div-ipo6vVg(float $this, float other);
195 method @androidx.compose.Stable public static inline operator float div-x8crYZs(float $this, float other);
196 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800197 method public static boolean equals-impl0(float p1, float p2);
198 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700199 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
200 method @androidx.compose.Stable public static inline operator float minus-x8crYZs(float $this, float other);
201 method @androidx.compose.Stable public static inline operator float plus-x8crYZs(float $this, float other);
202 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
203 method @androidx.compose.Stable public static inline operator float times-ipo6vVg(float $this, float other);
204 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800205 }
206
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700207 @androidx.compose.Immutable public final class Duration implements java.lang.Comparable<androidx.ui.unit.Duration> {
George Mount842c8c12020-01-08 16:03:42 -0800208 ctor public Duration(long nanoseconds);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700209 method @androidx.compose.Stable public int compareTo(androidx.ui.unit.Duration other);
George Mount842c8c12020-01-08 16:03:42 -0800210 method public long component1();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700211 method @androidx.compose.Immutable public androidx.ui.unit.Duration copy(long nanoseconds);
212 method @androidx.compose.Stable public operator androidx.ui.unit.Duration div(int quotient);
213 method @androidx.compose.Stable public operator androidx.ui.unit.Duration div(double quotient);
George Mount842c8c12020-01-08 16:03:42 -0800214 method public long getNanoseconds();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700215 method @androidx.compose.Stable public operator androidx.ui.unit.Duration minus(androidx.ui.unit.Duration other);
216 method @androidx.compose.Stable public operator androidx.ui.unit.Duration plus(androidx.ui.unit.Duration other);
217 method @androidx.compose.Stable public operator androidx.ui.unit.Duration times(int factor);
218 method @androidx.compose.Stable public operator androidx.ui.unit.Duration times(double factor);
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700219 field public static final androidx.ui.unit.Duration.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800220 }
221
222 public static final class Duration.Companion {
223 method public androidx.ui.unit.Duration getZero();
224 property public final androidx.ui.unit.Duration Zero;
225 }
226
227 public final class Durations {
228 method public static androidx.ui.unit.Duration Duration(long days = 0, long hours = 0, long minutes = 0, long seconds = 0, long milliseconds = 0, long microseconds = 0, long nanoseconds = 0);
229 method public static androidx.ui.unit.Duration getDays(long);
230 method public static androidx.ui.unit.Duration getDays(int);
231 method public static androidx.ui.unit.Duration getHours(long);
232 method public static androidx.ui.unit.Duration getHours(int);
233 method public static androidx.ui.unit.Duration getMicroseconds(long);
234 method public static androidx.ui.unit.Duration getMicroseconds(int);
235 method public static androidx.ui.unit.Duration getMilliseconds(long);
236 method public static androidx.ui.unit.Duration getMilliseconds(int);
237 method public static androidx.ui.unit.Duration getMinutes(long);
238 method public static androidx.ui.unit.Duration getMinutes(int);
239 method public static androidx.ui.unit.Duration getNanoseconds(long);
240 method public static androidx.ui.unit.Duration getNanoseconds(int);
241 method public static long getNanosecondsPerDay();
242 method public static long getNanosecondsPerHour();
243 method public static long getNanosecondsPerMillisecond();
244 method public static long getNanosecondsPerMinute();
245 method public static long getNanosecondsPerSecond();
246 method public static androidx.ui.unit.Duration getSeconds(long);
247 method public static androidx.ui.unit.Duration getSeconds(int);
248 method public static long inDays(androidx.ui.unit.Duration);
249 method public static long inHours(androidx.ui.unit.Duration);
250 method public static long inMicroseconds(androidx.ui.unit.Duration);
251 method public static long inMilliseconds(androidx.ui.unit.Duration);
252 method public static long inMinutes(androidx.ui.unit.Duration);
253 method public static long inSeconds(androidx.ui.unit.Duration);
254 field public static final long HoursPerDay = 24L; // 0x18L
255 field public static final long MicrosecondsPerMillisecond = 1000L; // 0x3e8L
256 field public static final long MillisecondsPerSecond = 1000L; // 0x3e8L
257 field public static final long MinutesPerHour = 60L; // 0x3cL
258 field public static final long NanosecondsPerMicrosecond = 1000L; // 0x3e8L
259 field public static final long SecondsPerMinute = 60L; // 0x3cL
260 }
261
Mihai Popab7ffbed2020-07-06 13:25:18 +0100262 @androidx.compose.Immutable public final class IntBounds {
263 ctor public IntBounds(int left, int top, int right, int bottom);
264 method public int component1();
265 method public int component2();
266 method public int component3();
267 method public int component4();
268 method @androidx.compose.Immutable public androidx.ui.unit.IntBounds copy(int left, int top, int right, int bottom);
269 method public int getBottom();
270 method public int getLeft();
271 method public int getRight();
272 method public int getTop();
273 }
274
275 public final class IntBoundsKt {
276 method @androidx.compose.Stable public static inline androidx.ui.unit.IntBounds IntBounds(androidx.ui.unit.IntOffset topLeft, androidx.ui.unit.IntSize size);
277 method @androidx.compose.Stable public static inline androidx.ui.unit.IntOffset center(androidx.ui.unit.IntBounds);
278 method public static inline int getHeight(androidx.ui.unit.IntBounds);
279 method public static inline int getWidth(androidx.ui.unit.IntBounds);
280 method @androidx.compose.Stable public static androidx.ui.unit.IntBounds toBounds(androidx.ui.unit.IntSize);
281 method @androidx.compose.Stable public static androidx.ui.geometry.Rect toRect(androidx.ui.unit.IntBounds);
282 method @androidx.compose.Stable public static androidx.ui.unit.IntSize toSize(androidx.ui.unit.IntBounds);
283 }
284
George Mount8f237572020-04-30 12:08:30 -0700285 @androidx.compose.Immutable public final class IntOffset {
286 ctor public IntOffset(internal long value);
287 method @androidx.compose.Stable public inline operator int component1();
288 method @androidx.compose.Stable public inline operator int component2();
289 method public int getX();
290 method public int getY();
291 method @androidx.compose.Stable public inline operator androidx.ui.unit.IntOffset minus(androidx.ui.unit.IntOffset other);
292 method @androidx.compose.Stable public inline operator androidx.ui.unit.IntOffset plus(androidx.ui.unit.IntOffset other);
293 method @androidx.compose.Stable public inline operator androidx.ui.unit.IntOffset unaryMinus();
294 property public final int x;
295 property public final int y;
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700296 field public static final androidx.ui.unit.IntOffset.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800297 }
298
George Mount8f237572020-04-30 12:08:30 -0700299 public static final class IntOffset.Companion {
300 method public androidx.ui.unit.IntOffset getOrigin();
301 property public final androidx.ui.unit.IntOffset Origin;
George Mount842c8c12020-01-08 16:03:42 -0800302 }
303
George Mount8f237572020-04-30 12:08:30 -0700304 public final class IntOffsetKt {
305 method @androidx.compose.Stable public static inline androidx.ui.unit.IntOffset IntOffset(int x, int y);
306 method @androidx.compose.Stable public static androidx.ui.unit.IntOffset lerp(androidx.ui.unit.IntOffset start, androidx.ui.unit.IntOffset stop, float fraction);
307 method @androidx.compose.Stable public static operator androidx.ui.geometry.Offset minus(androidx.ui.geometry.Offset, androidx.ui.unit.IntOffset offset);
308 method @androidx.compose.Stable public static operator androidx.ui.geometry.Offset minus(androidx.ui.unit.IntOffset, androidx.ui.geometry.Offset offset);
309 method @androidx.compose.Stable public static operator androidx.ui.geometry.Offset plus(androidx.ui.geometry.Offset, androidx.ui.unit.IntOffset offset);
310 method @androidx.compose.Stable public static operator androidx.ui.geometry.Offset plus(androidx.ui.unit.IntOffset, androidx.ui.geometry.Offset offset);
311 method @androidx.compose.Stable public static inline androidx.ui.geometry.Offset toOffset(androidx.ui.unit.IntOffset);
George Mount842c8c12020-01-08 16:03:42 -0800312 }
313
George Mount8f237572020-04-30 12:08:30 -0700314 @androidx.compose.Immutable public final class IntSize {
Nader Jawad0f71f272020-06-04 15:28:56 -0700315 ctor public IntSize(internal long packedValue);
George Mount8f237572020-04-30 12:08:30 -0700316 method @androidx.compose.Stable public inline operator int component1();
317 method @androidx.compose.Stable public inline operator int component2();
318 method @androidx.compose.Stable public operator androidx.ui.unit.IntSize div(int other);
319 method public int getHeight();
320 method public int getWidth();
321 method @androidx.compose.Stable public operator androidx.ui.unit.IntSize times(int other);
322 property public final int height;
323 property public final int width;
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700324 field public static final androidx.ui.unit.IntSize.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800325 }
326
George Mount8f237572020-04-30 12:08:30 -0700327 public static final class IntSize.Companion {
328 method public androidx.ui.unit.IntSize getZero();
329 property public final androidx.ui.unit.IntSize Zero;
George Mounte20950f2020-04-06 17:06:11 -0700330 }
331
332 public final class IntSizeKt {
George Mount8f237572020-04-30 12:08:30 -0700333 method @androidx.compose.Stable public static androidx.ui.unit.IntSize IntSize(int width, int height);
334 method public static androidx.ui.unit.IntOffset getCenter(androidx.ui.unit.IntSize);
335 method @androidx.compose.Stable public static operator androidx.ui.unit.IntSize times(int, androidx.ui.unit.IntSize size);
Jim Sprocha88c07a2020-06-25 13:00:03 -0700336 method @androidx.compose.Stable public static long toSize(androidx.ui.unit.IntSize);
George Mounte20950f2020-04-06 17:06:11 -0700337 }
338
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700339 @androidx.compose.Immutable public final inline class Position {
George Mount842c8c12020-01-08 16:03:42 -0800340 ctor public Position();
Nader Jawad0f71f272020-06-04 15:28:56 -0700341 method public static long constructor-impl(internal long packedValue);
Nader Jawad9b6c9a52020-06-26 15:21:44 -0700342 method public static long copy-98Cn76g(long $this, float x = this.x, float y = this.y);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700343 method @androidx.compose.Immutable public static inline boolean equals-impl(long p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800344 method public static boolean equals-impl0(long p1, long p2);
Mads Agerd32a4882020-04-22 13:27:50 +0200345 method public static float getX-impl(long $this);
346 method public static float getY-impl(long $this);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700347 method @androidx.compose.Immutable public static inline int hashCode-impl(long p);
348 method @androidx.compose.Stable public static inline operator long minus-T8eBu-w(long $this, long other);
349 method @androidx.compose.Stable public static inline operator long plus-T8eBu-w(long $this, long other);
350 method @androidx.compose.Stable public static String toString-impl(long $this);
George Mount842c8c12020-01-08 16:03:42 -0800351 }
352
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700353 @androidx.compose.Immutable public final class PxBounds {
Nader Jawad63153c12020-05-21 14:17:08 -0700354 ctor public PxBounds(float left, float top, float right, float bottom);
Mads Agerba4927c2020-04-08 13:34:14 +0200355 method public float component1();
356 method public float component2();
357 method public float component3();
358 method public float component4();
Nader Jawad63153c12020-05-21 14:17:08 -0700359 method @androidx.compose.Immutable public androidx.ui.unit.PxBounds copy(float left, float top, float right, float bottom);
Mads Agerba4927c2020-04-08 13:34:14 +0200360 method public float getBottom();
361 method public float getLeft();
362 method public float getRight();
363 method public float getTop();
George Mount842c8c12020-01-08 16:03:42 -0800364 }
365
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700366 @androidx.compose.Immutable public final inline class PxCubed implements java.lang.Comparable<androidx.ui.unit.PxCubed> {
George Mount842c8c12020-01-08 16:03:42 -0800367 ctor public PxCubed();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700368 method @androidx.compose.Stable public operator int compareTo-bji3ab4(float p);
369 method @androidx.compose.Stable public static operator int compareTo-bji3ab4(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800370 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700371 method @androidx.compose.Stable public static inline operator float div-bji3ab4(float $this, float other);
372 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
373 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800374 method public static boolean equals-impl0(float p1, float p2);
375 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700376 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
377 method @androidx.compose.Stable public static inline operator float minus-bji3ab4(float $this, float dimension);
378 method @androidx.compose.Stable public static inline operator float plus-bji3ab4(float $this, float dimension);
379 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
380 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800381 }
382
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700383 @androidx.compose.Immutable public final inline class PxInverse implements java.lang.Comparable<androidx.ui.unit.PxInverse> {
George Mount842c8c12020-01-08 16:03:42 -0800384 ctor public PxInverse();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700385 method @androidx.compose.Stable public operator int compareTo-KGV0gLo(float p);
386 method @androidx.compose.Stable public static operator int compareTo-KGV0gLo(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800387 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700388 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
389 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800390 method public static boolean equals-impl0(float p1, float p2);
391 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700392 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
393 method @androidx.compose.Stable public static inline operator float minus-KGV0gLo(float $this, float dimension);
394 method @androidx.compose.Stable public static inline operator float plus-KGV0gLo(float $this, float dimension);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700395 method @androidx.compose.Stable public static inline operator float times-bji3ab4(float $this, float other);
396 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
397 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800398 }
399
400 public final class PxKt {
Jim Sprocha88c07a2020-06-25 13:00:03 -0700401 method @androidx.compose.Stable public static inline androidx.ui.unit.PxBounds PxBounds-oHQNTA4(androidx.ui.geometry.Offset topLeft, long size);
Nader Jawad6df06122020-06-03 15:27:08 -0700402 method @androidx.compose.Stable public static inline androidx.ui.geometry.Offset center(androidx.ui.unit.PxBounds);
Jim Sprocha88c07a2020-06-25 13:00:03 -0700403 method @androidx.compose.Stable public static androidx.ui.geometry.Offset center-b2zCL34(long);
Mads Agerba4927c2020-04-08 13:34:14 +0200404 method public static inline float getHeight(androidx.ui.unit.PxBounds);
Mads Agerba4927c2020-04-08 13:34:14 +0200405 method public static inline float getWidth(androidx.ui.unit.PxBounds);
George Mount8f237572020-04-30 12:08:30 -0700406 method @androidx.compose.Stable public static inline androidx.ui.unit.IntOffset round(androidx.ui.geometry.Offset);
Jim Sprocha88c07a2020-06-25 13:00:03 -0700407 method @androidx.compose.Stable public static androidx.ui.unit.PxBounds toBounds-b2zCL34(long);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700408 method @androidx.compose.Stable public static androidx.ui.geometry.Rect toRect(androidx.ui.unit.PxBounds);
Jim Sprocha88c07a2020-06-25 13:00:03 -0700409 method @androidx.compose.Stable public static long toSize(androidx.ui.unit.PxBounds);
George Mount842c8c12020-01-08 16:03:42 -0800410 }
411
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700412 @androidx.compose.Immutable public final inline class PxSquared implements java.lang.Comparable<androidx.ui.unit.PxSquared> {
George Mount842c8c12020-01-08 16:03:42 -0800413 ctor public PxSquared();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700414 method @androidx.compose.Stable public operator int compareTo-RjPF0Mw(float p);
415 method @androidx.compose.Stable public static operator int compareTo-RjPF0Mw(float $this, float other);
George Mount842c8c12020-01-08 16:03:42 -0800416 method public static float constructor-impl(float value);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700417 method @androidx.compose.Stable public static inline operator float div-RjPF0Mw(float $this, float other);
418 method @androidx.compose.Stable public static inline operator float div-bji3ab4(float $this, float other);
419 method @androidx.compose.Stable public static inline operator float div-impl(float $this, float other);
420 method @androidx.compose.Immutable public static inline boolean equals-impl(float p, Object? p1);
George Mount842c8c12020-01-08 16:03:42 -0800421 method public static boolean equals-impl0(float p1, float p2);
422 method public float getValue();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700423 method @androidx.compose.Immutable public static inline int hashCode-impl(float p);
424 method @androidx.compose.Stable public static inline operator float minus-RjPF0Mw(float $this, float other);
425 method @androidx.compose.Stable public static inline operator float plus-RjPF0Mw(float $this, float other);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700426 method @androidx.compose.Stable public static inline operator float times-impl(float $this, float other);
427 method @androidx.compose.Stable public static String toString-impl(float $this);
George Mount842c8c12020-01-08 16:03:42 -0800428 }
429
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700430 @androidx.compose.Immutable public final inline class TextUnit {
Mads Agerba4927c2020-04-08 13:34:14 +0200431 ctor public TextUnit();
432 method public static inline operator int compareTo-vVlMl6k(long $this, long other);
433 method public static long constructor-impl(long packedValue);
434 method public static inline operator long div-impl(long $this, float other);
435 method public static inline operator long div-impl(long $this, double other);
436 method public static inline operator long div-impl(long $this, int other);
437 method public static inline operator float div-vVlMl6k(long $this, long other);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700438 method @androidx.compose.Immutable public static inline boolean equals-impl(long p, Object? p1);
Mads Agerba4927c2020-04-08 13:34:14 +0200439 method public static boolean equals-impl0(long p1, long p2);
George Mount842c8c12020-01-08 16:03:42 -0800440 method public long getPackedValue();
Mads Agerba4927c2020-04-08 13:34:14 +0200441 method public static androidx.ui.unit.TextUnitType getType-impl(long $this);
442 method public static float getValue-impl(long $this);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700443 method @androidx.compose.Immutable public static inline int hashCode-impl(long p);
Mads Agerba4927c2020-04-08 13:34:14 +0200444 method public static boolean isEm-impl(long $this);
445 method public static boolean isInherit-impl(long $this);
446 method public static boolean isSp-impl(long $this);
447 method public static inline operator long minus-vVlMl6k(long $this, long other);
448 method public static inline operator long plus-vVlMl6k(long $this, long other);
449 method public static inline operator long times-impl(long $this, float other);
450 method public static inline operator long times-impl(long $this, double other);
451 method public static inline operator long times-impl(long $this, int other);
452 method public static String toString-impl(long $this);
453 method public static inline operator long unaryMinus-impl(long $this);
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700454 field public static final androidx.ui.unit.TextUnit.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800455 }
456
457 public static final class TextUnit.Companion {
Mads Agerba4927c2020-04-08 13:34:14 +0200458 method public long Em(int value);
459 method public long Em(float value);
460 method public long Em(double value);
461 method public long Sp(int value);
462 method public long Sp(float value);
463 method public long Sp(double value);
464 method public long getInherit();
465 property public final long Inherit;
George Mount842c8c12020-01-08 16:03:42 -0800466 }
467
468 public final class TextUnitKt {
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700469 method @androidx.compose.Stable public static inline long coerceAtLeast-gL_aCS0(long, long minimumValue);
470 method @androidx.compose.Stable public static inline long coerceAtMost-gL_aCS0(long, long maximumValue);
471 method @androidx.compose.Stable public static inline long coerceIn-Y2exRck(long, long minimumValue, long maximumValue);
Mads Agerba4927c2020-04-08 13:34:14 +0200472 method public static long getEm(float);
473 method public static long getEm(double);
474 method public static long getEm(int);
475 method public static long getSp(float);
476 method public static long getSp(double);
477 method public static long getSp(int);
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700478 method @androidx.compose.Stable public static long lerp-SpZbbpo(long a, long b, float t);
479 method @androidx.compose.Stable public static inline long max-gL_aCS0(long a, long b);
480 method @androidx.compose.Stable public static inline long min-gL_aCS0(long a, long b);
481 method @androidx.compose.Stable public static inline operator long times-GncdoDw(double, long other);
482 method @androidx.compose.Stable public static inline operator long times-MVx5XBU(float, long other);
483 method @androidx.compose.Stable public static inline operator long times-UlzjdM0(int, long other);
George Mount842c8c12020-01-08 16:03:42 -0800484 }
485
486 public enum TextUnitType {
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700487 method public static androidx.ui.unit.TextUnitType valueOf(String name) throws java.lang.IllegalArgumentException;
488 method public static androidx.ui.unit.TextUnitType[] values();
George Mount842c8c12020-01-08 16:03:42 -0800489 enum_constant public static final androidx.ui.unit.TextUnitType Em;
490 enum_constant public static final androidx.ui.unit.TextUnitType Inherit;
491 enum_constant public static final androidx.ui.unit.TextUnitType Sp;
492 }
493
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700494 @androidx.compose.Immutable public final class Uptime implements java.lang.Comparable<androidx.ui.unit.Uptime> {
George Mount842c8c12020-01-08 16:03:42 -0800495 ctor public Uptime(long nanoseconds);
496 method public int compareTo(androidx.ui.unit.Uptime other);
497 method public long component1();
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700498 method @androidx.compose.Immutable public androidx.ui.unit.Uptime copy(long nanoseconds);
George Mount842c8c12020-01-08 16:03:42 -0800499 method public long getNanoseconds();
500 method public operator androidx.ui.unit.Uptime minus(androidx.ui.unit.Duration duration);
501 method public operator androidx.ui.unit.Duration minus(androidx.ui.unit.Uptime other);
502 method public operator androidx.ui.unit.Uptime plus(androidx.ui.unit.Duration duration);
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700503 field public static final androidx.ui.unit.Uptime.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800504 }
505
506 public static final class Uptime.Companion {
507 method public androidx.ui.unit.Uptime getBoot();
508 property public final androidx.ui.unit.Uptime Boot;
509 }
510
511 public final class UptimeKt {
512 method public static operator androidx.ui.unit.Uptime plus(androidx.ui.unit.Duration, androidx.ui.unit.Uptime uptime);
513 }
514
Aurimas Liutikas3ec16722020-05-27 13:08:04 -0700515 @androidx.compose.Immutable public final class Velocity {
Nader Jawad6df06122020-06-03 15:27:08 -0700516 ctor public Velocity(androidx.ui.geometry.Offset pixelsPerSecond);
517 method public androidx.ui.geometry.Offset component1();
518 method @androidx.compose.Immutable public androidx.ui.unit.Velocity copy(androidx.ui.geometry.Offset pixelsPerSecond);
519 method public androidx.ui.geometry.Offset getPixelsPerSecond();
George Mount842c8c12020-01-08 16:03:42 -0800520 method public operator androidx.ui.unit.Velocity unaryMinus();
Aurimas Liutikasafd4a792020-06-22 13:35:25 -0700521 field public static final androidx.ui.unit.Velocity.Companion Companion;
George Mount842c8c12020-01-08 16:03:42 -0800522 }
523
524 public static final class Velocity.Companion {
525 method public androidx.ui.unit.Velocity getZero();
526 property public final androidx.ui.unit.Velocity Zero;
527 }
528
529 public final class VelocityKt {
530 method public static operator androidx.ui.unit.Velocity minus(androidx.ui.unit.Velocity, androidx.ui.unit.Velocity other);
531 method public static operator androidx.ui.unit.Velocity plus(androidx.ui.unit.Velocity, androidx.ui.unit.Velocity other);
532 }
533
534}
535