forked from protocool/AckMate
-
Notifications
You must be signed in to change notification settings - Fork 5
/
class-dump.mm
3763 lines (3266 loc) · 135 KB
/
class-dump.mm
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
/*
* Generated by class-dump 3.1.1.
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2006 by Steve Nygard.
*/
struct ATSUI_render {
struct TextLayout _field1;
struct list<ATSUI_render::new_node, std::allocator<ATSUI_render::new_node>> _field2;
};
struct ATSUTab;
struct OakClickInfo {
int type;
unsigned int tabIndex;
};
struct OpaqueMenuRef;
struct TextLayout {
unsigned int atsuFontID;
int fontSize;
int M_ascend;
int M_descend;
int M_charWidth;
unsigned int M_lineHeight;
struct vector<ATSUTab, std::allocator<ATSUTab>> tabStops;
unsigned int tabSize;
_Bool antiAlias;
};
struct _Alloc_hider {
char *_M_p;
};
struct _Deque_impl {
struct callback_record **_M_map;
unsigned int _M_map_size;
struct _Deque_iterator<callback_record, callback_record&, callback_record*> _M_start;
struct _Deque_iterator<callback_record, callback_record&, callback_record*> _M_finish;
};
struct _Deque_iterator<callback_record, callback_record&, callback_record*> {
struct callback_record *_M_cur;
struct callback_record *_M_first;
struct callback_record *_M_last;
struct callback_record **_M_node;
};
struct _Deque_iterator<text::undo_manager::node, text::undo_manager::node&, text::undo_manager::node*> {
struct node *_field1;
struct node *_field2;
struct node *_field3;
struct node **_field4;
};
struct _List_impl {
struct _List_node_base _M_node;
};
struct _List_iterator<text::storage::observer*> {
struct _List_node_base *_field1;
};
struct _List_node_base {
struct _List_node_base *_M_next;
struct _List_node_base *_M_prev;
};
struct _NSPoint {
float x;
float y;
};
struct _NSRange {
unsigned int _field1;
unsigned int _field2;
};
struct _NSRect {
struct _NSPoint origin;
struct _NSSize size;
};
struct _NSSize {
float width;
float height;
};
struct _NSZone;
struct _Rb_tree<bit_stack::storage, std::pair<const bit_stack::storage, objc_ptr<objc_object*>>, std::_Select1st<std::pair<const bit_stack::storage, objc_ptr<objc_object*>>>, std::less<bit_stack::storage>, std::allocator<std::pair<const bit_stack::storage, objc_ptr<objc_object*>>>> {
struct _Rb_tree_impl<std::less<bit_stack::storage>, false> _M_impl;
};
struct _Rb_tree<int, std::pair<const int, std::pair<int, int>>, std::_Select1st<std::pair<const int, std::pair<int, int>>>, std::less<int>, std::allocator<std::pair<const int, std::pair<int, int>>>> {
struct _Rb_tree_impl<std::less<int>, false> _M_impl;
};
struct _Rb_tree<size_t, std::pair<const size_t, size_t>, std::_Select1st<std::pair<const size_t, size_t>>, std::less<size_t>, std::allocator<std::pair<const size_t, size_t>>> {
struct _Rb_tree_impl<std::less<size_t>, false> _field1;
};
struct _Rb_tree<size_t, std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>, std::_Select1st<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>> {
struct _Rb_tree_impl<std::less<size_t>, false> _field1;
};
struct _Rb_tree<size_t, std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>, std::_Select1st<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>> {
struct _Rb_tree_impl<std::less<size_t>, false> _field1;
};
struct _Rb_tree<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>, std::_Select1st<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>> {
struct _Rb_tree_impl<std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, false> _M_impl;
};
struct _Rb_tree<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>, std::_Select1st<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>> {
struct _Rb_tree_impl<std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, false> _M_impl;
};
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>, std::_Select1st<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>> {
struct _Rb_tree_impl<std::less<text::undo_key>, false> _field1;
};
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>, std::_Select1st<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>> {
struct _Rb_tree_impl<std::less<text::undo_key>, false> _field1;
};
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, text::selection>, std::_Select1st<std::pair<const text::undo_key, text::selection>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, text::selection>>> {
struct _Rb_tree_impl<std::less<text::undo_key>, false> _field1;
};
struct _Rb_tree<text::view::filter_index, std::pair<const text::view::filter_index, text::filter*>, std::_Select1st<std::pair<const text::view::filter_index, text::filter*>>, std::less<text::view::filter_index>, std::allocator<std::pair<const text::view::filter_index, text::filter*>>> {
struct _Rb_tree_impl<std::less<text::view::filter_index>, false> _field1;
};
struct _Rb_tree<text::view::folding_filter::folding_t, text::view::folding_filter::folding_t, std::_Identity<text::view::folding_filter::folding_t>, std::less<text::view::folding_filter::folding_t>, std::allocator<text::view::folding_filter::folding_t>> {
struct _Rb_tree_impl<std::less<text::view::folding_filter::folding_t>, false> _field1;
};
struct _Rb_tree<text::view::folding_filter::marker_t, text::view::folding_filter::marker_t, std::_Identity<text::view::folding_filter::marker_t>, std::less<text::view::folding_filter::marker_t>, std::allocator<text::view::folding_filter::marker_t>> {
struct _Rb_tree_impl<std::less<text::view::folding_filter::marker_t>, false> _field1;
};
struct _Rb_tree<unichar, unichar, std::_Identity<unichar>, std::less<unichar>, std::allocator<unichar>> {
struct _Rb_tree_impl<std::less<unichar>, false> _M_impl;
};
struct _Rb_tree_impl<std::less<bit_stack::storage>, false> {
struct less<bit_stack::storage> _M_key_compare;
struct _Rb_tree_node_base _M_header;
unsigned int _M_node_count;
};
struct _Rb_tree_impl<std::less<int>, false> {
struct less<int> _M_key_compare;
struct _Rb_tree_node_base _M_header;
unsigned int _M_node_count;
};
struct _Rb_tree_impl<std::less<size_t>, false> {
struct less<size_t> _field1;
struct _Rb_tree_node_base _field2;
unsigned int _field3;
};
struct _Rb_tree_impl<std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, false> {
struct less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>> _M_key_compare;
struct _Rb_tree_node_base _M_header;
unsigned int _M_node_count;
};
struct _Rb_tree_impl<std::less<text::undo_key>, false> {
struct less<text::undo_key> _field1;
struct _Rb_tree_node_base _field2;
unsigned int _field3;
};
struct _Rb_tree_impl<std::less<text::view::filter_index>, false> {
struct less<text::view::filter_index> _field1;
struct _Rb_tree_node_base _field2;
unsigned int _field3;
};
struct _Rb_tree_impl<std::less<text::view::folding_filter::folding_t>, false> {
struct less<text::view::folding_filter::folding_t> _field1;
struct _Rb_tree_node_base _field2;
unsigned int _field3;
};
struct _Rb_tree_impl<std::less<text::view::folding_filter::marker_t>, false> {
struct less<text::view::folding_filter::marker_t> _field1;
struct _Rb_tree_node_base _field2;
unsigned int _field3;
};
struct _Rb_tree_impl<std::less<unichar>, false> {
struct less<unichar> _M_key_compare;
struct _Rb_tree_node_base _M_header;
unsigned int _M_node_count;
};
struct _Rb_tree_node_base {
int _M_color;
struct _Rb_tree_node_base *_M_parent;
struct _Rb_tree_node_base *_M_left;
struct _Rb_tree_node_base *_M_right;
};
struct _Vector_impl {
struct shared_buffer<text::char_t> *_M_start;
struct shared_buffer<text::char_t> *_M_finish;
struct shared_buffer<text::char_t> *_M_end_of_storage;
};
struct __CFArray;
struct _opaque_pthread_cond_t {
long _field1;
unsigned char _field2[24];
};
struct _opaque_pthread_mutex_t {
long _field1;
unsigned char _field2[40];
};
struct _opaque_pthread_t;
struct action_map {
struct map<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>> _field1;
};
struct basic_string<char, std::char_traits<char>, std::allocator<char>> {
struct _Alloc_hider _field1;
};
struct basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>;
struct bookmark_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct map<size_t, size_t, std::less<size_t>, std::allocator<std::pair<const size_t, size_t>>> _field4;
};
struct callback_record;
struct completion_helper {
unsigned int _field1;
unsigned int _field2;
unsigned int _field3;
struct view_iterator _field4;
struct view_iterator _field5;
struct vector<std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>, std::allocator<std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>>> _field6;
};
struct deque<callback_record, std::allocator<callback_record>> {
struct _Deque_impl _M_impl;
};
struct deque<text::undo_manager::node, std::allocator<text::undo_manager::node>> {
struct _Deque_impl _field1;
};
struct detail {
struct vector<shared_buffer<text::char_t>, std::allocator<shared_buffer<text::char_t>>> _field1;
struct list<text::storage::observer*, std::allocator<text::storage::observer*>> _field2;
struct _opaque_pthread_mutex_t _field3;
};
struct erase_t;
struct filter;
struct folding_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct ptrn_t *_field4;
struct ptrn_t *_field5;
struct set<text::view::folding_filter::marker_t, std::less<text::view::folding_filter::marker_t>, std::allocator<text::view::folding_filter::marker_t>> _field6;
struct set<text::view::folding_filter::folding_t, std::less<text::view::folding_filter::folding_t>, std::allocator<text::view::folding_filter::folding_t>> _field7;
_Bool _field8;
unsigned int _field9;
};
struct insert_t;
struct iterator {
unsigned int _field1;
unsigned int _field2;
struct storage *_field3;
};
struct iterator_observer {
void **_field1;
struct list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>> _field2;
struct list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>> _field3;
struct list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>> _field4;
struct list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>> _field5;
struct map<text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>> _field6;
struct map<text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>> _field7;
struct vector<text::iterator_observer::pending_erase, std::allocator<text::iterator_observer::pending_erase>> _field8;
struct vector<text::iterator_observer::pending_insert, std::allocator<text::iterator_observer::pending_insert>> _field9;
struct vector<unichar, std::allocator<unichar>> _field10;
unsigned int _field11;
_Bool _field12;
_Bool _field13;
_Bool _field14;
};
struct kill_buffer_t {
struct vector<unichar, std::allocator<unichar>> _field1;
unsigned int _field2;
struct iterator _field3;
_Bool _field4;
};
struct less<bit_stack::storage>;
struct less<int>;
struct less<size_t>;
struct less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>;
struct less<text::undo_key>;
struct less<text::view::filter_index>;
struct less<text::view::folding_filter::folding_t>;
struct less<text::view::folding_filter::marker_t>;
struct less<unichar>;
struct line_range;
struct list<ATSUI_render::new_node, std::allocator<ATSUI_render::new_node>> {
struct _List_impl _M_impl;
};
struct list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>> {
struct _List_impl _field1;
};
struct list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>> {
struct _List_impl _field1;
};
struct list<text::storage::observer*, std::allocator<text::storage::observer*>> {
struct _List_impl _field1;
};
struct map<bit_stack::storage, objc_ptr<objc_object*>, std::less<bit_stack::storage>, std::allocator<std::pair<const bit_stack::storage, objc_ptr<objc_object*>>>> {
struct _Rb_tree<bit_stack::storage, std::pair<const bit_stack::storage, objc_ptr<objc_object*>>, std::_Select1st<std::pair<const bit_stack::storage, objc_ptr<objc_object*>>>, std::less<bit_stack::storage>, std::allocator<std::pair<const bit_stack::storage, objc_ptr<objc_object*>>>> _field1;
};
struct map<int, std::pair<int, int>, std::less<int>, std::allocator<std::pair<const int, std::pair<int, int>>>> {
struct _Rb_tree<int, std::pair<const int, std::pair<int, int>>, std::_Select1st<std::pair<const int, std::pair<int, int>>>, std::less<int>, std::allocator<std::pair<const int, std::pair<int, int>>>> _field1;
};
struct map<size_t, size_t, std::less<size_t>, std::allocator<std::pair<const size_t, size_t>>> {
struct _Rb_tree<size_t, std::pair<const size_t, size_t>, std::_Select1st<std::pair<const size_t, size_t>>, std::less<size_t>, std::allocator<std::pair<const size_t, size_t>>> _field1;
};
struct map<size_t, std::_List_iterator<text::iterator_observer::subset>, std::less<size_t>, std::allocator<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>> {
struct _Rb_tree<size_t, std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>, std::_Select1st<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>> _field1;
};
struct map<size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>> {
struct _Rb_tree<size_t, std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>, std::_Select1st<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>> _field1;
};
struct map<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>> {
struct _Rb_tree<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>, std::_Select1st<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, action_map::action*>>> _M_t;
};
struct map<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>> {
struct _Rb_tree<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>, std::_Select1st<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>> _M_t;
};
struct map<text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>> {
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>, std::_Select1st<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>, std::allocator<std::pair<text::iterator_observer::subset, text::iterator_observer::subset>>>>>> _field1;
};
struct map<text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>> {
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>, std::_Select1st<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, std::list<text::iterator_observer::subset, std::allocator<text::iterator_observer::subset>>>>> _field1;
};
struct map<text::undo_key, text::selection, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, text::selection>>> {
struct _Rb_tree<text::undo_key, std::pair<const text::undo_key, text::selection>, std::_Select1st<std::pair<const text::undo_key, text::selection>>, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, text::selection>>> _field1;
};
struct map<text::view::filter_index, text::filter*, std::less<text::view::filter_index>, std::allocator<std::pair<const text::view::filter_index, text::filter*>>> {
struct _Rb_tree<text::view::filter_index, std::pair<const text::view::filter_index, text::filter*>, std::_Select1st<std::pair<const text::view::filter_index, text::filter*>>, std::less<text::view::filter_index>, std::allocator<std::pair<const text::view::filter_index, text::filter*>>> _field1;
};
struct map<uint32_t, bit_stack::storage, std::less<uint32_t>, std::allocator<std::pair<const uint32_t, bit_stack::storage>>>;
struct node;
struct node_t;
struct observer {
void **_field1;
};
struct pending_erase;
struct pending_insert;
struct pos {
unsigned int _field1;
unsigned int _field2;
};
struct ptrn_t;
struct selection {
struct view_iterator _field1;
struct view_iterator _field2;
struct view_iterator _field3;
_Bool _field4;
struct vector<unichar, std::allocator<unichar>> _field5;
};
struct set<text::view::folding_filter::folding_t, std::less<text::view::folding_filter::folding_t>, std::allocator<text::view::folding_filter::folding_t>> {
struct _Rb_tree<text::view::folding_filter::folding_t, text::view::folding_filter::folding_t, std::_Identity<text::view::folding_filter::folding_t>, std::less<text::view::folding_filter::folding_t>, std::allocator<text::view::folding_filter::folding_t>> _field1;
};
struct set<text::view::folding_filter::marker_t, std::less<text::view::folding_filter::marker_t>, std::allocator<text::view::folding_filter::marker_t>> {
struct _Rb_tree<text::view::folding_filter::marker_t, text::view::folding_filter::marker_t, std::_Identity<text::view::folding_filter::marker_t>, std::less<text::view::folding_filter::marker_t>, std::allocator<text::view::folding_filter::marker_t>> _field1;
};
struct set<unichar, std::less<unichar>, std::allocator<unichar>> {
struct _Rb_tree<unichar, unichar, std::_Identity<unichar>, std::less<unichar>, std::allocator<unichar>> _field1;
};
struct shared_buffer<text::char_t>;
struct snippet_observer_t {
void **_field1;
struct iterator _field2;
struct snippet_t *_field3;
struct vector<text::snippet_observer_t::insert_t, std::allocator<text::snippet_observer_t::insert_t>> _field4;
struct vector<text::snippet_observer_t::erase_t, std::allocator<text::snippet_observer_t::erase_t>> _field5;
};
struct snippet_t;
struct soft_wrap_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct pos _field4;
struct pos _field5;
struct vector<text::view::soft_wrap_filter::line_range, std::allocator<text::view::soft_wrap_filter::line_range>> _field6;
};
struct spellcheck_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct vector<text::view::spellcheck_filter::node_t, std::allocator<text::view::spellcheck_filter::node_t>> _field4;
};
struct stack<callback_record, std::deque<callback_record, std::allocator<callback_record>>> {
struct deque<callback_record, std::allocator<callback_record>> _field1;
};
struct stack<text::undo_manager::node, std::deque<text::undo_manager::node, std::allocator<text::undo_manager::node>>> {
struct deque<text::undo_manager::node, std::allocator<text::undo_manager::node>> _field1;
};
struct storage {
struct detail _field1;
struct kill_buffer_t _field2;
struct vector<text::storage::undo_record, std::allocator<text::storage::undo_record>> _field3;
unsigned int _field4;
unsigned int _field5;
unsigned int _field6;
unsigned int _field7;
struct undo_manager _field8;
};
struct storage_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct _List_iterator<text::storage::observer*> _field4;
};
struct title_action_map {
struct map<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char>>, title_action_map::action*>>> _field1;
};
struct tokenize_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct __CFArray *_field4;
unsigned int _field5;
struct vector<std::map<uint32_t, bit_stack::storage, std::less<uint32_t>, std::allocator<std::pair<const uint32_t, bit_stack::storage>>>, std::allocator<std::map<uint32_t, bit_stack::storage, std::less<uint32_t>, std::allocator<std::pair<const uint32_t, bit_stack::storage>>>>> _field6;
struct map<size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>, std::less<size_t>, std::allocator<std::pair<const size_t, std::stack<nfa_wrapper, std::deque<nfa_wrapper, std::allocator<nfa_wrapper>>>>>> _field7;
struct _opaque_pthread_t *_field8;
struct _opaque_pthread_cond_t _field9;
struct _opaque_pthread_cond_t _field10;
unsigned int _field11;
unsigned int _field12;
unsigned int _field13;
unsigned int _field14;
unsigned int _field15;
_Bool _field16;
int _field17;
int _field18;
void *_field19;
};
struct undo_manager {
struct stack<text::undo_manager::node, std::deque<text::undo_manager::node, std::allocator<text::undo_manager::node>>> _field1;
};
struct undo_record;
struct vector<ATSUTab, std::allocator<ATSUTab>> {
struct _Vector_impl _M_impl;
};
struct vector<NSTrackingRectTag, std::allocator<NSTrackingRectTag>> {
struct _Vector_impl _field1;
};
struct vector<shared_buffer<text::char_t>, std::allocator<shared_buffer<text::char_t>>> {
struct _Vector_impl _field1;
};
struct vector<std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>, std::allocator<std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t>>>> {
struct _Vector_impl _field1;
};
struct vector<std::map<uint32_t, bit_stack::storage, std::less<uint32_t>, std::allocator<std::pair<const uint32_t, bit_stack::storage>>>, std::allocator<std::map<uint32_t, bit_stack::storage, std::less<uint32_t>, std::allocator<std::pair<const uint32_t, bit_stack::storage>>>>> {
struct _Vector_impl _field1;
};
struct vector<std::vector<text::char_t, std::allocator<text::char_t>>, std::allocator<std::vector<text::char_t, std::allocator<text::char_t>>>> {
struct _Vector_impl _field1;
};
struct vector<text::char_t, std::allocator<text::char_t>>;
struct vector<text::iterator_observer::pending_erase, std::allocator<text::iterator_observer::pending_erase>> {
struct _Vector_impl _field1;
};
struct vector<text::iterator_observer::pending_insert, std::allocator<text::iterator_observer::pending_insert>> {
struct _Vector_impl _field1;
};
struct vector<text::snippet_observer_t::erase_t, std::allocator<text::snippet_observer_t::erase_t>> {
struct _Vector_impl _field1;
};
struct vector<text::snippet_observer_t::insert_t, std::allocator<text::snippet_observer_t::insert_t>> {
struct _Vector_impl _field1;
};
struct vector<text::storage::undo_record, std::allocator<text::storage::undo_record>> {
struct _Vector_impl _field1;
};
struct vector<text::view*, std::allocator<text::view*>> {
struct _Vector_impl _field1;
};
struct vector<text::view::soft_wrap_filter::line_range, std::allocator<text::view::soft_wrap_filter::line_range>> {
struct _Vector_impl _field1;
};
struct vector<text::view::spellcheck_filter::node_t, std::allocator<text::view::spellcheck_filter::node_t>> {
struct _Vector_impl _field1;
};
struct vector<unichar, std::allocator<unichar>> {
struct _Vector_impl _field1;
};
struct view {
struct iterator_observer _field1;
struct iterator_observer _field2;
struct snippet_observer_t _field3;
struct selection _field4;
struct selection _field5;
unsigned int _field6;
unsigned int _field7;
unsigned int _field8;
unsigned int _field9;
unsigned int _field10;
unsigned int _field11;
unsigned int _field12;
_Bool _field13;
_Bool _field14;
_Bool _field15;
_Bool _field16;
_Bool _field17;
_Bool _field18;
_Bool _field19;
struct map<size_t, std::_List_iterator<text::iterator_observer::subset>, std::less<size_t>, std::allocator<std::pair<const size_t, std::_List_iterator<text::iterator_observer::subset>>>> _field20;
int _field21;
_Bool _field22;
_Bool _field23;
struct storage_filter _field24;
struct tokenize_filter _field25;
struct bookmark_filter _field26;
struct spellcheck_filter _field27;
struct folding_filter _field28;
struct soft_wrap_filter _field29;
struct view_filter _field30;
struct map<text::view::filter_index, text::filter*, std::less<text::view::filter_index>, std::allocator<std::pair<const text::view::filter_index, text::filter*>>> _field31;
struct completion_helper _field32;
};
struct view_filter {
void **_field1;
struct filter *_field2;
struct filter *_field3;
struct map<text::undo_key, text::selection, std::less<text::undo_key>, std::allocator<std::pair<const text::undo_key, text::selection>>> _field4;
};
struct view_iterator {
struct view *_field1;
struct iterator _field2;
unsigned int _field3;
unsigned int _field4;
};
/*
* File: /Applications/TextMate.app/Contents/MacOS/TextMate
* Arch: Intel 80x86 (i386)
*/
@protocol NSTextInput
- (void)insertText:(id)fp8;
- (void)doCommandBySelector:(SEL)fp8;
- (void)setMarkedText:(id)fp8 selectedRange:(struct _NSRange)fp12;
- (void)unmarkText;
- (BOOL)hasMarkedText;
- (long)conversationIdentifier;
- (id)attributedSubstringFromRange:(struct _NSRange)fp8;
- (struct _NSRange)markedRange;
- (struct _NSRange)selectedRange;
- (struct _NSRect)firstRectForCharacterRange:(struct _NSRange)fp8;
- (unsigned int)characterIndexForPoint:(struct _NSPoint)fp8;
- (id)validAttributesForMarkedText;
@end
@protocol OakKeyObserver
- (BOOL)shouldSwallowEvent:(id)fp8;
@end
@protocol QSStringRanker
- (id)initWithString:(id)fp8;
- (double)scoreForAbbreviation:(id)fp8;
- (id)maskForAbbreviation:(id)fp8;
@end
@protocol TextMateServerProtocol
- (int)textMateServerProtocolVersion;
- (BOOL)openFiles:(id)fp8 options:(id)fp12 delegate:(id)fp16 didCloseSelector:(SEL)fp20;
@end
@interface AppDelegate : NSObject
{
OakEncodingView *savePanelAccessoryView;
NSPanel *fillWithStringPanel;
NSPanel *goToLinePanel;
NSTextField *goToLineTextField;
NSView *openPanelAccessoryView;
NSArray *allWindowDelegates;
BOOL shouldOpenSavedDocuments;
unsigned int numberOfUntitledDocuments;
unsigned int nextUntitledDocumentCount;
unsigned int numberOfUntitledProjects;
unsigned int nextUntitledProjectCount;
NSString *currentDirectory;
}
+ (void)initialize;
- (void)applicationWillFinishLaunching:(id)fp8;
- (void)applicationDidFinishLaunching:(id)fp8;
- (void)showExtendedTerminalUsageHelp:(id)fp8;
- (void)readPrefs:(id)fp8;
- (int)orderFrontRegistrationPanel:(id)fp8;
- (void)orderFrontPreferences:(id)fp8;
- (void)orderFrontPasteboardPanel:(id)fp8;
- (void)newProject:(id)fp8;
- (void)newDocument:(id)fp8;
- (void)workaroundHideBug:(id)fp8;
- (id)collectAuxiliaryInfo;
- (id)bundlePaths;
- (void)openFiles:(id)fp8;
- (void)openDocument:(id)fp8;
- (BOOL)panel:(id)fp8 shouldShowFilename:(id)fp12;
- (BOOL)applicationOpenUntitledFile:(id)fp8;
- (BOOL)applicationShouldHandleReopen:(id)fp8 hasVisibleWindows:(BOOL)fp12;
- (BOOL)applicationShouldOpenUntitledFile:(id)fp8;
- (void)application:(id)fp8 openFiles:(id)fp12;
- (BOOL)application:(id)fp8 openFile:(id)fp12;
- (void)sendFeedback:(id)fp8;
- (void)orderFrontFindPanel:(id)fp8;
- (void)orderFrontFindInProjectPanel:(id)fp8;
- (void)executeCommand:(id)fp8;
- (void)rememberDocumentFiles:(id)fp8;
- (void)didCloseWindow:(id)fp8 callStack:(id)fp12;
- (int)applicationShouldTerminate:(id)fp8;
- (BOOL)application:(id)fp8 delegateHandlesKey:(id)fp12;
- (id)orderedDocuments;
- (unsigned long)registerUntitledDocument;
- (void)unregisterUntitledDocument:(unsigned long)fp8;
- (unsigned long)registerUntitledProject;
- (void)unregisterUntitledProject:(unsigned long)fp8;
- (void)orderFrontGoToLinePanel:(id)fp8;
- (void)goToLineAction:(id)fp8;
- (void)orderFrontReleaseNotes:(id)fp8;
- (void)goToSupportPage:(id)fp8;
- (void)selectFileAtTabIndex:(id)fp8;
- (void)menuNeedsUpdate:(id)fp8;
- (id)supportPath;
- (id)environmentVariables;
@end
@interface OakApplication : NSApplication
{
NSMutableArray *keyObservers;
}
- (id)init;
- (void)addKeyObserver:(id)fp8;
- (void)removeKeyObserver:(id)fp8;
- (void)sendEvent:(id)fp8;
@end
@interface OakEncodingView : NSView
{
NSPopUpButton *encodingPopupButton;
NSPopUpButton *lineEndingPopupButton;
}
- (int)fileEncodingChoice;
- (void)setFileEncodingChoice:(int)fp8;
- (int)lineEndingChoice;
- (void)setLineEndingChoice:(int)fp8;
@end
@interface OakHackedDocumentController : NSDocumentController
{
}
- (unsigned int)maximumRecentDocumentCount;
@end
@interface TextMateServer : NSObject <TextMateServerProtocol>
{
}
- (int)textMateServerProtocolVersion;
- (BOOL)openFiles:(id)fp8 options:(id)fp12 delegate:(id)fp16 didCloseSelector:(SEL)fp20;
@end
@interface OakDocumentDidCloseObserver : NSObject
{
id delegate;
SEL selector;
id fileObject;
}
- (void)documentDidClose:(id)fp8;
- (void)setSelector:(SEL)fp8;
- (void)dealloc;
@end
@interface OakArrayToStringTransformer : NSValueTransformer
{
}
+ (Class)transformedValueClass;
+ (BOOL)allowsReverseTransformation;
+ (void)load;
- (id)transformedValue:(id)fp8;
- (id)reverseTransformedValue:(id)fp8;
@end
@interface OakStringListTransformer : NSValueTransformer
{
NSArray *stringList;
}
+ (Class)transformedValueClass;
+ (BOOL)allowsReverseTransformation;
+ (void)setStringListTransformer:(id)fp8 forName:(id)fp12;
+ (void)createTransformerWithName:(id)fp8 andObjects:(id)fp12;
- (void)dealloc;
- (id)transformedValue:(id)fp8;
- (id)reverseTransformedValue:(id)fp8;
@end
@interface OakVerifyFileTransformer : NSValueTransformer
{
}
+ (Class)transformedValueClass;
- (id)transformedValue:(id)fp8;
@end
@interface OakPreOrderArrayEnumerator : NSEnumerator
{
NSMutableArray *stack;
}
- (id)initWithArray:(id)fp8;
- (void)dealloc;
- (id)nextObject;
@end
@interface NSTextView (OakFindNextPrevious)
- (void)copySelectionToFindPboard:(id)fp8;
- (void)findNext:(id)fp8;
- (void)findPrevious:(id)fp8;
- (id)findWithOptions:(id)fp8;
@end
@interface NSDictionary (PrettyPrint)
- (BOOL)plistFitsSingleLine;
- (id)stringWithIndent:(unsigned int)fp8 isKey:(BOOL)fp12 isSingleLine:(BOOL)fp16;
@end
@interface NSArray (PrettyPrint)
- (BOOL)plistFitsSingleLine;
- (id)stringWithIndent:(unsigned int)fp8 isKey:(BOOL)fp12 isSingleLine:(BOOL)fp16;
@end
@interface NSString (PrettyPrint)
- (id)stringWithIndent:(unsigned int)fp8 isKey:(BOOL)fp12 isSingleLine:(BOOL)fp16;
@end
@interface NSObject (PrettyPrint)
- (BOOL)plistFitsSingleLine;
- (id)stringWithIndent:(unsigned int)fp8 isKey:(BOOL)fp12 isSingleLine:(BOOL)fp16;
@end
@interface NSString (OakString)
+ (id)stringWithData:(id)fp8;
- (id)labelForCopyWithExistingLabels:(id)fp8;
@end
@interface NSString (OakRegEx)
- (BOOL)isEqualToRegEx:(id)fp8;
- (id)componentsInRegEx:(id)fp8;
@end
@interface NSAlert (OakAlert)
- (void)addButtons:(id)fp8;
@end
@interface NSWindow (OakView)
- (void)toggleVisibility;
@end
@interface NSView (OakView)
- (id)imageForRect:(struct _NSRect)fp8 withClip:(id)fp24;
@end
@interface NSPasteboard (OakPasteboard)
- (id)stringRepresentation;
@end
@interface NSMutableArray (OakMutableArray)
- (void)insertObjectsFromArray:(id)fp8 atIndex:(int)fp12;
- (void)removeObjectsWithKey:(id)fp8;
- (id)arrayContainingItem:(id)fp8;
- (id)ancestorsForItem:(id)fp8;
@end
@interface NSArray (OakArray)
- (id)preOrderObjectEnumerator;
- (id)firstObject;
- (void)tagItemsWithString:(id)fp8;
- (void)untagItemsWithString:(id)fp8;
@end
@interface NSString (OakPath)
+ (id)stringWithUTF8String:(const char *)fp8 length:(unsigned int)fp12;
- (id)pathExtensions;
- (id)stringByDeletingPathExtensions;
- (id)associatedApplication;
- (id)stringByRemovingAbsolutePath:(id)fp8;
- (id)modificationDate;
- (BOOL)existsAsPath;
- (BOOL)isDirectory;
- (BOOL)canCreateAsDirectory;
- (BOOL)moveFileToTrash;
- (BOOL)moveFileTo:(id)fp8;
@end
@interface NSString (UUID)
+ (id)stringWithUUID;
@end
@interface NSOutlineView (OakOutlineView)
- (id)selectedItem;
- (id)selectedItems;
- (void)selectItem:(id)fp8;
- (void)selectItems:(id)fp8;
- (id)expandedItems;
- (void)expandItems:(id)fp8;
@end
@interface NSBezierPath (OakBezierPath)
+ (id)bezierPathWithRoundRectInRect:(struct _NSRect)fp8 radius:(float)fp24;
@end
@interface NSSavePanel (DeselectExtension)
- (void)deselectExtension;
@end
@interface NSObject (DeepCopy)
- (id)deepCopy;
@end
@interface NSWindow (RevealInFinder)
- (void)revealFileInFinder:(id)fp8;
@end
@interface NSScreen (RestrainFrames)
+ (id)screenWithFrame:(struct _NSRect)fp8;
- (struct _NSRect)restrainFrameToVisibleScreen:(struct _NSRect)fp8;
@end
@interface NSDictionary (MutableDeepCopy)
- (id)mutableDeepCopy;
@end
@interface NSArray (MutableDeepCopy)
- (id)mutableDeepCopy;
@end
@interface NSObject (MutableDeepCopy)
- (id)mutableDeepCopy;
@end
@interface DuffStringRanker : NSObject <QSStringRanker>
{
unsigned short *string;
unsigned int *originalIndex;
unsigned int length;
}
- (id)initWithString:(id)fp8;
- (void)dealloc;
- (double)scoreForAbbreviation:(id)fp8;
- (id)maskForAbbreviation:(id)fp8;
@end
@interface OakBundleEditor : NSObject
{
NSPanel *bundleEditorPanel;
NSSplitView *mainSplitView;
OakBundleOutlineView *outlineView;
NSTextField *boxTitle;
NSBox *editorBox;
OakKeyEquivalent *keyEquivalentField;
NSMenu *bundleFilterMenu;
NSPanel *bundleListEditorSheet;
NSTableView *bundleListEditorTableView;
NSView *snippetEditor;
NSView *commandEditor;
NSView *dragCommandEditor;
NSView *macroEditor;
NSView *languageEditor;
NSTextView *languageTextView;
NSView *preferenceEditor;
NSTextView *preferenceTextView;
NSView *templateEditor;
NSView *templateFileEditor;
NSTextView *templateFileTextView;
OakBundleSplitView *splitView;
NSView *noSelection;
NSImageView *imageView;