-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathPublicAPI.Unshipped.txt
More file actions
1366 lines (1366 loc) · 145 KB
/
Copy pathPublicAPI.Unshipped.txt
File metadata and controls
1366 lines (1366 loc) · 145 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#nullable enable
AndroidX.Compose.UI.Text.ActualAtomicReferenceJvm_jvmAndAndroidKt
AndroidX.Compose.UI.Text.Android.IInternalPlatformTextApi
AndroidX.Compose.UI.Text.Android.InlineClassUtils_androidKt
AndroidX.Compose.UI.Text.Android.InternalPlatformTextApiAttribute
AndroidX.Compose.UI.Text.Android.InternalPlatformTextApiAttribute.InternalPlatformTextApiAttribute() -> void
AndroidX.Compose.UI.Text.Android.LayoutCompat_androidKt
AndroidX.Compose.UI.Text.Android.LayoutHelper_androidKt
AndroidX.Compose.UI.Text.Android.LayoutIntrinsics_androidKt
AndroidX.Compose.UI.Text.Android.ListUtils_androidKt
AndroidX.Compose.UI.Text.Android.PaintExtensions_androidKt
AndroidX.Compose.UI.Text.Android.Selection.SegmentFinder_androidKt
AndroidX.Compose.UI.Text.Android.Selection.WordBoundary_androidKt
AndroidX.Compose.UI.Text.Android.SpannedExtensions_androidKt
AndroidX.Compose.UI.Text.Android.StaticLayoutFactory
AndroidX.Compose.UI.Text.Android.StaticLayoutFactory.Create(Java.Lang.ICharSequence! text, Android.Text.TextPaint! paint, int width, int start, int end, Android.Text.ITextDirectionHeuristic! textDir, Android.Text.Layout.Alignment! alignment, int maxLines, Android.Text.TextUtils.TruncateAt? ellipsize, int ellipsizedWidth, float lineSpacingMultiplier, float lineSpacingExtra, int justificationMode, bool includePadding, bool useFallbackLineSpacing, int breakStrategy, int lineBreakStyle, int lineBreakWordStyle, int hyphenationFrequency, int[]? leftIndents, int[]? rightIndents) -> Android.Text.StaticLayout!
AndroidX.Compose.UI.Text.Android.StaticLayoutFactory.Create(string! text, Android.Text.TextPaint! paint, int width, int start, int end, Android.Text.ITextDirectionHeuristic! textDir, Android.Text.Layout.Alignment! alignment, int maxLines, Android.Text.TextUtils.TruncateAt? ellipsize, int ellipsizedWidth, float lineSpacingMultiplier, float lineSpacingExtra, int justificationMode, bool includePadding, bool useFallbackLineSpacing, int breakStrategy, int lineBreakStyle, int lineBreakWordStyle, int hyphenationFrequency, int[]? leftIndents, int[]? rightIndents) -> Android.Text.StaticLayout!
AndroidX.Compose.UI.Text.Android.StaticLayoutFactory.IsFallbackLineSpacingEnabled(Android.Text.StaticLayout! layout, bool useFallbackLineSpacing) -> bool
AndroidX.Compose.UI.Text.Android.StaticLayoutFactory_androidKt
AndroidX.Compose.UI.Text.Android.Style.IndentationFixSpan_androidKt
AndroidX.Compose.UI.Text.Android.Style.IndentationFixSpan_androidKt.WhenMappings
AndroidX.Compose.UI.Text.Android.Style.LineHeightStyleSpan_androidKt
AndroidX.Compose.UI.Text.Android.Style.PlaceholderSpan_androidKt
AndroidX.Compose.UI.Text.Android.TextLayoutGetRangeForRectExtensions_androidKt
AndroidX.Compose.UI.Text.Android.TextLayout_androidKt
AndroidX.Compose.UI.Text.AndroidParagraph_androidKt
AndroidX.Compose.UI.Text.AndroidTextStyle_androidKt
AndroidX.Compose.UI.Text.AnnotatedString
AndroidX.Compose.UI.Text.AnnotatedString.AnnotatedString(string! text, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! annotations) -> void
AndroidX.Compose.UI.Text.AnnotatedString.AnnotatedString(string! text, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! spanStyles, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! paragraphStyles) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddBullet(AndroidX.Compose.UI.Text.Bullet! bullet, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddBullet_r9BaKPg(AndroidX.Compose.UI.Text.Bullet! bullet, long indentation, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddLink(AndroidX.Compose.UI.Text.LinkAnnotation.Clickable! clickable, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddLink(AndroidX.Compose.UI.Text.LinkAnnotation.Url! url, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddStringAnnotation(string! tag, string! annotation, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddStyle(AndroidX.Compose.UI.Text.ParagraphStyle! style, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddStyle(AndroidX.Compose.UI.Text.SpanStyle! style, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddTtsAnnotation(AndroidX.Compose.UI.Text.TtsAnnotation! ttsAnnotation, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AddUrlAnnotation(AndroidX.Compose.UI.Text.UrlAnnotation! urlAnnotation, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(AndroidX.Compose.UI.Text.AnnotatedString! text) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(AndroidX.Compose.UI.Text.AnnotatedString! text, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(Java.Lang.ICharSequence? text) -> AndroidX.Compose.UI.Text.AnnotatedString.Builder!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(Java.Lang.ICharSequence? text, int start, int end) -> AndroidX.Compose.UI.Text.AnnotatedString.Builder!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(char char) -> AndroidX.Compose.UI.Text.AnnotatedString.Builder!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(string? text) -> AndroidX.Compose.UI.Text.AnnotatedString.Builder!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Append(string? text, int start, int end) -> AndroidX.Compose.UI.Text.AnnotatedString.Builder!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.AppendString(string! text) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Builder() -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Builder(AndroidX.Compose.UI.Text.AnnotatedString! text) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Builder(int capacity) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Builder(string! text) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.BulletScope
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Length.get -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Pop() -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.Pop(int index) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushBullet(AndroidX.Compose.UI.Text.Bullet! bullet) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushLink(AndroidX.Compose.UI.Text.LinkAnnotation! link) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushStringAnnotation(string! tag, string! annotation) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushStyle(AndroidX.Compose.UI.Text.ParagraphStyle! style) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushStyle(AndroidX.Compose.UI.Text.SpanStyle! style) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushTtsAnnotation(AndroidX.Compose.UI.Text.TtsAnnotation! ttsAnnotation) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.PushUrlAnnotation(AndroidX.Compose.UI.Text.UrlAnnotation! urlAnnotation) -> int
AndroidX.Compose.UI.Text.AnnotatedString.Builder.ToAnnotatedString() -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.WithBulletListItem(AndroidX.Compose.UI.Text.AnnotatedString.Builder.BulletScope! _this_withBulletListItem, AndroidX.Compose.UI.Text.Bullet? bullet, Kotlin.Jvm.Functions.IFunction1! block) -> Java.Lang.Object!
AndroidX.Compose.UI.Text.AnnotatedString.Builder.WithBulletList_o2QH7mI(long indentation, AndroidX.Compose.UI.Text.Bullet! bullet, Kotlin.Jvm.Functions.IFunction1! block) -> Java.Lang.Object!
AndroidX.Compose.UI.Text.AnnotatedString.CharAt(int index) -> char
AndroidX.Compose.UI.Text.AnnotatedString.CompanionStatic
AndroidX.Compose.UI.Text.AnnotatedString.FlatMapAnnotations(Kotlin.Jvm.Functions.IFunction1! transform) -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.Get(int index) -> char
AndroidX.Compose.UI.Text.AnnotatedString.GetLinkAnnotations(int start, int end) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.GetStringAnnotations(int start, int end) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.GetStringAnnotations(string! tag, int start, int end) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.GetTtsAnnotations(int start, int end) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.GetUrlAnnotations(int start, int end) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.HasEqualAnnotations(AndroidX.Compose.UI.Text.AnnotatedString! other) -> bool
AndroidX.Compose.UI.Text.AnnotatedString.HasLinkAnnotations(int start, int end) -> bool
AndroidX.Compose.UI.Text.AnnotatedString.HasStringAnnotations(string! tag, int start, int end) -> bool
AndroidX.Compose.UI.Text.AnnotatedString.IAnnotation
AndroidX.Compose.UI.Text.AnnotatedString.InvokeLength() -> int
AndroidX.Compose.UI.Text.AnnotatedString.Length.get -> int
AndroidX.Compose.UI.Text.AnnotatedString.MapAnnotations(Kotlin.Jvm.Functions.IFunction1! transform) -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.ParagraphStyles.get -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.Plus(AndroidX.Compose.UI.Text.AnnotatedString! other) -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.Range
AndroidX.Compose.UI.Text.AnnotatedString.Range.Component1() -> Java.Lang.Object?
AndroidX.Compose.UI.Text.AnnotatedString.Range.Component2() -> int
AndroidX.Compose.UI.Text.AnnotatedString.Range.Component3() -> int
AndroidX.Compose.UI.Text.AnnotatedString.Range.Component4() -> string!
AndroidX.Compose.UI.Text.AnnotatedString.Range.Copy(Java.Lang.Object? item, int start, int end, string! tag) -> AndroidX.Compose.UI.Text.AnnotatedString.Range!
AndroidX.Compose.UI.Text.AnnotatedString.Range.End.get -> int
AndroidX.Compose.UI.Text.AnnotatedString.Range.Item.get -> Java.Lang.Object?
AndroidX.Compose.UI.Text.AnnotatedString.Range.Range(Java.Lang.Object? item, int start, int end) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Range.Range(Java.Lang.Object? item, int start, int end, string! tag) -> void
AndroidX.Compose.UI.Text.AnnotatedString.Range.Start.get -> int
AndroidX.Compose.UI.Text.AnnotatedString.Range.Tag.get -> string!
AndroidX.Compose.UI.Text.AnnotatedString.SpanStyles.get -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.AnnotatedString.SubSequence(int startIndex, int endIndex) -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.SubSequence(long range) -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.AnnotatedString.Text.get -> string!
AndroidX.Compose.UI.Text.AnnotatedStringKt
AndroidX.Compose.UI.Text.Bullet
AndroidX.Compose.UI.Text.Bullet.Alpha.get -> float
AndroidX.Compose.UI.Text.Bullet.Brush.get -> AndroidX.Compose.UI.Graphics.Brush?
AndroidX.Compose.UI.Text.Bullet.CompanionStatic
AndroidX.Compose.UI.Text.Bullet.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.Bullet!
AndroidX.Compose.UI.Text.Bullet.CompanionStatic.DefaultIndentation_XSAIIZE.get -> long
AndroidX.Compose.UI.Text.Bullet.CompanionStatic.DefaultPadding_XSAIIZE.get -> long
AndroidX.Compose.UI.Text.Bullet.CompanionStatic.DefaultSize_XSAIIZE.get -> long
AndroidX.Compose.UI.Text.Bullet.Copy(AndroidX.Compose.UI.Graphics.IShape! shape, long width, long height, long padding, AndroidX.Compose.UI.Graphics.Brush? brush, float alpha, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle! drawStyle) -> AndroidX.Compose.UI.Text.Bullet!
AndroidX.Compose.UI.Text.Bullet.DrawStyle.get -> AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle!
AndroidX.Compose.UI.Text.Bullet.Height.get -> long
AndroidX.Compose.UI.Text.Bullet.Padding.get -> long
AndroidX.Compose.UI.Text.Bullet.Shape.get -> AndroidX.Compose.UI.Graphics.IShape!
AndroidX.Compose.UI.Text.Bullet.Width.get -> long
AndroidX.Compose.UI.Text.CharHelpers_androidKt
AndroidX.Compose.UI.Text.ComposeUiTextFlags
AndroidX.Compose.UI.Text.EmojiSupportMatch
AndroidX.Compose.UI.Text.EmojiSupportMatch.CompanionStatic
AndroidX.Compose.UI.Text.EmojiSupportMatch.CompanionStatic.All__3YsG6Y.get -> int
AndroidX.Compose.UI.Text.EmojiSupportMatch.CompanionStatic.Default__3YsG6Y.get -> int
AndroidX.Compose.UI.Text.EmojiSupportMatch.CompanionStatic.None__3YsG6Y.get -> int
AndroidX.Compose.UI.Text.ExperimentalTextApiAttribute
AndroidX.Compose.UI.Text.ExperimentalTextApiAttribute.ExperimentalTextApiAttribute() -> void
AndroidX.Compose.UI.Text.Font.AndroidFont
AndroidX.Compose.UI.Text.Font.AndroidFont.AndroidFont(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.Font.AndroidFont.ITypefaceLoader
AndroidX.Compose.UI.Text.Font.AndroidFont.ITypefaceLoader.AwaitLoad(Android.Content.Context! context, AndroidX.Compose.UI.Text.Font.AndroidFont! font, Kotlin.Coroutines.IContinuation! p2) -> Java.Lang.Object?
AndroidX.Compose.UI.Text.Font.AndroidFont.ITypefaceLoader.LoadBlocking(Android.Content.Context! context, AndroidX.Compose.UI.Text.Font.AndroidFont! font) -> Android.Graphics.Typeface?
AndroidX.Compose.UI.Text.Font.AndroidFont.InterfaceConsts
AndroidX.Compose.UI.Text.Font.AndroidFont.LoadingStrategy.get -> int
AndroidX.Compose.UI.Text.Font.AndroidFont.TypefaceLoader.get -> AndroidX.Compose.UI.Text.Font.AndroidFont.ITypefaceLoader!
AndroidX.Compose.UI.Text.Font.AndroidFont.VariationSettings.get -> AndroidX.Compose.UI.Text.Font.FontVariation.Settings!
AndroidX.Compose.UI.Text.Font.AndroidFontKt
AndroidX.Compose.UI.Text.Font.AndroidFontLoader_androidKt
AndroidX.Compose.UI.Text.Font.AndroidFontResolveInterceptor_androidKt
AndroidX.Compose.UI.Text.Font.AndroidFontUtils_androidKt
AndroidX.Compose.UI.Text.Font.AndroidTypeface_androidKt
AndroidX.Compose.UI.Text.Font.DelegatingFontLoaderForDeprecatedUsage_androidKt
AndroidX.Compose.UI.Text.Font.DeviceFontFamilyName
AndroidX.Compose.UI.Text.Font.DeviceFontFamilyName.Name.get -> string!
AndroidX.Compose.UI.Text.Font.DeviceFontFamilyNameFontKt
AndroidX.Compose.UI.Text.Font.FileBasedFontFamily
AndroidX.Compose.UI.Text.Font.FileBasedFontFamily.FileBasedFontFamily(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.Font.Font
AndroidX.Compose.UI.Text.Font.FontCompanionStatic
AndroidX.Compose.UI.Text.Font.FontConsts
AndroidX.Compose.UI.Text.Font.FontFamily
AndroidX.Compose.UI.Text.Font.FontFamily.CanLoadSynchronously.get -> bool
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic.Cursive.get -> AndroidX.Compose.UI.Text.Font.GenericFontFamily!
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.Font.SystemFontFamily!
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic.Monospace.get -> AndroidX.Compose.UI.Text.Font.GenericFontFamily!
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic.SansSerif.get -> AndroidX.Compose.UI.Text.Font.GenericFontFamily!
AndroidX.Compose.UI.Text.Font.FontFamily.CompanionStatic.Serif.get -> AndroidX.Compose.UI.Text.Font.GenericFontFamily!
AndroidX.Compose.UI.Text.Font.FontFamily.FontFamily(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.Font.FontFamily.IResolver
AndroidX.Compose.UI.Text.Font.FontFamily.IResolver.Preload(AndroidX.Compose.UI.Text.Font.FontFamily! fontFamily, Kotlin.Coroutines.IContinuation! p1) -> Java.Lang.Object?
AndroidX.Compose.UI.Text.Font.FontFamily.IResolver.Resolve_DPcqOEQ(AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, AndroidX.Compose.UI.Text.Font.FontWeight! fontWeight, int p2, int p3) -> AndroidX.Compose.Runtime.IState!
AndroidX.Compose.UI.Text.Font.FontFamilyKt
AndroidX.Compose.UI.Text.Font.FontFamilyResolverKt
AndroidX.Compose.UI.Text.Font.FontFamilyResolver_androidKt
AndroidX.Compose.UI.Text.Font.FontKt
AndroidX.Compose.UI.Text.Font.FontListFontFamily
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Add(AndroidX.Compose.UI.Text.Font.IFont? element) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Add(int index, AndroidX.Compose.UI.Text.Font.IFont? element) -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.AddAll(System.Collections.Generic.ICollection<AndroidX.Compose.UI.Text.Font.IFont!>? elements) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.AddAll(int index, System.Collections.Generic.ICollection<AndroidX.Compose.UI.Text.Font.IFont!>? elements) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.AddFirst(AndroidX.Compose.UI.Text.Font.IFont? p0) -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.AddLast(AndroidX.Compose.UI.Text.Font.IFont? p0) -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Clear() -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Contains(AndroidX.Compose.UI.Text.Font.IFont! element) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Contains(Java.Lang.Object? element) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ContainsAll(System.Collections.Generic.ICollection<object!>! elements) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Fonts.get -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Font.IFont!>!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Get(int index) -> AndroidX.Compose.UI.Text.Font.IFont!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.IndexOf(AndroidX.Compose.UI.Text.Font.IFont! element) -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.IndexOf(Java.Lang.Object? element) -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.InvokeSize() -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.IsEmpty.get -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Iterator() -> Java.Util.IIterator!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.LastIndexOf(AndroidX.Compose.UI.Text.Font.IFont! element) -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.LastIndexOf(Java.Lang.Object? element) -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ListIterator() -> Java.Util.IListIterator!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ListIterator(int index) -> Java.Util.IListIterator!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Remove(Java.Lang.Object? element) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Remove(int index) -> AndroidX.Compose.UI.Text.Font.IFont?
AndroidX.Compose.UI.Text.Font.FontListFontFamily.RemoveAll(System.Collections.Generic.ICollection<object!>? elements) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.RemoveFirst() -> AndroidX.Compose.UI.Text.Font.IFont?
AndroidX.Compose.UI.Text.Font.FontListFontFamily.RemoveLast() -> AndroidX.Compose.UI.Text.Font.IFont?
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ReplaceAll(Java.Util.Functions.IUnaryOperator? p0) -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.RetainAll(System.Collections.Generic.ICollection<object!>? elements) -> bool
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Set(int index, AndroidX.Compose.UI.Text.Font.IFont? element) -> AndroidX.Compose.UI.Text.Font.IFont?
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Size.get -> int
AndroidX.Compose.UI.Text.Font.FontListFontFamily.Sort(Java.Util.IComparator? p0) -> void
AndroidX.Compose.UI.Text.Font.FontListFontFamily.SubList(int fromIndex, int toIndex) -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Font.IFont!>!
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ToArray() -> Java.Lang.Object![]?
AndroidX.Compose.UI.Text.Font.FontListFontFamily.ToArray(Java.Lang.Object![]? array) -> Java.Lang.Object![]?
AndroidX.Compose.UI.Text.Font.FontListFontFamilyTypefaceAdapterKt
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy.CompanionStatic
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy.CompanionStatic.Async_PKNRLFQ.get -> int
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy.CompanionStatic.Blocking_PKNRLFQ.get -> int
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy.CompanionStatic.OptionalLocal_PKNRLFQ.get -> int
AndroidX.Compose.UI.Text.Font.FontLoadingStrategy.Value.get -> int
AndroidX.Compose.UI.Text.Font.FontStyle
AndroidX.Compose.UI.Text.Font.FontStyle.CompanionStatic
AndroidX.Compose.UI.Text.Font.FontStyle.CompanionStatic.Italic___LCdwA.get -> int
AndroidX.Compose.UI.Text.Font.FontStyle.CompanionStatic.Normal___LCdwA.get -> int
AndroidX.Compose.UI.Text.Font.FontStyle.CompanionStatic.Values() -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Font.FontStyle!>!
AndroidX.Compose.UI.Text.Font.FontStyle.Value.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic.All_GVVA2EU.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic.None_GVVA2EU.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic.Style_GVVA2EU.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic.ValueOf_9CiegCU(int value) -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis.CompanionStatic.Weight_GVVA2EU.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesis.Value.get -> int
AndroidX.Compose.UI.Text.Font.FontSynthesisKt
AndroidX.Compose.UI.Text.Font.FontSynthesis_androidKt
AndroidX.Compose.UI.Text.Font.FontVariation
AndroidX.Compose.UI.Text.Font.FontVariation.Grade(int value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.ISetting
AndroidX.Compose.UI.Text.Font.FontVariation.ISetting.AxisName.get -> string!
AndroidX.Compose.UI.Text.Font.FontVariation.ISetting.NeedsDensity.get -> bool
AndroidX.Compose.UI.Text.Font.FontVariation.ISetting.ToVariationValue(AndroidX.Compose.UI.Unit.IDensity? density) -> float
AndroidX.Compose.UI.Text.Font.FontVariation.InvokeSettings(AndroidX.Compose.UI.Text.Font.FontWeight! weight, int style, params AndroidX.Compose.UI.Text.Font.FontVariation.ISetting![]! settings) -> AndroidX.Compose.UI.Text.Font.FontVariation.Settings!
AndroidX.Compose.UI.Text.Font.FontVariation.Italic(float value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.OpticalSizing(long textSize) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.Setting(string! name, float value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.Settings
AndroidX.Compose.UI.Text.Font.FontVariation.Settings.GetSettings() -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!>!
AndroidX.Compose.UI.Text.Font.FontVariation.Settings.Settings(params AndroidX.Compose.UI.Text.Font.FontVariation.ISetting![]! settings) -> void
AndroidX.Compose.UI.Text.Font.FontVariation.Slant(float value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.Weight(int value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontVariation.Width(float value) -> AndroidX.Compose.UI.Text.Font.FontVariation.ISetting!
AndroidX.Compose.UI.Text.Font.FontWeight
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Black.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Bold.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.ExtraBold.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.ExtraLight.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Light.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Medium.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Normal.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.SemiBold.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.Thin.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W100.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W200.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W300.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W400.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W500.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W600.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W700.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W800.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompanionStatic.W900.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.FontWeight.CompareTo(AndroidX.Compose.UI.Text.Font.FontWeight! other) -> int
AndroidX.Compose.UI.Text.Font.FontWeight.FontWeight(int weight) -> void
AndroidX.Compose.UI.Text.Font.FontWeight.Weight.get -> int
AndroidX.Compose.UI.Text.Font.FontWeightKt
AndroidX.Compose.UI.Text.Font.GenericFontFamily
AndroidX.Compose.UI.Text.Font.GenericFontFamily.Name.get -> string!
AndroidX.Compose.UI.Text.Font.IFont
AndroidX.Compose.UI.Text.Font.IFont.Companion.get -> AndroidX.Compose.UI.Text.Font.FontCompanionStatic!
AndroidX.Compose.UI.Text.Font.IFont.LoadingStrategy.get -> int
AndroidX.Compose.UI.Text.Font.IFont.Style.get -> int
AndroidX.Compose.UI.Text.Font.IFont.Weight.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.IFontResourceLoader
AndroidX.Compose.UI.Text.Font.IFontResourceLoader.Load(AndroidX.Compose.UI.Text.Font.IFont! font) -> Java.Lang.Object!
AndroidX.Compose.UI.Text.Font.ITypeface
AndroidX.Compose.UI.Text.Font.ITypeface.FontFamily.get -> AndroidX.Compose.UI.Text.Font.FontFamily?
AndroidX.Compose.UI.Text.Font.LoadedFontFamily
AndroidX.Compose.UI.Text.Font.LoadedFontFamily.Typeface.get -> AndroidX.Compose.UI.Text.Font.ITypeface!
AndroidX.Compose.UI.Text.Font.PlatformFontVariationSettings_androidKt
AndroidX.Compose.UI.Text.Font.PlatformTypefaces_androidKt
AndroidX.Compose.UI.Text.Font.ResourceFont
AndroidX.Compose.UI.Text.Font.ResourceFont.Copy(int resId, AndroidX.Compose.UI.Text.Font.FontWeight! weight, int style) -> AndroidX.Compose.UI.Text.Font.ResourceFont!
AndroidX.Compose.UI.Text.Font.ResourceFont.Copy(int resId, AndroidX.Compose.UI.Text.Font.FontWeight! weight, int style, int loadingStrategy, AndroidX.Compose.UI.Text.Font.FontVariation.Settings! variationSettings) -> AndroidX.Compose.UI.Text.Font.ResourceFont!
AndroidX.Compose.UI.Text.Font.ResourceFont.InterfaceConsts
AndroidX.Compose.UI.Text.Font.ResourceFont.LoadingStrategy.get -> int
AndroidX.Compose.UI.Text.Font.ResourceFont.ResId.get -> int
AndroidX.Compose.UI.Text.Font.ResourceFont.Style.get -> int
AndroidX.Compose.UI.Text.Font.ResourceFont.VariationSettings.get -> AndroidX.Compose.UI.Text.Font.FontVariation.Settings!
AndroidX.Compose.UI.Text.Font.ResourceFont.Weight.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
AndroidX.Compose.UI.Text.Font.SystemFontFamily
AndroidX.Compose.UI.Text.Font.SystemFontFamily.SystemFontFamily(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.Html_androidKt
AndroidX.Compose.UI.Text.Html_androidKt.WhenMappings
AndroidX.Compose.UI.Text.IExperimentalTextApi
AndroidX.Compose.UI.Text.IInternalTextApi
AndroidX.Compose.UI.Text.ILinkInteractionListener
AndroidX.Compose.UI.Text.ILinkInteractionListener.OnClick(AndroidX.Compose.UI.Text.LinkAnnotation! link) -> void
AndroidX.Compose.UI.Text.IParagraph
AndroidX.Compose.UI.Text.IParagraph.DidExceedMaxLines.get -> bool
AndroidX.Compose.UI.Text.IParagraph.FillBoundingBoxes(long p0, float[]! array, int arrayStart) -> void
AndroidX.Compose.UI.Text.IParagraph.FirstBaseline.get -> float
AndroidX.Compose.UI.Text.IParagraph.GetBidiRunDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.IParagraph.GetHorizontalPosition(int offset, bool usePrimaryDirection) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineBaseline(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineBottom(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineEnd(int lineIndex, bool visibleEnd) -> int
AndroidX.Compose.UI.Text.IParagraph.GetLineForOffset(int offset) -> int
AndroidX.Compose.UI.Text.IParagraph.GetLineForVerticalPosition(float vertical) -> int
AndroidX.Compose.UI.Text.IParagraph.GetLineHeight(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineLeft(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineRight(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineStart(int lineIndex) -> int
AndroidX.Compose.UI.Text.IParagraph.GetLineTop(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetLineWidth(int lineIndex) -> float
AndroidX.Compose.UI.Text.IParagraph.GetOffsetForPosition(long p0) -> int
AndroidX.Compose.UI.Text.IParagraph.GetParagraphDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.IParagraph.GetPathForRange(int start, int end) -> AndroidX.Compose.UI.Graphics.IPath!
AndroidX.Compose.UI.Text.IParagraph.GetWordBoundary(int offset) -> long
AndroidX.Compose.UI.Text.IParagraph.Height.get -> float
AndroidX.Compose.UI.Text.IParagraph.IsLineEllipsized(int lineIndex) -> bool
AndroidX.Compose.UI.Text.IParagraph.LastBaseline.get -> float
AndroidX.Compose.UI.Text.IParagraph.LineCount.get -> int
AndroidX.Compose.UI.Text.IParagraph.MaxIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.IParagraph.MinIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.IParagraph.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, AndroidX.Compose.UI.Graphics.Brush! brush, float alpha, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int p6) -> void
AndroidX.Compose.UI.Text.IParagraph.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, long p1, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration) -> void
AndroidX.Compose.UI.Text.IParagraph.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, long p1, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int p5) -> void
AndroidX.Compose.UI.Text.IParagraph.Width.get -> float
AndroidX.Compose.UI.Text.IParagraphIntrinsics
AndroidX.Compose.UI.Text.IParagraphIntrinsics.HasStaleResolvedFonts.get -> bool
AndroidX.Compose.UI.Text.IParagraphIntrinsics.MaxIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.IParagraphIntrinsics.MinIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.ITextInclusionStrategy
AndroidX.Compose.UI.Text.ITextInclusionStrategy.Companion.get -> AndroidX.Compose.UI.Text.TextInclusionStrategyCompanionStatic!
AndroidX.Compose.UI.Text.Input.BackspaceCommand
AndroidX.Compose.UI.Text.Input.BackspaceCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.BackspaceCommand.BackspaceCommand() -> void
AndroidX.Compose.UI.Text.Input.CommitTextCommand
AndroidX.Compose.UI.Text.Input.CommitTextCommand.AnnotatedString.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.Input.CommitTextCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.CommitTextCommand.CommitTextCommand(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, int newCursorPosition) -> void
AndroidX.Compose.UI.Text.Input.CommitTextCommand.CommitTextCommand(string! text, int newCursorPosition) -> void
AndroidX.Compose.UI.Text.Input.CommitTextCommand.NewCursorPosition.get -> int
AndroidX.Compose.UI.Text.Input.CommitTextCommand.Text.get -> string!
AndroidX.Compose.UI.Text.Input.DeleteAllCommand
AndroidX.Compose.UI.Text.Input.DeleteAllCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.DeleteAllCommand.DeleteAllCommand() -> void
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextCommand
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextCommand.DeleteSurroundingTextCommand(int lengthBeforeCursor, int lengthAfterCursor) -> void
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextCommand.LengthAfterCursor.get -> int
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextCommand.LengthBeforeCursor.get -> int
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextInCodePointsCommand
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextInCodePointsCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextInCodePointsCommand.DeleteSurroundingTextInCodePointsCommand(int lengthBeforeCursor, int lengthAfterCursor) -> void
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextInCodePointsCommand.LengthAfterCursor.get -> int
AndroidX.Compose.UI.Text.Input.DeleteSurroundingTextInCodePointsCommand.LengthBeforeCursor.get -> int
AndroidX.Compose.UI.Text.Input.EditCommandKt
AndroidX.Compose.UI.Text.Input.EditProcessor
AndroidX.Compose.UI.Text.Input.EditProcessor.Apply(System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Input.IEditCommand!>! editCommands) -> AndroidX.Compose.UI.Text.Input.TextFieldValue!
AndroidX.Compose.UI.Text.Input.EditProcessor.EditProcessor() -> void
AndroidX.Compose.UI.Text.Input.EditProcessor.Reset(AndroidX.Compose.UI.Text.Input.TextFieldValue! value, AndroidX.Compose.UI.Text.Input.TextInputSession? textInputSession) -> void
AndroidX.Compose.UI.Text.Input.EditProcessor.ToTextFieldValue() -> AndroidX.Compose.UI.Text.Input.TextFieldValue!
AndroidX.Compose.UI.Text.Input.EditingBuffer
AndroidX.Compose.UI.Text.Input.EditingBufferKt
AndroidX.Compose.UI.Text.Input.FinishComposingTextCommand
AndroidX.Compose.UI.Text.Input.FinishComposingTextCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.FinishComposingTextCommand.FinishComposingTextCommand() -> void
AndroidX.Compose.UI.Text.Input.GapBufferKt
AndroidX.Compose.UI.Text.Input.GapBuffer_jvmAndAndroidKt
AndroidX.Compose.UI.Text.Input.IEditCommand
AndroidX.Compose.UI.Text.Input.IEditCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.IInputEventCallback
AndroidX.Compose.UI.Text.Input.IInputEventCallback.OnEditCommands(System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Input.IEditCommand!>! editCommands) -> void
AndroidX.Compose.UI.Text.Input.IInputEventCallback.OnImeAction(int p0) -> void
AndroidX.Compose.UI.Text.Input.IOffsetMapping
AndroidX.Compose.UI.Text.Input.IOffsetMapping.Companion.get -> AndroidX.Compose.UI.Text.Input.OffsetMappingCompanionStatic!
AndroidX.Compose.UI.Text.Input.IOffsetMapping.OriginalToTransformed(int offset) -> int
AndroidX.Compose.UI.Text.Input.IOffsetMapping.TransformedToOriginal(int offset) -> int
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.HideSoftwareKeyboard() -> void
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.ShowSoftwareKeyboard() -> void
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.StartInput() -> void
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.StartInput(AndroidX.Compose.UI.Text.Input.TextFieldValue! value, AndroidX.Compose.UI.Text.Input.ImeOptions! imeOptions, Kotlin.Jvm.Functions.IFunction1! onEditCommand, Kotlin.Jvm.Functions.IFunction1! onImeActionPerformed) -> void
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.StopInput() -> void
AndroidX.Compose.UI.Text.Input.IPlatformTextInputService.UpdateState(AndroidX.Compose.UI.Text.Input.TextFieldValue? oldValue, AndroidX.Compose.UI.Text.Input.TextFieldValue! newValue) -> void
AndroidX.Compose.UI.Text.Input.IVisualTransformation
AndroidX.Compose.UI.Text.Input.IVisualTransformation.Companion.get -> AndroidX.Compose.UI.Text.Input.VisualTransformationCompanionStatic!
AndroidX.Compose.UI.Text.Input.IVisualTransformation.Filter(AndroidX.Compose.UI.Text.AnnotatedString! text) -> AndroidX.Compose.UI.Text.Input.TransformedText!
AndroidX.Compose.UI.Text.Input.ImeAction
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Default_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Done_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Go_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Next_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.None_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Previous_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Search_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Send_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeAction.CompanionStatic.Unspecified_eUduSuo.get -> int
AndroidX.Compose.UI.Text.Input.ImeOptions
AndroidX.Compose.UI.Text.Input.ImeOptions.AutoCorrect.get -> bool
AndroidX.Compose.UI.Text.Input.ImeOptions.Capitalization.get -> int
AndroidX.Compose.UI.Text.Input.ImeOptions.CompanionStatic
AndroidX.Compose.UI.Text.Input.ImeOptions.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.Input.ImeOptions!
AndroidX.Compose.UI.Text.Input.ImeOptions.Copy(bool singleLine, int capitalization, bool autoCorrect, int keyboardType, int imeAction, AndroidX.Compose.UI.Text.Input.PlatformImeOptions? platformImeOptions, AndroidX.Compose.UI.Text.Intl.LocaleList! hintLocales) -> AndroidX.Compose.UI.Text.Input.ImeOptions!
AndroidX.Compose.UI.Text.Input.ImeOptions.HintLocales.get -> AndroidX.Compose.UI.Text.Intl.LocaleList!
AndroidX.Compose.UI.Text.Input.ImeOptions.ImeAction.get -> int
AndroidX.Compose.UI.Text.Input.ImeOptions.KeyboardType.get -> int
AndroidX.Compose.UI.Text.Input.ImeOptions.PlatformImeOptions.get -> AndroidX.Compose.UI.Text.Input.PlatformImeOptions?
AndroidX.Compose.UI.Text.Input.ImeOptions.SingleLine.get -> bool
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic.Characters_IUNYP9k.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic.None_IUNYP9k.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic.Sentences_IUNYP9k.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic.Unspecified_IUNYP9k.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardCapitalization.CompanionStatic.Words_IUNYP9k.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Ascii_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Decimal_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Email_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.NumberPassword_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Number_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Password_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Phone_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Text_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Unspecified_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.KeyboardType.CompanionStatic.Uri_PjHm6EE.get -> int
AndroidX.Compose.UI.Text.Input.MathUtilsKt
AndroidX.Compose.UI.Text.Input.MoveCursorCommand
AndroidX.Compose.UI.Text.Input.MoveCursorCommand.Amount.get -> int
AndroidX.Compose.UI.Text.Input.MoveCursorCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.MoveCursorCommand.MoveCursorCommand(int amount) -> void
AndroidX.Compose.UI.Text.Input.OffsetMapping
AndroidX.Compose.UI.Text.Input.OffsetMappingCompanionStatic
AndroidX.Compose.UI.Text.Input.OffsetMappingCompanionStatic.Identity.get -> AndroidX.Compose.UI.Text.Input.IOffsetMapping!
AndroidX.Compose.UI.Text.Input.OffsetMappingConsts
AndroidX.Compose.UI.Text.Input.PartialGapBuffer
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Get(int index) -> char
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Length.get -> int
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.PartialGapBuffer(string! text) -> void
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Replace(int start, int end, string! text) -> void
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Text.get -> string!
AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Text.set -> void
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation.Filter(AndroidX.Compose.UI.Text.AnnotatedString! text) -> AndroidX.Compose.UI.Text.Input.TransformedText!
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation.InterfaceConsts
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation.Mask.get -> char
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation.PasswordVisualTransformation() -> void
AndroidX.Compose.UI.Text.Input.PasswordVisualTransformation.PasswordVisualTransformation(char mask) -> void
AndroidX.Compose.UI.Text.Input.PlatformImeOptions
AndroidX.Compose.UI.Text.Input.PlatformImeOptions.PlatformImeOptions() -> void
AndroidX.Compose.UI.Text.Input.PlatformImeOptions.PlatformImeOptions(string? privateImeOptions) -> void
AndroidX.Compose.UI.Text.Input.PlatformImeOptions.PrivateImeOptions.get -> string?
AndroidX.Compose.UI.Text.Input.SetComposingRegionCommand
AndroidX.Compose.UI.Text.Input.SetComposingRegionCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.SetComposingRegionCommand.End.get -> int
AndroidX.Compose.UI.Text.Input.SetComposingRegionCommand.SetComposingRegionCommand(int start, int end) -> void
AndroidX.Compose.UI.Text.Input.SetComposingRegionCommand.Start.get -> int
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.AnnotatedString.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.NewCursorPosition.get -> int
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.SetComposingTextCommand(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, int newCursorPosition) -> void
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.SetComposingTextCommand(string! text, int newCursorPosition) -> void
AndroidX.Compose.UI.Text.Input.SetComposingTextCommand.Text.get -> string!
AndroidX.Compose.UI.Text.Input.SetSelectionCommand
AndroidX.Compose.UI.Text.Input.SetSelectionCommand.ApplyTo(AndroidX.Compose.UI.Text.Input.EditingBuffer! buffer) -> void
AndroidX.Compose.UI.Text.Input.SetSelectionCommand.End.get -> int
AndroidX.Compose.UI.Text.Input.SetSelectionCommand.SetSelectionCommand(int start, int end) -> void
AndroidX.Compose.UI.Text.Input.SetSelectionCommand.Start.get -> int
AndroidX.Compose.UI.Text.Input.TextFieldValue
AndroidX.Compose.UI.Text.Input.TextFieldValue.AnnotatedString.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.Input.TextFieldValue.CompanionStatic
AndroidX.Compose.UI.Text.Input.TextFieldValue.Composition.get -> AndroidX.Compose.UI.Text.TextRange?
AndroidX.Compose.UI.Text.Input.TextFieldValue.Copy(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, long selection, AndroidX.Compose.UI.Text.TextRange? composition) -> AndroidX.Compose.UI.Text.Input.TextFieldValue!
AndroidX.Compose.UI.Text.Input.TextFieldValue.Copy(string! text, long selection, AndroidX.Compose.UI.Text.TextRange? composition) -> AndroidX.Compose.UI.Text.Input.TextFieldValue!
AndroidX.Compose.UI.Text.Input.TextFieldValue.Selection.get -> long
AndroidX.Compose.UI.Text.Input.TextFieldValue.Text.get -> string!
AndroidX.Compose.UI.Text.Input.TextFieldValueKt
AndroidX.Compose.UI.Text.Input.TextInputService
AndroidX.Compose.UI.Text.Input.TextInputService.HideSoftwareKeyboard() -> void
AndroidX.Compose.UI.Text.Input.TextInputService.ShowSoftwareKeyboard() -> void
AndroidX.Compose.UI.Text.Input.TextInputService.StartInput() -> void
AndroidX.Compose.UI.Text.Input.TextInputService.StopInput() -> void
AndroidX.Compose.UI.Text.Input.TextInputService.TextInputService(AndroidX.Compose.UI.Text.Input.IPlatformTextInputService! platformTextInputService) -> void
AndroidX.Compose.UI.Text.Input.TextInputService.TextInputService(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.Input.TextInputSession
AndroidX.Compose.UI.Text.Input.TextInputSession.Dispose() -> void
AndroidX.Compose.UI.Text.Input.TextInputSession.HideSoftwareKeyboard() -> bool
AndroidX.Compose.UI.Text.Input.TextInputSession.IsOpen.get -> bool
AndroidX.Compose.UI.Text.Input.TextInputSession.ShowSoftwareKeyboard() -> bool
AndroidX.Compose.UI.Text.Input.TextInputSession.TextInputSession(AndroidX.Compose.UI.Text.Input.TextInputService! textInputService, AndroidX.Compose.UI.Text.Input.IPlatformTextInputService! platformTextInputService) -> void
AndroidX.Compose.UI.Text.Input.TextInputSession.UpdateState(AndroidX.Compose.UI.Text.Input.TextFieldValue? oldValue, AndroidX.Compose.UI.Text.Input.TextFieldValue! newValue) -> bool
AndroidX.Compose.UI.Text.Input.TransformedText
AndroidX.Compose.UI.Text.Input.TransformedText.OffsetMapping.get -> AndroidX.Compose.UI.Text.Input.IOffsetMapping!
AndroidX.Compose.UI.Text.Input.TransformedText.Text.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.Input.TransformedText.TransformedText(AndroidX.Compose.UI.Text.AnnotatedString! text, AndroidX.Compose.UI.Text.Input.IOffsetMapping! offsetMapping) -> void
AndroidX.Compose.UI.Text.Input.VisualTransformation
AndroidX.Compose.UI.Text.Input.VisualTransformationCompanionStatic
AndroidX.Compose.UI.Text.Input.VisualTransformationCompanionStatic.None.get -> AndroidX.Compose.UI.Text.Input.IVisualTransformation!
AndroidX.Compose.UI.Text.Input.VisualTransformationConsts
AndroidX.Compose.UI.Text.Internal.InlineClassHelperKt
AndroidX.Compose.UI.Text.Internal.JvmDefaultWithCompatibility_jvmAndAndroidKt
AndroidX.Compose.UI.Text.InternalTextApiAttribute
AndroidX.Compose.UI.Text.InternalTextApiAttribute.InternalTextApiAttribute() -> void
AndroidX.Compose.UI.Text.Intl.AndroidPlatformLocale_androidKt
AndroidX.Compose.UI.Text.Intl.Locale
AndroidX.Compose.UI.Text.Intl.Locale.CompanionStatic
AndroidX.Compose.UI.Text.Intl.Locale.CompanionStatic.Current.get -> AndroidX.Compose.UI.Text.Intl.Locale!
AndroidX.Compose.UI.Text.Intl.Locale.Language.get -> string!
AndroidX.Compose.UI.Text.Intl.Locale.Locale(Java.Util.Locale! platformLocale) -> void
AndroidX.Compose.UI.Text.Intl.Locale.Locale(string! languageTag) -> void
AndroidX.Compose.UI.Text.Intl.Locale.PlatformLocale.get -> Java.Util.Locale!
AndroidX.Compose.UI.Text.Intl.Locale.Region.get -> string!
AndroidX.Compose.UI.Text.Intl.Locale.Script.get -> string!
AndroidX.Compose.UI.Text.Intl.Locale.ToLanguageTag() -> string!
AndroidX.Compose.UI.Text.Intl.LocaleList
AndroidX.Compose.UI.Text.Intl.LocaleList.Add(AndroidX.Compose.UI.Text.Intl.Locale? element) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.AddAll(System.Collections.Generic.ICollection<AndroidX.Compose.UI.Text.Intl.Locale!>? elements) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.Clear() -> void
AndroidX.Compose.UI.Text.Intl.LocaleList.CompanionStatic
AndroidX.Compose.UI.Text.Intl.LocaleList.CompanionStatic.Current.get -> AndroidX.Compose.UI.Text.Intl.LocaleList!
AndroidX.Compose.UI.Text.Intl.LocaleList.CompanionStatic.Empty.get -> AndroidX.Compose.UI.Text.Intl.LocaleList!
AndroidX.Compose.UI.Text.Intl.LocaleList.Contains(AndroidX.Compose.UI.Text.Intl.Locale! element) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.Contains(Java.Lang.Object? element) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.ContainsAll(System.Collections.Generic.ICollection<object!>! elements) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.Get(int i) -> AndroidX.Compose.UI.Text.Intl.Locale!
AndroidX.Compose.UI.Text.Intl.LocaleList.GetLocaleList() -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Intl.Locale!>!
AndroidX.Compose.UI.Text.Intl.LocaleList.InvokeSize() -> int
AndroidX.Compose.UI.Text.Intl.LocaleList.IsEmpty.get -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.Iterator() -> Java.Util.IIterator!
AndroidX.Compose.UI.Text.Intl.LocaleList.LocaleList(System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Intl.Locale!>! localeList) -> void
AndroidX.Compose.UI.Text.Intl.LocaleList.LocaleList(params AndroidX.Compose.UI.Text.Intl.Locale![]! locales) -> void
AndroidX.Compose.UI.Text.Intl.LocaleList.LocaleList(string! languageTags) -> void
AndroidX.Compose.UI.Text.Intl.LocaleList.Remove(Java.Lang.Object? element) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.RemoveAll(System.Collections.Generic.ICollection<object!>? elements) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.RemoveIf(Java.Util.Functions.IPredicate? p0) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.RetainAll(System.Collections.Generic.ICollection<object!>? elements) -> bool
AndroidX.Compose.UI.Text.Intl.LocaleList.Size.get -> int
AndroidX.Compose.UI.Text.Intl.LocaleList.ToArray() -> Java.Lang.Object![]?
AndroidX.Compose.UI.Text.Intl.LocaleList.ToArray(Java.Lang.Object![]? array) -> Java.Lang.Object![]?
AndroidX.Compose.UI.Text.Intl.Locale_jvmAndAndroidKt
AndroidX.Compose.UI.Text.Intl.PlatformLocaleKt
AndroidX.Compose.UI.Text.JvmAnnotatedString_jvmAndAndroidKt
AndroidX.Compose.UI.Text.LinkAnnotation
AndroidX.Compose.UI.Text.LinkAnnotation.Clickable
AndroidX.Compose.UI.Text.LinkAnnotation.Clickable.Clickable(string! tag, AndroidX.Compose.UI.Text.TextLinkStyles? styles, AndroidX.Compose.UI.Text.ILinkInteractionListener? linkInteractionListener) -> void
AndroidX.Compose.UI.Text.LinkAnnotation.Clickable.Copy(string! tag, AndroidX.Compose.UI.Text.TextLinkStyles? styles, AndroidX.Compose.UI.Text.ILinkInteractionListener? linkInteractionListener) -> AndroidX.Compose.UI.Text.LinkAnnotation.Clickable!
AndroidX.Compose.UI.Text.LinkAnnotation.Clickable.Tag.get -> string!
AndroidX.Compose.UI.Text.LinkAnnotation.LinkAnnotation(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.LinkAnnotation.Url
AndroidX.Compose.UI.Text.LinkAnnotation.Url.Copy(string! url, AndroidX.Compose.UI.Text.TextLinkStyles? styles, AndroidX.Compose.UI.Text.ILinkInteractionListener? linkInteractionListener) -> AndroidX.Compose.UI.Text.LinkAnnotation.Url!
AndroidX.Compose.UI.Text.LinkAnnotation.Url.GetUrl() -> string!
AndroidX.Compose.UI.Text.LinkAnnotation.Url.Url(string! url, AndroidX.Compose.UI.Text.TextLinkStyles? styles, AndroidX.Compose.UI.Text.ILinkInteractionListener? linkInteractionListener) -> void
AndroidX.Compose.UI.Text.LinkInteractionEventArgs
AndroidX.Compose.UI.Text.LinkInteractionEventArgs.Link.get -> AndroidX.Compose.UI.Text.LinkAnnotation!
AndroidX.Compose.UI.Text.LinkInteractionEventArgs.LinkInteractionEventArgs(AndroidX.Compose.UI.Text.LinkAnnotation! link) -> void
AndroidX.Compose.UI.Text.MultiParagraph
AndroidX.Compose.UI.Text.MultiParagraph.DidExceedMaxLines.get -> bool
AndroidX.Compose.UI.Text.MultiParagraph.FillBoundingBoxes(long range, float[]! array, int arrayStart) -> float[]!
AndroidX.Compose.UI.Text.MultiParagraph.FirstBaseline.get -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetBidiRunDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.MultiParagraph.GetHorizontalPosition(int offset, bool usePrimaryDirection) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineBaseline(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineBottom(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineEnd(int lineIndex, bool visibleEnd) -> int
AndroidX.Compose.UI.Text.MultiParagraph.GetLineForOffset(int offset) -> int
AndroidX.Compose.UI.Text.MultiParagraph.GetLineForVerticalPosition(float vertical) -> int
AndroidX.Compose.UI.Text.MultiParagraph.GetLineHeight(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineLeft(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineRight(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineStart(int lineIndex) -> int
AndroidX.Compose.UI.Text.MultiParagraph.GetLineTop(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetLineWidth(int lineIndex) -> float
AndroidX.Compose.UI.Text.MultiParagraph.GetOffsetForPosition(long position) -> int
AndroidX.Compose.UI.Text.MultiParagraph.GetParagraphDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.MultiParagraph.GetPathForRange(int start, int end) -> AndroidX.Compose.UI.Graphics.IPath!
AndroidX.Compose.UI.Text.MultiParagraph.GetWordBoundary(int offset) -> long
AndroidX.Compose.UI.Text.MultiParagraph.Height.get -> float
AndroidX.Compose.UI.Text.MultiParagraph.Intrinsics.get -> AndroidX.Compose.UI.Text.MultiParagraphIntrinsics!
AndroidX.Compose.UI.Text.MultiParagraph.IsLineEllipsized(int lineIndex) -> bool
AndroidX.Compose.UI.Text.MultiParagraph.LastBaseline.get -> float
AndroidX.Compose.UI.Text.MultiParagraph.LineCount.get -> int
AndroidX.Compose.UI.Text.MultiParagraph.MaxIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.MultiParagraph.MaxLines.get -> int
AndroidX.Compose.UI.Text.MultiParagraph.MinIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.MultiParagraph.MultiParagraph(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, AndroidX.Compose.UI.Text.TextStyle! style, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, int maxLines, bool ellipsis, float width, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.IFontResourceLoader! resourceLoader) -> void
AndroidX.Compose.UI.Text.MultiParagraph.MultiParagraph(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, AndroidX.Compose.UI.Text.TextStyle! style, float width, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.FontFamily.IResolver! fontFamilyResolver, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, int maxLines, bool ellipsis) -> void
AndroidX.Compose.UI.Text.MultiParagraph.MultiParagraph(AndroidX.Compose.UI.Text.MultiParagraphIntrinsics! intrinsics, int maxLines, bool ellipsis, float width) -> void
AndroidX.Compose.UI.Text.MultiParagraph.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, AndroidX.Compose.UI.Graphics.Brush! brush, float alpha, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.Style.TextDecoration? decoration, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int blendMode) -> void
AndroidX.Compose.UI.Text.MultiParagraph.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, long color, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.Style.TextDecoration? decoration, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int blendMode) -> void
AndroidX.Compose.UI.Text.MultiParagraph.Width.get -> float
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.AnnotatedString.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.HasStaleResolvedFonts.get -> bool
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.MaxIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.MinIntrinsicWidth.get -> float
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.MultiParagraphIntrinsics(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, AndroidX.Compose.UI.Text.TextStyle! style, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.FontFamily.IResolver! fontFamilyResolver) -> void
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.MultiParagraphIntrinsics(AndroidX.Compose.UI.Text.AnnotatedString! annotatedString, AndroidX.Compose.UI.Text.TextStyle! style, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.IFontResourceLoader! resourceLoader) -> void
AndroidX.Compose.UI.Text.MultiParagraphIntrinsics.Placeholders.get -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.MultiParagraphIntrinsicsKt
AndroidX.Compose.UI.Text.MultiParagraphKt
AndroidX.Compose.UI.Text.ParagraphDefaultImpls
AndroidX.Compose.UI.Text.ParagraphIntrinsicsKt
AndroidX.Compose.UI.Text.ParagraphKt
AndroidX.Compose.UI.Text.ParagraphStyle
AndroidX.Compose.UI.Text.ParagraphStyle.Copy(int textAlign, int textDirection, long lineHeight, AndroidX.Compose.UI.Text.Style.TextIndent? textIndent, AndroidX.Compose.UI.Text.PlatformParagraphStyle? platformStyle, AndroidX.Compose.UI.Text.Style.LineHeightStyle? lineHeightStyle, int lineBreak, int hyphens, AndroidX.Compose.UI.Text.Style.TextMotion? textMotion) -> AndroidX.Compose.UI.Text.ParagraphStyle!
AndroidX.Compose.UI.Text.ParagraphStyle.GetHyphens() -> int
AndroidX.Compose.UI.Text.ParagraphStyle.GetLineBreak() -> int
AndroidX.Compose.UI.Text.ParagraphStyle.GetTextAlign() -> int
AndroidX.Compose.UI.Text.ParagraphStyle.GetTextDirection() -> int
AndroidX.Compose.UI.Text.ParagraphStyle.Hyphens.get -> AndroidX.Compose.UI.Text.Style.Hyphens?
AndroidX.Compose.UI.Text.ParagraphStyle.LineBreak.get -> AndroidX.Compose.UI.Text.Style.LineBreak?
AndroidX.Compose.UI.Text.ParagraphStyle.LineHeight.get -> long
AndroidX.Compose.UI.Text.ParagraphStyle.LineHeightStyle.get -> AndroidX.Compose.UI.Text.Style.LineHeightStyle?
AndroidX.Compose.UI.Text.ParagraphStyle.Merge(AndroidX.Compose.UI.Text.ParagraphStyle? other) -> AndroidX.Compose.UI.Text.ParagraphStyle!
AndroidX.Compose.UI.Text.ParagraphStyle.PlatformStyle.get -> AndroidX.Compose.UI.Text.PlatformParagraphStyle?
AndroidX.Compose.UI.Text.ParagraphStyle.Plus(AndroidX.Compose.UI.Text.ParagraphStyle! other) -> AndroidX.Compose.UI.Text.ParagraphStyle!
AndroidX.Compose.UI.Text.ParagraphStyle.TextAlign.get -> AndroidX.Compose.UI.Text.Style.TextAlign?
AndroidX.Compose.UI.Text.ParagraphStyle.TextDirection.get -> AndroidX.Compose.UI.Text.Style.TextDirection?
AndroidX.Compose.UI.Text.ParagraphStyle.TextIndent.get -> AndroidX.Compose.UI.Text.Style.TextIndent?
AndroidX.Compose.UI.Text.ParagraphStyle.TextMotion.get -> AndroidX.Compose.UI.Text.Style.TextMotion?
AndroidX.Compose.UI.Text.ParagraphStyleKt
AndroidX.Compose.UI.Text.Placeholder
AndroidX.Compose.UI.Text.Placeholder.Copy(long width, long height, int placeholderVerticalAlign) -> AndroidX.Compose.UI.Text.Placeholder!
AndroidX.Compose.UI.Text.Placeholder.Height.get -> long
AndroidX.Compose.UI.Text.Placeholder.PlaceholderVerticalAlign.get -> int
AndroidX.Compose.UI.Text.Placeholder.Width.get -> long
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.AboveBaseline_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.Bottom_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.Center_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.TextBottom_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.TextCenter_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.TextTop_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.PlaceholderVerticalAlign.CompanionStatic.Top_J6kI3mc.get -> int
AndroidX.Compose.UI.Text.Platform.AndroidAccessibilitySpannableString_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidMultiParagraphDraw_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidParagraphHelper_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidParagraphIntrinsics_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidParagraph_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidStringDelegate_androidKt
AndroidX.Compose.UI.Text.Platform.AndroidTextPaint_androidKt
AndroidX.Compose.UI.Text.Platform.DispatcherKt
AndroidX.Compose.UI.Text.Platform.EmojiCompatStatus_androidKt
AndroidX.Compose.UI.Text.Platform.Extensions.PlaceholderExtensions_androidKt
AndroidX.Compose.UI.Text.Platform.Extensions.SpannableExtensions_androidKt
AndroidX.Compose.UI.Text.Platform.Extensions.TextPaintExtensions_androidKt
AndroidX.Compose.UI.Text.Platform.Extensions.TtsAnnotationExtensions_androidKt
AndroidX.Compose.UI.Text.Platform.Style.BulletSpan_androidKt
AndroidX.Compose.UI.Text.Platform.Style.DrawStyleSpan_androidKt
AndroidX.Compose.UI.Text.Platform.Synchronization_jvmKt
AndroidX.Compose.UI.Text.Platform.URLSpanCache
AndroidX.Compose.UI.Text.Platform.URLSpanCache.ToClickableSpan(AndroidX.Compose.UI.Text.AnnotatedString.Range! linkRange) -> Android.Text.Style.ClickableSpan?
AndroidX.Compose.UI.Text.Platform.URLSpanCache.ToURLSpan(AndroidX.Compose.UI.Text.AnnotatedString.Range! urlRange) -> Android.Text.Style.URLSpan!
AndroidX.Compose.UI.Text.Platform.URLSpanCache.ToURLSpan(AndroidX.Compose.UI.Text.UrlAnnotation! urlAnnotation) -> Android.Text.Style.URLSpan!
AndroidX.Compose.UI.Text.Platform.URLSpanCache.URLSpanCache() -> void
AndroidX.Compose.UI.Text.PlatformParagraphStyle
AndroidX.Compose.UI.Text.PlatformParagraphStyle.CompanionStatic
AndroidX.Compose.UI.Text.PlatformParagraphStyle.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.PlatformParagraphStyle!
AndroidX.Compose.UI.Text.PlatformParagraphStyle.EmojiSupportMatch.get -> int
AndroidX.Compose.UI.Text.PlatformParagraphStyle.IncludeFontPadding.get -> bool
AndroidX.Compose.UI.Text.PlatformParagraphStyle.Merge(AndroidX.Compose.UI.Text.PlatformParagraphStyle? other) -> AndroidX.Compose.UI.Text.PlatformParagraphStyle!
AndroidX.Compose.UI.Text.PlatformParagraphStyle.PlatformParagraphStyle() -> void
AndroidX.Compose.UI.Text.PlatformParagraphStyle.PlatformParagraphStyle(bool includeFontPadding) -> void
AndroidX.Compose.UI.Text.PlatformSpanStyle
AndroidX.Compose.UI.Text.PlatformSpanStyle.CompanionStatic
AndroidX.Compose.UI.Text.PlatformSpanStyle.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.PlatformSpanStyle!
AndroidX.Compose.UI.Text.PlatformSpanStyle.Merge(AndroidX.Compose.UI.Text.PlatformSpanStyle? other) -> AndroidX.Compose.UI.Text.PlatformSpanStyle!
AndroidX.Compose.UI.Text.PlatformSpanStyle.PlatformSpanStyle() -> void
AndroidX.Compose.UI.Text.PlatformTextStyle
AndroidX.Compose.UI.Text.PlatformTextStyle.ParagraphStyle.get -> AndroidX.Compose.UI.Text.PlatformParagraphStyle?
AndroidX.Compose.UI.Text.PlatformTextStyle.PlatformTextStyle(AndroidX.Compose.UI.Text.PlatformSpanStyle? spanStyle, AndroidX.Compose.UI.Text.PlatformParagraphStyle? paragraphStyle) -> void
AndroidX.Compose.UI.Text.PlatformTextStyle.PlatformTextStyle(bool includeFontPadding) -> void
AndroidX.Compose.UI.Text.PlatformTextStyle.SpanStyle.get -> AndroidX.Compose.UI.Text.PlatformSpanStyle?
AndroidX.Compose.UI.Text.SaversKt
AndroidX.Compose.UI.Text.SaversKt.WhenMappings
AndroidX.Compose.UI.Text.Savers_androidKt
AndroidX.Compose.UI.Text.SpanStyle
AndroidX.Compose.UI.Text.SpanStyle.Alpha.get -> float
AndroidX.Compose.UI.Text.SpanStyle.Background.get -> long
AndroidX.Compose.UI.Text.SpanStyle.BaselineShift.get -> AndroidX.Compose.UI.Text.Style.BaselineShift?
AndroidX.Compose.UI.Text.SpanStyle.Brush.get -> AndroidX.Compose.UI.Graphics.Brush?
AndroidX.Compose.UI.Text.SpanStyle.Color.get -> long
AndroidX.Compose.UI.Text.SpanStyle.Copy(AndroidX.Compose.UI.Graphics.Brush? brush, float alpha, long fontSize, AndroidX.Compose.UI.Text.Font.FontWeight? fontWeight, AndroidX.Compose.UI.Text.Font.FontStyle? fontStyle, AndroidX.Compose.UI.Text.Font.FontSynthesis? fontSynthesis, AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, string? fontFeatureSettings, long letterSpacing, AndroidX.Compose.UI.Text.Style.BaselineShift? baselineShift, AndroidX.Compose.UI.Text.Style.TextGeometricTransform? textGeometricTransform, AndroidX.Compose.UI.Text.Intl.LocaleList? localeList, long background, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.PlatformSpanStyle? platformStyle, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle) -> AndroidX.Compose.UI.Text.SpanStyle!
AndroidX.Compose.UI.Text.SpanStyle.Copy(long color, long fontSize, AndroidX.Compose.UI.Text.Font.FontWeight? fontWeight, AndroidX.Compose.UI.Text.Font.FontStyle? fontStyle, AndroidX.Compose.UI.Text.Font.FontSynthesis? fontSynthesis, AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, string? fontFeatureSettings, long letterSpacing, AndroidX.Compose.UI.Text.Style.BaselineShift? baselineShift, AndroidX.Compose.UI.Text.Style.TextGeometricTransform? textGeometricTransform, AndroidX.Compose.UI.Text.Intl.LocaleList? localeList, long background, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Text.PlatformSpanStyle? platformStyle, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle) -> AndroidX.Compose.UI.Text.SpanStyle!
AndroidX.Compose.UI.Text.SpanStyle.DrawStyle.get -> AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle?
AndroidX.Compose.UI.Text.SpanStyle.FontFamily.get -> AndroidX.Compose.UI.Text.Font.FontFamily?
AndroidX.Compose.UI.Text.SpanStyle.FontFeatureSettings.get -> string?
AndroidX.Compose.UI.Text.SpanStyle.FontSize.get -> long
AndroidX.Compose.UI.Text.SpanStyle.FontStyle.get -> AndroidX.Compose.UI.Text.Font.FontStyle?
AndroidX.Compose.UI.Text.SpanStyle.FontSynthesis.get -> AndroidX.Compose.UI.Text.Font.FontSynthesis?
AndroidX.Compose.UI.Text.SpanStyle.FontWeight.get -> AndroidX.Compose.UI.Text.Font.FontWeight?
AndroidX.Compose.UI.Text.SpanStyle.LetterSpacing.get -> long
AndroidX.Compose.UI.Text.SpanStyle.LocaleList.get -> AndroidX.Compose.UI.Text.Intl.LocaleList?
AndroidX.Compose.UI.Text.SpanStyle.Merge(AndroidX.Compose.UI.Text.SpanStyle? other) -> AndroidX.Compose.UI.Text.SpanStyle!
AndroidX.Compose.UI.Text.SpanStyle.PlatformStyle.get -> AndroidX.Compose.UI.Text.PlatformSpanStyle?
AndroidX.Compose.UI.Text.SpanStyle.Plus(AndroidX.Compose.UI.Text.SpanStyle! other) -> AndroidX.Compose.UI.Text.SpanStyle!
AndroidX.Compose.UI.Text.SpanStyle.Shadow.get -> AndroidX.Compose.UI.Graphics.Shadow?
AndroidX.Compose.UI.Text.SpanStyle.TextDecoration.get -> AndroidX.Compose.UI.Text.Style.TextDecoration?
AndroidX.Compose.UI.Text.SpanStyle.TextGeometricTransform.get -> AndroidX.Compose.UI.Text.Style.TextGeometricTransform?
AndroidX.Compose.UI.Text.SpanStyleKt
AndroidX.Compose.UI.Text.StringAnnotation
AndroidX.Compose.UI.Text.StringAnnotation.Value.get -> string!
AndroidX.Compose.UI.Text.StringAnnotationKt
AndroidX.Compose.UI.Text.StringKt
AndroidX.Compose.UI.Text.Style.BaselineShift
AndroidX.Compose.UI.Text.Style.BaselineShift.CompanionStatic
AndroidX.Compose.UI.Text.Style.BaselineShift.CompanionStatic.None_y9eOQZs.get -> float
AndroidX.Compose.UI.Text.Style.BaselineShift.CompanionStatic.Subscript_y9eOQZs.get -> float
AndroidX.Compose.UI.Text.Style.BaselineShift.CompanionStatic.Superscript_y9eOQZs.get -> float
AndroidX.Compose.UI.Text.Style.BaselineShift.CompanionStatic.Unspecified_y9eOQZs.get -> float
AndroidX.Compose.UI.Text.Style.BaselineShift.Multiplier.get -> float
AndroidX.Compose.UI.Text.Style.BaselineShiftKt
AndroidX.Compose.UI.Text.Style.Hyphens
AndroidX.Compose.UI.Text.Style.Hyphens.CompanionStatic
AndroidX.Compose.UI.Text.Style.Hyphens.CompanionStatic.Auto_vmbZdU8.get -> int
AndroidX.Compose.UI.Text.Style.Hyphens.CompanionStatic.None_vmbZdU8.get -> int
AndroidX.Compose.UI.Text.Style.Hyphens.CompanionStatic.Unspecified_vmbZdU8.get -> int
AndroidX.Compose.UI.Text.Style.Hyphens.CompanionStatic.ValueOf_kPa1_AA(int value) -> int
AndroidX.Compose.UI.Text.Style.Hyphens.Value.get -> int
AndroidX.Compose.UI.Text.Style.HyphensKt
AndroidX.Compose.UI.Text.Style.LineBreak
AndroidX.Compose.UI.Text.Style.LineBreak.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineBreak.CompanionStatic.Heading_rAG3T2k.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.CompanionStatic.Paragraph_rAG3T2k.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.CompanionStatic.Simple_rAG3T2k.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.CompanionStatic.Unspecified_rAG3T2k.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy.CompanionStatic.Balanced_fcGXIks.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy.CompanionStatic.HighQuality_fcGXIks.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy.CompanionStatic.Simple_fcGXIks.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strategy.CompanionStatic.Unspecified_fcGXIks.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic.Default_usljTpc.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic.Loose_usljTpc.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic.Normal_usljTpc.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic.Strict_usljTpc.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.Strictness.CompanionStatic.Unspecified_usljTpc.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.WordBreak
AndroidX.Compose.UI.Text.Style.LineBreak.WordBreak.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineBreak.WordBreak.CompanionStatic.Default_jp8hJ3c.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.WordBreak.CompanionStatic.Phrase_jp8hJ3c.get -> int
AndroidX.Compose.UI.Text.Style.LineBreak.WordBreak.CompanionStatic.Unspecified_jp8hJ3c.get -> int
AndroidX.Compose.UI.Text.Style.LineBreakKt
AndroidX.Compose.UI.Text.Style.LineBreak_androidKt
AndroidX.Compose.UI.Text.Style.LineHeightStyle
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment.CompanionStatic.Bottom_PIaL0Z0.get -> float
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment.CompanionStatic.Center_PIaL0Z0.get -> float
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment.CompanionStatic.Proportional_PIaL0Z0.get -> float
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Alignment.CompanionStatic.Top_PIaL0Z0.get -> float
AndroidX.Compose.UI.Text.Style.LineHeightStyle.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineHeightStyle.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.Style.LineHeightStyle!
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Copy(float alignment, int trim, int mode) -> AndroidX.Compose.UI.Text.Style.LineHeightStyle!
AndroidX.Compose.UI.Text.Style.LineHeightStyle.GetAlignment() -> float
AndroidX.Compose.UI.Text.Style.LineHeightStyle.GetMode() -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.GetTrim() -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Mode
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Mode.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Mode.CompanionStatic.Fixed_lzQqcRY.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Mode.CompanionStatic.Minimum_lzQqcRY.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Mode.CompanionStatic.Tight_lzQqcRY.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim.CompanionStatic
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim.CompanionStatic.Both_EVpEnUU.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim.CompanionStatic.FirstLineTop_EVpEnUU.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim.CompanionStatic.LastLineBottom_EVpEnUU.get -> int
AndroidX.Compose.UI.Text.Style.LineHeightStyle.Trim.CompanionStatic.None_EVpEnUU.get -> int
AndroidX.Compose.UI.Text.Style.ResolvedTextDirection
AndroidX.Compose.UI.Text.Style.TextAlign
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Center_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.End_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Justify_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Left_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Right_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Start_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Unspecified_e0LSkKk.get -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.ValueOf_IgVj0fw(int value) -> int
AndroidX.Compose.UI.Text.Style.TextAlign.CompanionStatic.Values() -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Style.TextAlign!>!
AndroidX.Compose.UI.Text.Style.TextAlign.Value.get -> int
AndroidX.Compose.UI.Text.Style.TextAlignKt
AndroidX.Compose.UI.Text.Style.TextDecoration
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic.Combine(System.Collections.Generic.IList<AndroidX.Compose.UI.Text.Style.TextDecoration!>! decorations) -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic.LineThrough.get -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic.None.get -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic.Underline.get -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDecoration.CompanionStatic.ValueOf(int mask) -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDecoration.Contains(AndroidX.Compose.UI.Text.Style.TextDecoration! other) -> bool
AndroidX.Compose.UI.Text.Style.TextDecoration.Mask.get -> int
AndroidX.Compose.UI.Text.Style.TextDecoration.Plus(AndroidX.Compose.UI.Text.Style.TextDecoration! decoration) -> AndroidX.Compose.UI.Text.Style.TextDecoration!
AndroidX.Compose.UI.Text.Style.TextDirection
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.ContentOrLtr_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.ContentOrRtl_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.Content_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.Ltr_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.Rtl_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.Unspecified_s_7X_co.get -> int
AndroidX.Compose.UI.Text.Style.TextDirection.CompanionStatic.ValueOf_E8nx0Ws(int value) -> int
AndroidX.Compose.UI.Text.Style.TextDirection.Value.get -> int
AndroidX.Compose.UI.Text.Style.TextDirectionKt
AndroidX.Compose.UI.Text.Style.TextDrawStyleKt
AndroidX.Compose.UI.Text.Style.TextGeometricTransform
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.Copy(float scaleX, float skewX) -> AndroidX.Compose.UI.Text.Style.TextGeometricTransform!
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.ScaleX.get -> float
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.SkewX.get -> float
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.TextGeometricTransform() -> void
AndroidX.Compose.UI.Text.Style.TextGeometricTransform.TextGeometricTransform(float scaleX, float skewX) -> void
AndroidX.Compose.UI.Text.Style.TextGeometricTransformKt
AndroidX.Compose.UI.Text.Style.TextIndent
AndroidX.Compose.UI.Text.Style.TextIndent.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextIndent.CompanionStatic.None.get -> AndroidX.Compose.UI.Text.Style.TextIndent!
AndroidX.Compose.UI.Text.Style.TextIndent.Copy(long firstLine, long restLine) -> AndroidX.Compose.UI.Text.Style.TextIndent!
AndroidX.Compose.UI.Text.Style.TextIndent.FirstLine.get -> long
AndroidX.Compose.UI.Text.Style.TextIndent.RestLine.get -> long
AndroidX.Compose.UI.Text.Style.TextIndentKt
AndroidX.Compose.UI.Text.Style.TextMotion
AndroidX.Compose.UI.Text.Style.TextMotion.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextMotion.CompanionStatic.Animated.get -> AndroidX.Compose.UI.Text.Style.TextMotion!
AndroidX.Compose.UI.Text.Style.TextMotion.CompanionStatic.Static.get -> AndroidX.Compose.UI.Text.Style.TextMotion!
AndroidX.Compose.UI.Text.Style.TextOverflow
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic.Clip_gIe3tQ8.get -> int
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic.Ellipsis_gIe3tQ8.get -> int
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic.MiddleEllipsis_gIe3tQ8.get -> int
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic.StartEllipsis_gIe3tQ8.get -> int
AndroidX.Compose.UI.Text.Style.TextOverflow.CompanionStatic.Visible_gIe3tQ8.get -> int
AndroidX.Compose.UI.Text.TextGranularity
AndroidX.Compose.UI.Text.TextGranularity.CompanionStatic
AndroidX.Compose.UI.Text.TextGranularity.CompanionStatic.Character_DRrd7Zo.get -> int
AndroidX.Compose.UI.Text.TextGranularity.CompanionStatic.Word_DRrd7Zo.get -> int
AndroidX.Compose.UI.Text.TextInclusionStrategy
AndroidX.Compose.UI.Text.TextInclusionStrategyCompanionStatic
AndroidX.Compose.UI.Text.TextInclusionStrategyCompanionStatic.AnyOverlap.get -> AndroidX.Compose.UI.Text.ITextInclusionStrategy!
AndroidX.Compose.UI.Text.TextInclusionStrategyCompanionStatic.ContainsAll.get -> AndroidX.Compose.UI.Text.ITextInclusionStrategy!
AndroidX.Compose.UI.Text.TextInclusionStrategyCompanionStatic.ContainsCenter.get -> AndroidX.Compose.UI.Text.ITextInclusionStrategy!
AndroidX.Compose.UI.Text.TextInclusionStrategyConsts
AndroidX.Compose.UI.Text.TextLayoutInput
AndroidX.Compose.UI.Text.TextLayoutInput.Constraints.get -> long
AndroidX.Compose.UI.Text.TextLayoutInput.Copy(AndroidX.Compose.UI.Text.AnnotatedString! text, AndroidX.Compose.UI.Text.TextStyle! style, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, int maxLines, bool softWrap, int overflow, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Unit.LayoutDirection! layoutDirection, AndroidX.Compose.UI.Text.Font.IFontResourceLoader! resourceLoader, long constraints) -> AndroidX.Compose.UI.Text.TextLayoutInput!
AndroidX.Compose.UI.Text.TextLayoutInput.Density.get -> AndroidX.Compose.UI.Unit.IDensity!
AndroidX.Compose.UI.Text.TextLayoutInput.FontFamilyResolver.get -> AndroidX.Compose.UI.Text.Font.FontFamily.IResolver!
AndroidX.Compose.UI.Text.TextLayoutInput.LayoutDirection.get -> AndroidX.Compose.UI.Unit.LayoutDirection!
AndroidX.Compose.UI.Text.TextLayoutInput.MaxLines.get -> int
AndroidX.Compose.UI.Text.TextLayoutInput.Overflow.get -> int
AndroidX.Compose.UI.Text.TextLayoutInput.Placeholders.get -> System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>!
AndroidX.Compose.UI.Text.TextLayoutInput.ResourceLoader.get -> AndroidX.Compose.UI.Text.Font.IFontResourceLoader!
AndroidX.Compose.UI.Text.TextLayoutInput.SoftWrap.get -> bool
AndroidX.Compose.UI.Text.TextLayoutInput.Style.get -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextLayoutInput.Text.get -> AndroidX.Compose.UI.Text.AnnotatedString!
AndroidX.Compose.UI.Text.TextLayoutResult
AndroidX.Compose.UI.Text.TextLayoutResult.Copy(AndroidX.Compose.UI.Text.TextLayoutInput! layoutInput, long size) -> AndroidX.Compose.UI.Text.TextLayoutResult!
AndroidX.Compose.UI.Text.TextLayoutResult.DidOverflowHeight.get -> bool
AndroidX.Compose.UI.Text.TextLayoutResult.DidOverflowWidth.get -> bool
AndroidX.Compose.UI.Text.TextLayoutResult.FirstBaseline.get -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetBidiRunDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.TextLayoutResult.GetHorizontalPosition(int offset, bool usePrimaryDirection) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineBaseline(int lineIndex) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineBottom(int lineIndex) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineEnd(int lineIndex, bool visibleEnd) -> int
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineForOffset(int offset) -> int
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineForVerticalPosition(float vertical) -> int
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineLeft(int lineIndex) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineRight(int lineIndex) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineStart(int lineIndex) -> int
AndroidX.Compose.UI.Text.TextLayoutResult.GetLineTop(int lineIndex) -> float
AndroidX.Compose.UI.Text.TextLayoutResult.GetOffsetForPosition(long position) -> int
AndroidX.Compose.UI.Text.TextLayoutResult.GetParagraphDirection(int offset) -> AndroidX.Compose.UI.Text.Style.ResolvedTextDirection!
AndroidX.Compose.UI.Text.TextLayoutResult.GetPathForRange(int start, int end) -> AndroidX.Compose.UI.Graphics.IPath!
AndroidX.Compose.UI.Text.TextLayoutResult.GetWordBoundary(int offset) -> long
AndroidX.Compose.UI.Text.TextLayoutResult.HasVisualOverflow.get -> bool
AndroidX.Compose.UI.Text.TextLayoutResult.IsLineEllipsized(int lineIndex) -> bool
AndroidX.Compose.UI.Text.TextLayoutResult.LastBaseline.get -> float
AndroidX.Compose.UI.Text.TextLayoutResult.LayoutInput.get -> AndroidX.Compose.UI.Text.TextLayoutInput!
AndroidX.Compose.UI.Text.TextLayoutResult.LineCount.get -> int
AndroidX.Compose.UI.Text.TextLayoutResult.MultiParagraph.get -> AndroidX.Compose.UI.Text.MultiParagraph!
AndroidX.Compose.UI.Text.TextLayoutResult.Size.get -> long
AndroidX.Compose.UI.Text.TextLinkStyles
AndroidX.Compose.UI.Text.TextLinkStyles.FocusedStyle.get -> AndroidX.Compose.UI.Text.SpanStyle?
AndroidX.Compose.UI.Text.TextLinkStyles.HoveredStyle.get -> AndroidX.Compose.UI.Text.SpanStyle?
AndroidX.Compose.UI.Text.TextLinkStyles.PressedStyle.get -> AndroidX.Compose.UI.Text.SpanStyle?
AndroidX.Compose.UI.Text.TextLinkStyles.Style.get -> AndroidX.Compose.UI.Text.SpanStyle?
AndroidX.Compose.UI.Text.TextLinkStyles.TextLinkStyles() -> void
AndroidX.Compose.UI.Text.TextLinkStyles.TextLinkStyles(AndroidX.Compose.UI.Text.SpanStyle? style, AndroidX.Compose.UI.Text.SpanStyle? focusedStyle, AndroidX.Compose.UI.Text.SpanStyle? hoveredStyle, AndroidX.Compose.UI.Text.SpanStyle? pressedStyle) -> void
AndroidX.Compose.UI.Text.TextMeasurer
AndroidX.Compose.UI.Text.TextMeasurer.Measure(AndroidX.Compose.UI.Text.AnnotatedString! text, AndroidX.Compose.UI.Text.TextStyle! style, int overflow, bool softWrap, int maxLines, System.Collections.Generic.IList<AndroidX.Compose.UI.Text.AnnotatedString.Range!>! placeholders, long constraints, AndroidX.Compose.UI.Unit.LayoutDirection! layoutDirection, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.FontFamily.IResolver! fontFamilyResolver, bool skipCache) -> AndroidX.Compose.UI.Text.TextLayoutResult!
AndroidX.Compose.UI.Text.TextMeasurer.Measure(string! text, AndroidX.Compose.UI.Text.TextStyle! style, int overflow, bool softWrap, int maxLines, long constraints, AndroidX.Compose.UI.Unit.LayoutDirection! layoutDirection, AndroidX.Compose.UI.Unit.IDensity! density, AndroidX.Compose.UI.Text.Font.FontFamily.IResolver! fontFamilyResolver, bool skipCache) -> AndroidX.Compose.UI.Text.TextLayoutResult!
AndroidX.Compose.UI.Text.TextMeasurer.TextMeasurer(AndroidX.Compose.UI.Text.Font.FontFamily.IResolver! defaultFontFamilyResolver, AndroidX.Compose.UI.Unit.IDensity! defaultDensity, AndroidX.Compose.UI.Unit.LayoutDirection! defaultLayoutDirection, int cacheSize) -> void
AndroidX.Compose.UI.Text.TextMeasurerKt
AndroidX.Compose.UI.Text.TextPainter
AndroidX.Compose.UI.Text.TextPainter.Paint(AndroidX.Compose.UI.Graphics.ICanvas! canvas, AndroidX.Compose.UI.Text.TextLayoutResult! textLayoutResult) -> void
AndroidX.Compose.UI.Text.TextPainterKt
AndroidX.Compose.UI.Text.TextRange
AndroidX.Compose.UI.Text.TextRange.CompanionStatic
AndroidX.Compose.UI.Text.TextRange.CompanionStatic.Zero_d9O1mEE.get -> long
AndroidX.Compose.UI.Text.TextRangeKt
AndroidX.Compose.UI.Text.TextStyle
AndroidX.Compose.UI.Text.TextStyle.Alpha.get -> float
AndroidX.Compose.UI.Text.TextStyle.Background.get -> long
AndroidX.Compose.UI.Text.TextStyle.BaselineShift.get -> AndroidX.Compose.UI.Text.Style.BaselineShift?
AndroidX.Compose.UI.Text.TextStyle.Brush.get -> AndroidX.Compose.UI.Graphics.Brush?
AndroidX.Compose.UI.Text.TextStyle.Color.get -> long
AndroidX.Compose.UI.Text.TextStyle.CompanionStatic
AndroidX.Compose.UI.Text.TextStyle.CompanionStatic.Default.get -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Copy(AndroidX.Compose.UI.Graphics.Brush? brush, float alpha, long fontSize, AndroidX.Compose.UI.Text.Font.FontWeight? fontWeight, AndroidX.Compose.UI.Text.Font.FontStyle? fontStyle, AndroidX.Compose.UI.Text.Font.FontSynthesis? fontSynthesis, AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, string? fontFeatureSettings, long letterSpacing, AndroidX.Compose.UI.Text.Style.BaselineShift? baselineShift, AndroidX.Compose.UI.Text.Style.TextGeometricTransform? textGeometricTransform, AndroidX.Compose.UI.Text.Intl.LocaleList? localeList, long background, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int textAlign, int textDirection, long lineHeight, AndroidX.Compose.UI.Text.Style.TextIndent? textIndent, AndroidX.Compose.UI.Text.PlatformTextStyle? platformStyle, AndroidX.Compose.UI.Text.Style.LineHeightStyle? lineHeightStyle, int lineBreak, int hyphens, AndroidX.Compose.UI.Text.Style.TextMotion? textMotion) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Copy(long color, long fontSize, AndroidX.Compose.UI.Text.Font.FontWeight? fontWeight, AndroidX.Compose.UI.Text.Font.FontStyle? fontStyle, AndroidX.Compose.UI.Text.Font.FontSynthesis? fontSynthesis, AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, string? fontFeatureSettings, long letterSpacing, AndroidX.Compose.UI.Text.Style.BaselineShift? baselineShift, AndroidX.Compose.UI.Text.Style.TextGeometricTransform? textGeometricTransform, AndroidX.Compose.UI.Text.Intl.LocaleList? localeList, long background, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int textAlign, int textDirection, long lineHeight, AndroidX.Compose.UI.Text.Style.TextIndent? textIndent, AndroidX.Compose.UI.Text.PlatformTextStyle? platformStyle, AndroidX.Compose.UI.Text.Style.LineHeightStyle? lineHeightStyle, int lineBreak, int hyphens, AndroidX.Compose.UI.Text.Style.TextMotion? textMotion) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.DrawStyle.get -> AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle?
AndroidX.Compose.UI.Text.TextStyle.FontFamily.get -> AndroidX.Compose.UI.Text.Font.FontFamily?
AndroidX.Compose.UI.Text.TextStyle.FontFeatureSettings.get -> string?
AndroidX.Compose.UI.Text.TextStyle.FontSize.get -> long
AndroidX.Compose.UI.Text.TextStyle.FontStyle.get -> AndroidX.Compose.UI.Text.Font.FontStyle?
AndroidX.Compose.UI.Text.TextStyle.FontSynthesis.get -> AndroidX.Compose.UI.Text.Font.FontSynthesis?
AndroidX.Compose.UI.Text.TextStyle.FontWeight.get -> AndroidX.Compose.UI.Text.Font.FontWeight?
AndroidX.Compose.UI.Text.TextStyle.GetHyphens() -> int
AndroidX.Compose.UI.Text.TextStyle.GetLineBreak() -> int
AndroidX.Compose.UI.Text.TextStyle.GetTextAlign() -> int
AndroidX.Compose.UI.Text.TextStyle.GetTextDirection() -> int
AndroidX.Compose.UI.Text.TextStyle.HasSameDrawAffectingAttributes(AndroidX.Compose.UI.Text.TextStyle! other) -> bool
AndroidX.Compose.UI.Text.TextStyle.HasSameLayoutAffectingAttributes(AndroidX.Compose.UI.Text.TextStyle! other) -> bool
AndroidX.Compose.UI.Text.TextStyle.Hyphens.get -> AndroidX.Compose.UI.Text.Style.Hyphens?
AndroidX.Compose.UI.Text.TextStyle.LetterSpacing.get -> long
AndroidX.Compose.UI.Text.TextStyle.LineBreak.get -> AndroidX.Compose.UI.Text.Style.LineBreak?
AndroidX.Compose.UI.Text.TextStyle.LineHeight.get -> long
AndroidX.Compose.UI.Text.TextStyle.LineHeightStyle.get -> AndroidX.Compose.UI.Text.Style.LineHeightStyle?
AndroidX.Compose.UI.Text.TextStyle.LocaleList.get -> AndroidX.Compose.UI.Text.Intl.LocaleList?
AndroidX.Compose.UI.Text.TextStyle.Merge(AndroidX.Compose.UI.Text.ParagraphStyle! other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Merge(AndroidX.Compose.UI.Text.SpanStyle! other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Merge(AndroidX.Compose.UI.Text.TextStyle? other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Merge(long color, long fontSize, AndroidX.Compose.UI.Text.Font.FontWeight? fontWeight, AndroidX.Compose.UI.Text.Font.FontStyle? fontStyle, AndroidX.Compose.UI.Text.Font.FontSynthesis? fontSynthesis, AndroidX.Compose.UI.Text.Font.FontFamily? fontFamily, string? fontFeatureSettings, long letterSpacing, AndroidX.Compose.UI.Text.Style.BaselineShift? baselineShift, AndroidX.Compose.UI.Text.Style.TextGeometricTransform? textGeometricTransform, AndroidX.Compose.UI.Text.Intl.LocaleList? localeList, long background, AndroidX.Compose.UI.Text.Style.TextDecoration? textDecoration, AndroidX.Compose.UI.Graphics.Shadow? shadow, AndroidX.Compose.UI.Graphics.Drawscope.DrawStyle? drawStyle, int textAlign, int textDirection, long lineHeight, AndroidX.Compose.UI.Text.Style.TextIndent? textIndent, AndroidX.Compose.UI.Text.Style.LineHeightStyle? lineHeightStyle, int lineBreak, int hyphens, AndroidX.Compose.UI.Text.PlatformTextStyle? platformStyle, AndroidX.Compose.UI.Text.Style.TextMotion? textMotion) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.PlatformStyle.get -> AndroidX.Compose.UI.Text.PlatformTextStyle?
AndroidX.Compose.UI.Text.TextStyle.Plus(AndroidX.Compose.UI.Text.ParagraphStyle! other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Plus(AndroidX.Compose.UI.Text.SpanStyle! other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Plus(AndroidX.Compose.UI.Text.TextStyle! other) -> AndroidX.Compose.UI.Text.TextStyle!
AndroidX.Compose.UI.Text.TextStyle.Shadow.get -> AndroidX.Compose.UI.Graphics.Shadow?
AndroidX.Compose.UI.Text.TextStyle.TextAlign.get -> AndroidX.Compose.UI.Text.Style.TextAlign?
AndroidX.Compose.UI.Text.TextStyle.TextDecoration.get -> AndroidX.Compose.UI.Text.Style.TextDecoration?
AndroidX.Compose.UI.Text.TextStyle.TextDirection.get -> AndroidX.Compose.UI.Text.Style.TextDirection?
AndroidX.Compose.UI.Text.TextStyle.TextGeometricTransform.get -> AndroidX.Compose.UI.Text.Style.TextGeometricTransform?
AndroidX.Compose.UI.Text.TextStyle.TextIndent.get -> AndroidX.Compose.UI.Text.Style.TextIndent?
AndroidX.Compose.UI.Text.TextStyle.TextMotion.get -> AndroidX.Compose.UI.Text.Style.TextMotion?
AndroidX.Compose.UI.Text.TextStyle.ToParagraphStyle() -> AndroidX.Compose.UI.Text.ParagraphStyle!
AndroidX.Compose.UI.Text.TextStyle.ToSpanStyle() -> AndroidX.Compose.UI.Text.SpanStyle!
AndroidX.Compose.UI.Text.TextStyleKt
AndroidX.Compose.UI.Text.TextStyleKt.WhenMappings
AndroidX.Compose.UI.Text.TtsAnnotation
AndroidX.Compose.UI.Text.TtsAnnotation.TtsAnnotation(nint javaReference, Android.Runtime.JniHandleOwnership transfer) -> void
AndroidX.Compose.UI.Text.UrlAnnotation
AndroidX.Compose.UI.Text.UrlAnnotation.Url.get -> string!
AndroidX.Compose.UI.Text.UrlAnnotation.UrlAnnotation(string! url) -> void
AndroidX.Compose.UI.Text.VerbatimTtsAnnotation
AndroidX.Compose.UI.Text.VerbatimTtsAnnotation.Verbatim.get -> string!
AndroidX.Compose.UI.Text.VerbatimTtsAnnotation.VerbatimTtsAnnotation(string! verbatim) -> void
abstract AndroidX.Compose.UI.Text.Font.AndroidFont.Style.get -> int
abstract AndroidX.Compose.UI.Text.Font.AndroidFont.Weight.get -> AndroidX.Compose.UI.Text.Font.FontWeight!
abstract AndroidX.Compose.UI.Text.LinkAnnotation.LinkInteractionListener.get -> AndroidX.Compose.UI.Text.ILinkInteractionListener?
abstract AndroidX.Compose.UI.Text.LinkAnnotation.Styles.get -> AndroidX.Compose.UI.Text.TextLinkStyles?
const AndroidX.Compose.UI.Text.Font.AndroidFont.InterfaceConsts.MaximumAsyncTimeoutMillis = 15000 -> long
const AndroidX.Compose.UI.Text.Font.Font.MaximumAsyncTimeoutMillis = 15000 -> long
const AndroidX.Compose.UI.Text.Font.FontCompanionStatic.MaximumAsyncTimeoutMillis = 15000 -> long
const AndroidX.Compose.UI.Text.Font.ResourceFont.InterfaceConsts.MaximumAsyncTimeoutMillis = 15000 -> long
const AndroidX.Compose.UI.Text.Input.EditingBuffer.Nowhere = -1 -> int
const AndroidX.Compose.UI.Text.Input.PartialGapBuffer.BufSize = 255 -> int
const AndroidX.Compose.UI.Text.Input.PartialGapBuffer.Nowhere = -1 -> int
const AndroidX.Compose.UI.Text.Input.PartialGapBuffer.SurroundingSize = 64 -> int
override AndroidX.Compose.UI.Text.ActualAtomicReferenceJvm_jvmAndAndroidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.InlineClassUtils_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.LayoutCompat_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.LayoutHelper_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.LayoutIntrinsics_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.ListUtils_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.PaintExtensions_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Selection.SegmentFinder_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Selection.WordBoundary_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.SpannedExtensions_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.StaticLayoutFactory.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.StaticLayoutFactory_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Style.IndentationFixSpan_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Style.IndentationFixSpan_androidKt.WhenMappings.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Style.LineHeightStyleSpan_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.Style.PlaceholderSpan_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.TextLayoutGetRangeForRectExtensions_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Android.TextLayout_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AndroidParagraph_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AndroidTextStyle_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedString.Builder.BulletScope.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedString.Builder.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedString.CompanionStatic.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedString.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedString.Range.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.AnnotatedStringKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Bullet.CompanionStatic.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.Bullet.JniPeerMembers.get -> Java.Interop.JniPeerMembers!
override AndroidX.Compose.UI.Text.CharHelpers_androidKt.JniPeerMembers.get -> Java.Interop.JniPeerMembers!