-
Notifications
You must be signed in to change notification settings - Fork 0
/
ctags-vim
2651 lines (2651 loc) · 236 KB
/
ctags-vim
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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
* ./dragon/fn.rb /^ def self.*(*nums)$/;" F class:GTK.Fn
* ./dragon/matrix.rb /^ def * other$/;" f class:Mat2
* ./dragon/matrix.rb /^ def * other$/;" f class:Mat3
* ./dragon/matrix.rb /^ def * other$/;" f class:Mat4
* ./dragon/matrix.rb /^ def * other$/;" f class:Vec2
* ./dragon/matrix.rb /^ def * other$/;" f class:Vec3
* ./dragon/matrix.rb /^ def * other$/;" f class:Vec4
* ./dragon/nil_class_false_class.rb /^ def * *args$/;" f class:Hash
+ ./dragon/array.rb /^ def + other$/;" f class:Array.product
+ ./dragon/fn.rb /^ def self.+(*nums)$/;" F class:GTK.Fn
+ ./dragon/matrix.rb /^ def + other$/;" f class:Mat2
+ ./dragon/matrix.rb /^ def + other$/;" f class:Mat3
+ ./dragon/matrix.rb /^ def + other$/;" f class:Mat4
+ ./dragon/matrix.rb /^ def + other$/;" f class:Vec2
+ ./dragon/matrix.rb /^ def + other$/;" f class:Vec3
+ ./dragon/matrix.rb /^ def + other$/;" f class:Vec4
+ ./dragon/nil_class_false_class.rb /^ def + *args$/;" f class:Hash
+ ./dragon/outputs_deprecated.rb /^ def + other$/;" f class:GTK.FlatArrayDeprecated
- ./dragon/fn.rb /^ def self.-(*nums)$/;" F class:GTK.Fn
- ./dragon/nil_class_false_class.rb /^ def - *args$/;" f class:Hash
/ ./dragon/fn.rb /^ def self.\/(*nums)$/;" F class:GTK.Fn
/ ./dragon/nil_class_false_class.rb /^ def \/ *args$/;" f class:Hash
< ./dragon/fn.rb /^ def self.<(*nums)$/;" F class:GTK.Fn
<< ./dragon/console_prompt.rb /^ def <<(str)$/;" f class:GTK.Console.Prompt
<< ./dragon/hash.rb /^ def << other$/;" f
<< ./dragon/outputs.rb /^ def << other$/;" f class:GTK.Outputs
<= ./dragon/fn.rb /^ def self.<=(*nums)$/;" F class:GTK.Fn
== ./dragon/fn.rb /^ def self.==(*vals)$/;" F class:GTK.Fn
== ./dragon/open_entity.rb /^ def == other$/;" f class:GTK.OpenEntity
> ./dragon/fn.rb /^ def self.>(*nums)$/;" F class:GTK.Fn
>= ./dragon/fn.rb /^ def self.>=(*nums)$/;" F class:GTK.Fn
>> ./dragon/hash.rb /^ def >> other$/;" f
A11yEmulation ./dragon/runtime/a11y_emulation.rb /^ class A11yEmulation$/;" c class:GTK
Api ./dragon/api.rb /^ class Api$/;" c class:GTK
Args ./dragon/args.rb /^ class Args$/;" c class:GTK
ArgsDeprecated ./dragon/args_deprecated.rb /^ module ArgsDeprecated$/;" m class:GTK
ArgsDocs ./dragon/args_docs.rb /^module ArgsDocs$/;" m
Array ./dragon/array.rb /^class Array$/;" c
Array ./dragon/array_docs.rb /^class Array$/;" c
ArrayDeprecated ./dragon/array_deprecated.rb /^module ArrayDeprecated$/;" m
ArrayDocs ./dragon/array_docs.rb /^module ArrayDocs$/;" m
Assert ./dragon/assert.rb /^ class Assert$/;" c class:GTK.test_this_works.Assert.custom_assertion
Assert ./dragon/assert.rb /^class Assert$/;" c class:GTK.test_this_works
AsyncRequire ./dragon/runtime/async_require.rb /^ module AsyncRequire$/;" m class:GTK.Runtime
AttrGTK ./dragon/attr_gtk.rb /^module AttrGTK$/;" m
AttrLabel ./dragon/attr_label.rb /^module AttrLabel$/;" m
AttrLine ./dragon/attr_line.rb /^module AttrLine$/;" m
AttrRect ./dragon/attr_sprite.rb /^module AttrRect$/;" m
AttrSprite ./dragon/attr_sprite.rb /^module AttrSprite$/;" m
AudioHash ./dragon/args.rb /^class AudioHash < Hash$/;" c class:GTK
AutoTest ./dragon/runtime/auto_test.rb /^ module AutoTest$/;" m class:GTK.Runtime
Autocomplete ./dragon/runtime/autocomplete.rb /^ module Autocomplete$/;" m class:GTK.Runtime
Backup ./dragon/runtime/backup.rb /^ class Backup; class << self$/;" c class:GTK
BareDefinitionsContainer ./dragon/object.rb /^class BareDefinitionsContainer$/;" c
Benchmark ./dragon/runtime/benchmark.rb /^ class Benchmark; class << self$/;" c class:GTK
Border ./dragon/primitive.rb /^ module Border$/;" m class:GTK.Triangle
BordersOutputsArray ./dragon/outputs.rb /^ class BordersOutputsArray < OutputsArray$/;" c
CBridge ./dragon/runtime/c_bridge.rb /^ module CBridge$/;" m class:GTK.Runtime
Class ./dragon/class.rb /^class Class$/;" c
Class ./dragon/object.rb /^class Class$/;" c
Color ./dragon/console_color.rb /^ class Color$/;" c class:GTK.Console
Color ./dragon/primitive.rb /^ module Color$/;" m class:GTK
Common ./dragon/primitive.rb /^ module Common$/;" m class:GTK.Primitive
Config ./dragon/controller/config.rb /^ class Config$/;" c class:GTK.Controller
Console ./dragon/console.rb /^ class Console$/;" c class:GTK
Console ./dragon/console_color.rb /^ class Console$/;" c class:GTK
Console ./dragon/console_font_style.rb /^ class Console$/;" c class:GTK
Console ./dragon/console_menu.rb /^ class Console$/;" c class:GTK
Console ./dragon/console_prompt.rb /^ class Console$/;" c class:GTK
ConsoleDeprecated ./dragon/console_deprecated.rb /^module ConsoleDeprecated$/;" m
ConsoleEvaluator ./dragon/console_evaluator.rb /^ class ConsoleEvaluator$/;" c class:GTK
Controller ./dragon/controller.rb /^ class Controller$/;" c class:GTK
Controller ./dragon/controller/config.rb /^ class Controller$/;" c class:GTK
Controller ./dragon/controller/keys.rb /^ class Controller$/;" c class:GTK
ConversionCapabilities ./dragon/primitive.rb /^ module ConversionCapabilities$/;" m class:GTK.Triangle
Cvar ./dragon/cvar.rb /^ class Cvar$/;" c class:GTK
Cvars ./dragon/cvar.rb /^ class Cvars$/;" c class:GTK
DebugOutputsArray ./dragon/outputs.rb /^ class DebugOutputsArray < GenericOutputsArray$/;" c
Deprecated ./dragon/runtime/deprecated.rb /^ module Deprecated$/;" m class:GTK.Runtime
Determined ./dragon/primitive.rb /^ module Determined$/;" m class:GTK
DirectionalInputHelperMethods ./dragon/directional_input_helper_methods.rb /^ module DirectionalInputHelperMethods$/;" m class:GTK
Docs ./dragon/docs.rb /^module Docs$/;" m class:DocsOrganizer
DocsOrganizer ./dragon/docs.rb /^module DocsOrganizer$/;" m
DownloadStbRb ./dragon/runtime/download_stb_rb.rb /^ module DownloadStbRb$/;" m class:GTK.Runtime
Draw ./dragon/runtime.rb /^ class Draw$/;" c class:FFI
Draw ./dragon/runtime/draw.rb /^ module Draw$/;" m class:GTK.Runtime
DrawVR ./dragon/runtime/draw_vr.rb /^ module DrawVR$/;" m class:GTK.Runtime
Easing ./dragon/easing.rb /^ module Easing$/;" m class:GTK
Entity ./dragon/entity.rb /^ class Entity$/;" c class:GTK
Exception ./dragon/exception.rb /^class Exception$/;" c
FFI ./dragon/runtime.rb /^module FFI$/;" m
FalseClass ./dragon/nil_class_false_class.rb /^class FalseClass$/;" c
File ./dragon/runtime.rb /^class File$/;" c
FingerTouch ./dragon/mouse.rb /^ class FingerTouch$/;" c class:GTK
Fixnum ./dragon/numeric.rb /^class Fixnum$/;" c
FlatArrayDeprecated ./dragon/outputs_deprecated.rb /^ module FlatArrayDeprecated$/;" m class:GTK
Float ./dragon/numeric.rb /^class Float$/;" c
Fn ./dragon/fn.rb /^ class Fn$/;" c class:GTK
FontStyle ./dragon/console_font_style.rb /^ class FontStyle$/;" c class:GTK.Console
Framerate ./dragon/runtime/framerate.rb /^ module Framerate$/;" m class:GTK.Runtime
GTK ./dragon/api.rb /^module GTK$/;" m
GTK ./dragon/args.rb /^module GTK$/;" m
GTK ./dragon/args_deprecated.rb /^module GTK$/;" m
GTK ./dragon/args_docs.rb /^class GTK::Args$/;" c
GTK ./dragon/assert.rb /^module GTK$/;" m
GTK ./dragon/console.rb /^module GTK$/;" m
GTK ./dragon/console_color.rb /^module GTK$/;" m
GTK ./dragon/console_evaluator.rb /^module GTK$/;" m
GTK ./dragon/console_font_style.rb /^module GTK$/;" m
GTK ./dragon/console_menu.rb /^module GTK$/;" m
GTK ./dragon/console_prompt.rb /^module GTK$/;" m
GTK ./dragon/controller.rb /^module GTK$/;" m
GTK ./dragon/controller/config.rb /^module GTK$/;" m
GTK ./dragon/controller/keys.rb /^module GTK$/;" m
GTK ./dragon/cvar.rb /^module GTK$/;" m
GTK ./dragon/directional_input_helper_methods.rb /^module GTK$/;" m
GTK ./dragon/easing.rb /^module GTK$/;" m
GTK ./dragon/entity.rb /^module GTK$/;" m
GTK ./dragon/fn.rb /^module GTK$/;" m
GTK ./dragon/geometry.rb /^module GTK$/;" m
GTK ./dragon/geometry_quadtree.rb /^module GTK$/;" m
GTK ./dragon/grid.rb /^module GTK$/;" m
GTK ./dragon/grid_deprecated.rb /^module GTK$/;" m
GTK ./dragon/grid_docs.rb /^class GTK::Grid$/;" c
GTK ./dragon/help.rb /^module GTK$/;" m
GTK ./dragon/inputs.rb /^module GTK$/;" m
GTK ./dragon/inputs_docs.rb /^class GTK::Inputs$/;" c
GTK ./dragon/keyboard.rb /^module GTK$/;" m
GTK ./dragon/layout.rb /^module GTK$/;" m
GTK ./dragon/layout_docs.rb /^class GTK::Layout$/;" c
GTK ./dragon/log.rb /^module GTK$/;" m
GTK ./dragon/mouse.rb /^module GTK$/;" m
GTK ./dragon/open_entity.rb /^module GTK$/;" m
GTK ./dragon/outputs.rb /^module GTK$/;" m
GTK ./dragon/outputs_deprecated.rb /^module GTK$/;" m
GTK ./dragon/outputs_docs.rb /^class GTK::Outputs$/;" c
GTK ./dragon/primitive.rb /^module GTK$/;" m
GTK ./dragon/primitive_deprecated.rb /^module GTK$/;" m
GTK ./dragon/readme_docs.rb /^module GTK$/;" m
GTK ./dragon/recording.rb /^module GTK$/;" m
GTK ./dragon/remote_hotload_client.rb /^module GTK$/;" m
GTK ./dragon/runtime.rb /^module GTK$/;" m
GTK ./dragon/runtime/a11y_emulation.rb /^module GTK$/;" m
GTK ./dragon/runtime/async_require.rb /^module GTK$/;" m
GTK ./dragon/runtime/auto_test.rb /^module GTK$/;" m
GTK ./dragon/runtime/autocomplete.rb /^module GTK$/;" m
GTK ./dragon/runtime/backup.rb /^module GTK$/;" m
GTK ./dragon/runtime/benchmark.rb /^module GTK$/;" m
GTK ./dragon/runtime/c_bridge.rb /^module GTK$/;" m
GTK ./dragon/runtime/deprecated.rb /^module GTK$/;" m
GTK ./dragon/runtime/download_stb_rb.rb /^module GTK$/;" m
GTK ./dragon/runtime/draw.rb /^module GTK$/;" m
GTK ./dragon/runtime/draw_vr.rb /^module GTK$/;" m
GTK ./dragon/runtime/framerate.rb /^module GTK$/;" m
GTK ./dragon/runtime/hotload.rb /^module GTK$/;" m
GTK ./dragon/runtime/messages.rb /^module GTK$/;" m
GTK ./dragon/runtime/notify.rb /^module GTK$/;" m
GTK ./dragon/runtime/platform.rb /^module GTK$/;" m
GTK ./dragon/runtime/process_argsv.rb /^module GTK$/;" m
GTK ./dragon/runtime/save_state_load_state.rb /^module GTK$/;" m
GTK ./dragon/runtime/texture_atlas.rb /^module GTK$/;" m
GTK ./dragon/runtime_docs.rb /^class GTK::Runtime$/;" c
GTK ./dragon/serialize.rb /^module GTK$/;" m
GTK ./dragon/strict_entity.rb /^module GTK$/;" m
GTK ./dragon/tests.rb /^module GTK$/;" m
GTK ./dragon/top_level.rb /^module GTK$/;" m
GTK ./dragon/trace.rb /^module GTK$/;" m
GTK ./dragon/wizards.rb /^module GTK$/;" m class:Wizard
GenericOutputsArray ./dragon/outputs.rb /^ class GenericOutputsArray < OutputsArray$/;" c
Geometry ./dragon/geometry.rb /^ module Geometry$/;" m class:GTK
Geometry ./dragon/geometry_docs.rb /^module Geometry$/;" m
Geometry ./dragon/geometry_quadtree.rb /^ module Geometry$/;" m class:GTK
GeometryDocs ./dragon/geometry_docs.rb /^module GeometryDocs$/;" m
Grid ./dragon/grid.rb /^ class Grid$/;" c class:GTK
GridDeprecated ./dragon/grid_deprecated.rb /^ module GridDeprecated$/;" m class:GTK
GridDocs ./dragon/grid_docs.rb /^module GridDocs$/;" m
HTTPCallbacks ./dragon/runtime.rb /^ class HTTPCallbacks$/;" c
HTTPRequest ./dragon/runtime.rb /^ class HTTPRequest$/;" c
Hash ./dragon/hash.rb /^class Hash$/;" c
Hash ./dragon/nil_class_false_class.rb /^class Hash$/;" c
HashDeprecated ./dragon/hash_deprecated.rb /^module HashDeprecated$/;" m
Help ./dragon/help.rb /^ class Help$/;" c class:GTK
Hotload ./dragon/runtime/hotload.rb /^ module Hotload$/;" m class:GTK.Runtime
IOSWizard ./dragon/ios_wizard.rb /^class IOSWizard < Wizard$/;" c
Inputs ./dragon/inputs.rb /^ class Inputs$/;" c class:GTK
InputsDocs ./dragon/inputs_docs.rb /^module InputsDocs$/;" m
Integer ./dragon/numeric.rb /^class Integer$/;" c
ItchWizard ./dragon/itch_wizard.rb /^class ItchWizard < Wizard$/;" c
Kernel ./dragon/kernel.rb /^module Kernel$/;" m
Kernel ./dragon/kernel_docs.rb /^module Kernel$/;" m
KernelDocs ./dragon/kernel_docs.rb /^module KernelDocs$/;" m
Keyboard ./dragon/keyboard.rb /^ class Keyboard$/;" c class:GTK
KeyboardKeys ./dragon/keyboard.rb /^ class KeyboardKeys$/;" c class:GTK
Keys ./dragon/controller/keys.rb /^ class Keys$/;" c class:GTK.Controller
Label ./dragon/primitive.rb /^ module Label$/;" m class:GTK.Triangle
LabelsOutputsArray ./dragon/outputs.rb /^ class LabelsOutputsArray < OutputsArray$/;" c
Layout ./dragon/layout.rb /^ class Layout$/;" c class:GTK
LayoutDocs ./dragon/layout_docs.rb /^module LayoutDocs$/;" m
Line ./dragon/primitive.rb /^ module Line$/;" m class:GTK.Triangle
LinesOutputsArray ./dragon/outputs.rb /^ class LinesOutputsArray < OutputsArray$/;" c
Log ./dragon/log.rb /^ class Log$/;" c class:GTK
Mat2 ./dragon/matrix.rb /^class Mat2 < Hash$/;" c
Mat3 ./dragon/matrix.rb /^class Mat3 < Hash$/;" c
Mat4 ./dragon/matrix.rb /^class Mat4 < Hash$/;" c
Matrix ./dragon/matrix.rb /^class Matrix$/;" c
MatrixFunctions ./dragon/matrix.rb /^module MatrixFunctions$/;" m
Menu ./dragon/console_menu.rb /^ class Menu$/;" c class:GTK.Console
Messages ./dragon/runtime/messages.rb /^ class Messages; class << self$/;" c class:GTK.Runtime
Metadata ./dragon/metadata.rb /^module Metadata$/;" m
Module ./dragon/attr_gtk.rb /^class Module$/;" c
Module ./dragon/object.rb /^class Module$/;" c
Mouse ./dragon/mouse.rb /^ class Mouse$/;" c class:GTK
MousePoint ./dragon/mouse.rb /^ class MousePoint$/;" c class:GTK
NIL ./dragon/object.rb /^class NIL$/;" c
NilClass ./dragon/nil_class_false_class.rb /^class NilClass$/;" c
NilClassFalseClass ./dragon/nil_class_false_class.rb /^module NilClassFalseClass$/;" m
Notify ./dragon/runtime/notify.rb /^ module Notify$/;" m class:GTK
Numeric ./dragon/numeric.rb /^class Numeric$/;" c
Numeric ./dragon/numeric_docs.rb /^class Numeric$/;" c
NumericDeprecated ./dragon/numeric_deprecated.rb /^module NumericDeprecated$/;" m
NumericDocs ./dragon/numeric_docs.rb /^module NumericDocs$/;" m
Object ./dragon/attr_gtk.rb /^class Object$/;" c
Object ./dragon/attr_label.rb /^class Object$/;" c
Object ./dragon/attr_line.rb /^class Object$/;" c
Object ./dragon/attr_sprite.rb /^class Object$/;" c
Object ./dragon/log.rb /^class Object$/;" c
Object ./dragon/object.rb /^class Object$/;" c
ObjectMetadata ./dragon/object.rb /^class ObjectMetadata$/;" c
OpenEntity ./dragon/open_entity.rb /^ class OpenEntity$/;" c class:GTK
OpenEntity ./dragon/runtime/save_state_load_state.rb /^ class OpenEntity$/;" c class:GTK
Outputs ./dragon/outputs.rb /^ class Outputs # Each Outputs is a single render pass to a render target (or the window framebuffer).$/;" c class:GTK
OutputsArray ./dragon/outputs.rb /^ class OutputsArray < Array$/;" c class:GTK
OutputsDeprecated ./dragon/outputs_deprecated.rb /^ module OutputsDeprecated$/;" m class:GTK
OutputsDocs ./dragon/outputs_docs.rb /^module OutputsDocs$/;" m
Person ./dragon/object.rb /^ class Person$/;" c class:Object.method_missing_core.let.docs
PersonDocs ./dragon/object.rb /^ module PersonDocs$/;" m class:Object.method_missing_core.let.docs
PixelArray ./dragon/outputs.rb /^ class PixelArray$/;" c class:GTK
Platform ./dragon/runtime/platform.rb /^ module Platform$/;" m class:GTK.Runtime
Point ./dragon/primitive.rb /^ module Point$/;" m class:GTK.Primitive
Primitive ./dragon/primitive.rb /^ module Primitive$/;" m class:GTK
Primitive ./dragon/primitive_deprecated.rb /^ module Primitive$/;" m class:GTK
PrimitivesOutputsArray ./dragon/outputs.rb /^ class PrimitivesOutputsArray < GenericOutputsArray$/;" c
ProcessARGSV ./dragon/runtime/process_argsv.rb /^ module ProcessARGSV$/;" m class:GTK.Runtime
Prompt ./dragon/console_prompt.rb /^ class Prompt$/;" c class:GTK.Console
ReadMe ./dragon/readme_docs.rb /^ class ReadMe$/;" c
ReadMeDocs ./dragon/readme_docs.rb /^ module ReadMeDocs$/;" m class:GTK
Recording ./dragon/recording.rb /^ class Recording$/;" c class:GTK
Rect ./dragon/primitive.rb /^ module Rect$/;" m class:GTK
RectDeprecated ./dragon/primitive_deprecated.rb /^ module RectDeprecated$/;" m class:GTK.Primitive
RemoteHotloadClient ./dragon/remote_hotload_client.rb /^ class RemoteHotloadClient$/;" c class:GTK
RemoteHotloadClientWrapper ./dragon/runtime.rb /^ class RemoteHotloadClientWrapper$/;" c class:GTK
RenderTargetOutputs ./dragon/outputs.rb /^ class RenderTargetOutputs < Outputs$/;" c class:GTK
Replay ./dragon/recording.rb /^ class Replay$/;" c class:GTK
ReservedOutputsArray ./dragon/outputs.rb /^ class ReservedOutputsArray < GenericOutputsArray$/;" c
Runtime ./dragon/runtime.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/async_require.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/auto_test.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/autocomplete.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/c_bridge.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/deprecated.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/download_stb_rb.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/draw.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/draw_vr.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/framerate.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/hotload.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/messages.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/platform.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/process_argsv.rb /^ class Runtime$/;" c class:GTK
Runtime ./dragon/runtime/save_state_load_state.rb /^ class Runtime$/;" c class:GTK
RuntimeDocs ./dragon/runtime_docs.rb /^module RuntimeDocs$/;" m
SaveStateLoadState ./dragon/runtime/save_state_load_state.rb /^ module SaveStateLoadState$/;" m class:GTK.Runtime
Serialize ./dragon/serialize.rb /^ module Serialize$/;" m class:GTK
Solid ./dragon/primitive.rb /^ module Solid$/;" m class:GTK.Triangle
SolidsOutputsArray ./dragon/outputs.rb /^ class SolidsOutputsArray < OutputsArray$/;" c
Sound ./dragon/outputs.rb /^ class Sound$/;" c class:GTK
Sprite ./dragon/primitive.rb /^ module Sprite$/;" m class:GTK.Triangle
SpritesOutputsArray ./dragon/outputs.rb /^ class SpritesOutputsArray < OutputsArray$/;" c
StaticBordersOutputsArray ./dragon/outputs.rb /^ class StaticBordersOutputsArray < OutputsArray$/;" c
StaticDebugOutputsArray ./dragon/outputs.rb /^ class StaticDebugOutputsArray < GenericOutputsArray$/;" c
StaticLabelsOutputsArray ./dragon/outputs.rb /^ class StaticLabelsOutputsArray < OutputsArray$/;" c
StaticLinesOutputsArray ./dragon/outputs.rb /^ class StaticLinesOutputsArray < OutputsArray$/;" c
StaticPrimitivesOutputsArray ./dragon/outputs.rb /^ class StaticPrimitivesOutputsArray < GenericOutputsArray$/;" c
StaticReservedOutputsArray ./dragon/outputs.rb /^ class StaticReservedOutputsArray < GenericOutputsArray$/;" c
StaticSolidsOutputsArray ./dragon/outputs.rb /^ class StaticSolidsOutputsArray < OutputsArray$/;" c
StaticSpritesOutputsArray ./dragon/outputs.rb /^ class StaticSpritesOutputsArray < OutputsArray$/;" c
StrictEntity ./dragon/runtime/save_state_load_state.rb /^ class StrictEntity$/;" c class:GTK
StrictEntity ./dragon/strict_entity.rb /^ class StrictEntity$/;" c class:GTK
String ./dragon/string.rb /^class String$/;" c
Symbol ./dragon/symbol.rb /^class Symbol$/;" c
Tests ./dragon/tests.rb /^ class Tests$/;" c class:GTK
TextureAtlas ./dragon/runtime/texture_atlas.rb /^ class TextureAtlas$/;" c class:GTK
TopLevelOutputs ./dragon/outputs.rb /^ class TopLevelOutputs < Outputs$/;" c class:GTK
Trace ./dragon/trace.rb /^ module Trace$/;" m class:GTK
Triangle ./dragon/primitive.rb /^ module Triangle$/;" m class:GTK
TrueClass ./dragon/nil_class_false_class.rb /^class TrueClass$/;" c
ValueType ./dragon/object.rb /^module ValueType$/;" m
Vec2 ./dragon/matrix.rb /^class Vec2 < Hash$/;" c
Vec3 ./dragon/matrix.rb /^class Vec3 < Hash$/;" c
Vec4 ./dragon/matrix.rb /^class Vec4 < Hash$/;" c
WatchLabels ./dragon/outputs.rb /^ module WatchLabels$/;" m class:GTK
Wizard ./dragon/wizards.rb /^class Wizard$/;" c
WizardException ./dragon/wizards.rb /^class WizardException < Exception$/;" c class:Wizard
Wizards ./dragon/wizards.rb /^ class Wizards$/;" c class:Wizard.GTK
[] ./dragon/outputs.rb /^ def [] *args$/;" f class:GTK.OutputsArray
[] ./dragon/outputs.rb /^ def [] value$/;" f class:GTK.Outputs
[] ./dragon/strict_entity.rb /^ def [] key$/;" f class:GTK.StrictEntity
[]= ./dragon/strict_entity.rb /^ def []= key, value$/;" f class:GTK.StrictEntity
__add_primitive__ ./dragon/console.rb /^ def __add_primitive__ obj$/;" f class:GTK.Console
__attribute_deprecated__ ./dragon/grid_deprecated.rb /^ def self.__attribute_deprecated__ attribute_name, new_attribute_name, or_method: nil$/;" F
__attribute_renamed__ ./dragon/grid_deprecated.rb /^ def self.__attribute_renamed__ attribute_name, new_attribute_name, or_method: nil$/;" F
__backtrace_to_org__ ./dragon/exception.rb /^ def __backtrace_to_org__$/;" f class:Exception
__caller_to_org__ ./dragon/object.rb /^ def __caller_to_org__ title, kaller$/;" f class:Object
__caller_without_noise__ ./dragon/object.rb /^ def __caller_without_noise__$/;" f class:Object.__pretty_format_exception_text_recommend_reset_next_tick__
__check_thrash__! ./dragon/nil_class_false_class.rb /^ def __check_thrash__! m, args$/;" f class:NilClassFalseClass
__custom_object_methods__ ./dragon/object.rb /^ def __custom_object_methods__$/;" f class:Object.method_missing_core
__delete_thrash_count__! ./dragon/open_entity.rb /^ def __delete_thrash_count__!$/;" f class:GTK.OpenEntity
__delete_thrash_count__! ./dragon/strict_entity.rb /^ def __delete_thrash_count__!$/;" f class:GTK.StrictEntity
__deserialize_replay_value__ ./dragon/recording.rb /^ def __deserialize_replay_value__ value$/;" f class:GTK.Recording.stop_recording
__docs_append_true_line__ ./dragon/docs.rb /^ def self.__docs_append_true_line__ true_lines, true_line, parse_log$/;" F class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__.__export_docs__!
__docs_generate_link_id__ ./dragon/docs.rb /^ def self.__docs_generate_link_id__ text$/;" F class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__.__export_docs__!
__docs_line_to_html__ ./dragon/docs.rb /^ def self.__docs_line_to_html__ line, parse_log$/;" F class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__.__export_docs__!.__docs_to_html__
__docs_search__ ./dragon/docs.rb /^ def self.__docs_search__ words = nil, &block$/;" F class:DocsOrganizer.Docs.docs
__docs_search_help_text__ ./dragon/docs.rb /^ def __docs_search_help_text__$/;" f class:DocsOrganizer.Docs.docs
__docs_search_results__ ./dragon/docs.rb /^ def __docs_search_results__ words = nil, &block$/;" f class:DocsOrganizer.Docs.docs.__docs_search_help_text__
__docs_to_html__ ./dragon/docs.rb /^ def self.__docs_to_html__ string, warn_long_lines: true$/;" F class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__.__export_docs__!
__export_docs__! ./dragon/docs.rb /^ def __export_docs__! opts = {}$/;" f class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__
__flatten_inner_arrays_and_hashes__! ./dragon/primitive.rb /^ def __flatten_inner_arrays_and_hashes__!$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
__get_hash_property__ ./dragon/open_entity.rb /^ def __get_hash_property__ name$/;" f class:GTK.OpenEntity
__get_plist_orientation_value__ ./dragon/ios_wizard.rb /^ def __get_plist_orientation_value__$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
__get_texture_atlas_entry__ ./dragon/runtime/texture_atlas.rb /^ def self.__get_texture_atlas_entry__ game_directory, f$/;" F class:GTK.TextureAtlas
__get_texture_atlas_recur__ ./dragon/runtime/texture_atlas.rb /^ def self.__get_texture_atlas_recur__ dir, candidate_files, ffi_file:;$/;" F class:GTK.TextureAtlas
__global_tick_count__ ./dragon/runtime.rb /^ def __global_tick_count__$/;" f class:grep_source_file
__gtk_ruby_source_files__ ./dragon/object.rb /^ def __gtk_ruby_source_files__$/;" f class:Object
__gtk_ruby_string_contains_source_file_path__? ./dragon/object.rb /^ def __gtk_ruby_string_contains_source_file_path__? s$/;" f class:Object.__pretty_format_exception_text_recommend_reset_next_tick__
__help_contract_implementation ./dragon/object.rb /^ def __help_contract_implementation contract_methods$/;" f class:Object.method_missing_core.let
__help_contract_implementation__ ./dragon/object.rb /^ def __help_contract_implementation__ contract_methods$/;" f class:Object.method_missing_core.let
__initialize_primitives ./dragon/outputs.rb /^ def __initialize_primitives$/;" f class:GTK.Outputs
__log__ ./dragon/runtime.rb /^ def __log__ subsystem, log_enum, str$/;" f
__looks_like_docs__? ./dragon/object.rb /^ def __looks_like_docs__? name, *args, &block$/;" f class:Object
__meta__ ./dragon/object.rb /^ def self.__meta__$/;" F class:ObjectMetadata
__meta__ ./dragon/open_entity.rb /^ def __meta__$/;" f class:GTK.OpenEntity
__method_deprecated__ ./dragon/grid_deprecated.rb /^ def self.__method_deprecated__ method_name, new_method_name, or_method: nil$/;" F class:GTK.GridDeprecated
__method_renamed__ ./dragon/grid_deprecated.rb /^ def self.__method_renamed__ method_name, new_method_name, or_method: nil$/;" F class:GTK
__normalized_docs_method__ ./dragon/object.rb /^ def __normalized_docs_method__ name, *args, &block$/;" f class:Object
__object_methods__ ./dragon/object.rb /^ def __object_methods__$/;" f class:Object.method_missing_core
__object_to_org__ ./dragon/fn.rb /^ def self.__object_to_org__ o, opts = {}$/;" F class:GTK.Fn
__org_s__ ./dragon/fn.rb /^ def self.__org_s__ org, aggregate = nil$/;" F class:GTK.Fn
__original_reject__ ./dragon/array.rb /^ def __original_reject__(&block)$/;" f class:Array
__pretty_format_exception_text_recommend_reset_next_tick__ ./dragon/object.rb /^ def __pretty_format_exception_text_recommend_reset_next_tick__ e$/;" f class:Object
__pretty_format_exception_text_uninitialized_constant__ ./dragon/object.rb /^ def __pretty_format_exception_text_uninitialized_constant__ e$/;" f class:Object
__pretty_print_exception__ ./dragon/object.rb /^ def __pretty_print_exception__ e, inner_exception = nil$/;" f class:Object
__primitive_deprecation_message__ ./dragon/hash_deprecated.rb /^ def __primitive_deprecation_message__ primitive_name$/;" f class:HashDeprecated
__push__ ./dragon/outputs.rb /^ def __push__ other$/;" f class:GTK
__push__ ./dragon/outputs.rb /^ def __push__ other$/;" f class:GTK.OutputsArray
__raise_arithmetic_exception__ ./dragon/numeric.rb /^ def __raise_arithmetic_exception__ other, m, e$/;" f class:Numeric
__raise_deprecated_primitive_assignment__ ./dragon/outputs_deprecated.rb /^ def __raise_deprecated_primitive_assignment__ prop$/;" f class:GTK.OutputsDeprecated
__raise_property_renamed__ ./dragon/outputs_deprecated.rb /^ def __raise_property_renamed__ old_name, new_name$/;" f class:GTK.OutputsDeprecated
__raise_triangle_primitive_not_supported__ ./dragon/primitive.rb /^ def __raise_triangle_primitive_not_supported__ m$/;" f class:GTK.Triangle
__require_sync__ ./dragon/runtime.rb /^ def __require_sync__ path$/;" f class:GTK
__reserved_keys__ ./dragon/open_entity.rb /^ def __reserved_keys__$/;" f class:GTK.OpenEntity
__reset__ ./dragon/runtime.rb /^ def __reset__ rng_override = nil, seed: nil, include_sprites: true$/;" f
__reset_id__ ./dragon/entity.rb /^ def self.__reset_id__!$/;" F class:GTK.Entity
__reset_render_targets__ ./dragon/runtime.rb /^ def __reset_render_targets__$/;" f
__sdl_tick__ ./dragon/runtime.rb /^ def __sdl_tick__ sdl_tick$/;" f
__sdl_tick__simulation__ ./dragon/runtime.rb /^ def __sdl_tick__simulation__$/;" f
__set_hash_property__ ./dragon/open_entity.rb /^ def __set_hash_property__ name, args$/;" f class:GTK.OpenEntity
__supports_ivars__? ./dragon/object.rb /^ def __supports_ivars__?$/;" f class:Object
__tick_count__ ./dragon/runtime.rb /^ def __tick_count__$/;" f class:grep_source_file
__try_invoke_docs_method__ ./dragon/object.rb /^ def __try_invoke_docs_method__ name, *args, &block$/;" f class:Object
__warn_outputs_size__ ./dragon/outputs.rb /^ def __warn_outputs_size__ size, dimension$/;" f class:GTK.Outputs
a ./dragon/primitive.rb /^ def a$/;" f class:GTK.Color
a ./dragon/primitive.rb /^ def a$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
a ./dragon/primitive.rb /^ def a$/;" f class:GTK.Triangle.Label
a ./dragon/primitive.rb /^ def a$/;" f class:GTK.Triangle.Sprite
a ./dragon/primitive.rb /^ def a$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
a11y_clear_pending_notifications! ./dragon/outputs.rb /^ def a11y_clear_pending_notifications!$/;" f class:GTK.Outputs
a11y_disable! ./dragon/runtime.rb /^ def a11y_disable!$/;" f
a11y_enable! ./dragon/runtime.rb /^ def a11y_enable!$/;" f
a11y_enabled? ./dragon/runtime.rb /^ def a11y_enabled?$/;" f
a11y_inputs_tick_before ./dragon/runtime.rb /^ def a11y_inputs_tick_before$/;" f
a11y_logical_to_points ./dragon/runtime.rb /^ def a11y_logical_to_points logical$/;" f
a11y_pending_notifications? ./dragon/outputs.rb /^ def a11y_pending_notifications?$/;" f class:GTK.Outputs
a11y_scrub ./dragon/outputs.rb /^ def a11y_scrub$/;" f class:GTK.Outputs
a11y_tick_gtk_engine_after ./dragon/runtime.rb /^ def a11y_tick_gtk_engine_after$/;" f
a= ./dragon/primitive.rb /^ def a= value$/;" f class:GTK.Color
a= ./dragon/primitive.rb /^ def a= value$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
a= ./dragon/primitive.rb /^ def a= value$/;" f class:GTK.Triangle.Label
a= ./dragon/primitive.rb /^ def a= value$/;" f class:GTK.Triangle.Sprite
a= ./dragon/primitive.rb /^ def a= value$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
a_each ./dragon/array.rb /^ def a_each$/;" f class:Array
a_map ./dragon/array.rb /^ def a_map$/;" f class:Array
above? ./dragon/numeric_deprecated.rb /^ def above?$/;" f class:NumericDeprecated
acopy ./dragon/fn.rb /^ def self.acopy array$/;" F class:GTK.Fn
activate ./dragon/controller/keys.rb /^ def activate key$/;" f class:GTK.Controller.Keys
activate_down ./dragon/controller.rb /^ def activate_down(key)$/;" f class:GTK.Controller
activate_held ./dragon/controller.rb /^ def activate_held(key)$/;" f class:GTK.Controller
activate_up ./dragon/controller.rb /^ def activate_up(key)$/;" f class:GTK.Controller
add ./dragon/fn.rb /^ def self.add(*nums)$/;" F class:GTK.Fn
add ./dragon/numeric.rb /^ def add i$/;" f class:Numeric
add_caller_to_puts! ./dragon/kernel.rb /^ def add_caller_to_puts!$/;" f class:Kernel
add_caller_to_puts! ./dragon/runtime.rb /^ def add_caller_to_puts!$/;" f class:GTK
add_primitive ./dragon/console.rb /^ def add_primitive obj, global_at: nil$/;" f class:GTK.Console
add_sprite ./dragon/console.rb /^ def add_sprite obj$/;" f class:GTK.Console
add_text ./dragon/console.rb /^ def add_text obj, loglevel=-1$/;" f class:GTK.Console
add_to_require_queue ./dragon/runtime/async_require.rb /^ def add_to_require_queue path$/;" f class:GTK.Runtime.AsyncRequire
addsprite ./dragon/console_deprecated.rb /^ def addsprite *args$/;" f class:ConsoleDeprecated
addtext ./dragon/console_deprecated.rb /^ def addtext *args$/;" f class:ConsoleDeprecated
aget ./dragon/fn.rb /^ def self.aget array, index$/;" F class:GTK.Fn
alength ./dragon/fn.rb /^ def self.alength array$/;" F class:GTK.Fn
alias_method ./dragon/keyboard.rb /^ def self.alias_method from, to$/;" F class:GTK.KeyboardKeys
alias_method_once ./dragon/object.rb /^ def alias_method_once opts = {}$/;" f class:Class
aliases ./dragon/keyboard.rb /^ def self.aliases$/;" F class:GTK.KeyboardKeys
alignment_enum ./dragon/primitive.rb /^ def alignment_enum$/;" f class:GTK.Triangle.Label
alignment_enum= ./dragon/primitive.rb /^ def alignment_enum= value$/;" f class:GTK.Triangle.Label
all ./dragon/keyboard.rb /^ def all$/;" f class:GTK.KeyboardKeys
all? ./dragon/keyboard.rb /^ def all? keys$/;" f class:GTK.KeyboardKeys
allscreen_rect ./dragon/grid.rb /^ def allscreen_rect$/;" f class:GTK.Grid
allscreen_rect_px ./dragon/grid.rb /^ def allscreen_rect_px$/;" f class:GTK.Grid
allscreen_x ./dragon/grid.rb /^ def allscreen_x$/;" f class:GTK.Grid
allscreen_x_px ./dragon/grid.rb /^ def allscreen_x_px$/;" f class:GTK.Grid
allscreen_y ./dragon/grid.rb /^ def allscreen_y$/;" f class:GTK.Grid
allscreen_y_px ./dragon/grid.rb /^ def allscreen_y_px$/;" f class:GTK.Grid
always_fail ./dragon/ios_wizard.rb /^ def always_fail$/;" f class:IOSWizard
amap ./dragon/fn.rb /^ def self.amap array, block$/;" F class:GTK.Fn
analog_to_perc ./dragon/runtime/c_bridge.rb /^ def analog_to_perc value$/;" f class:GTK.Runtime.CBridge
anchor_rect ./dragon/geometry.rb /^ def anchor_rect anchor_x, anchor_y$/;" f class:GTK.Geometry
anchor_rect ./dragon/hash.rb /^ def anchor_rect x_perc, y_perc$/;" f
anchor_rect ./dragon/primitive.rb /^ def anchor_rect anchor_x, anchor_y$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
anchor_x ./dragon/primitive.rb /^ def anchor_x$/;" f class:GTK.Triangle.Border
anchor_x ./dragon/primitive.rb /^ def anchor_x$/;" f class:GTK.Triangle.Label
anchor_x ./dragon/primitive.rb /^ def anchor_x$/;" f class:GTK.Triangle.Solid
anchor_x ./dragon/primitive.rb /^ def anchor_x$/;" f class:GTK.Triangle.Sprite
anchor_x= ./dragon/primitive.rb /^ def anchor_x= value$/;" f class:GTK.Triangle.Border
anchor_x= ./dragon/primitive.rb /^ def anchor_x= value$/;" f class:GTK.Triangle.Label
anchor_x= ./dragon/primitive.rb /^ def anchor_x= value$/;" f class:GTK.Triangle.Solid
anchor_x= ./dragon/primitive.rb /^ def anchor_x= value$/;" f class:GTK.Triangle.Sprite
anchor_y ./dragon/primitive.rb /^ def anchor_y$/;" f class:GTK.Triangle.Border
anchor_y ./dragon/primitive.rb /^ def anchor_y$/;" f class:GTK.Triangle.Label
anchor_y ./dragon/primitive.rb /^ def anchor_y$/;" f class:GTK.Triangle.Solid
anchor_y ./dragon/primitive.rb /^ def anchor_y$/;" f class:GTK.Triangle.Sprite
anchor_y= ./dragon/primitive.rb /^ def anchor_y= value$/;" f class:GTK.Triangle.Border
anchor_y= ./dragon/primitive.rb /^ def anchor_y= value$/;" f class:GTK.Triangle.Label
anchor_y= ./dragon/primitive.rb /^ def anchor_y= value$/;" f class:GTK.Triangle.Solid
anchor_y= ./dragon/primitive.rb /^ def anchor_y= value$/;" f class:GTK.Triangle.Sprite
and ./dragon/fn.rb /^ def self.and(*vals)$/;" F class:GTK.Fn
and ./dragon/object.rb /^ def and other$/;" f class:Object
angle ./dragon/geometry.rb /^ def angle start_point, end_point$/;" f class:GTK
angle ./dragon/primitive.rb /^ def angle$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle ./dragon/primitive.rb /^ def angle$/;" f class:GTK.Triangle.Sprite
angle= ./dragon/primitive.rb /^ def angle= value$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle= ./dragon/primitive.rb /^ def angle= value$/;" f class:GTK.Triangle.Sprite
angle_anchor_x ./dragon/primitive.rb /^ def angle_anchor_x$/;" f class:GTK.Triangle.Sprite
angle_anchor_x= ./dragon/primitive.rb /^ def angle_anchor_x= value$/;" f class:GTK.Triangle.Sprite
angle_anchor_y ./dragon/primitive.rb /^ def angle_anchor_y$/;" f class:GTK.Triangle.Sprite
angle_anchor_y= ./dragon/primitive.rb /^ def angle_anchor_y= value$/;" f class:GTK.Triangle.Sprite
angle_between_lines ./dragon/geometry.rb /^ def angle_between_lines line_one, line_two, replace_infinity: nil$/;" f class:GTK
angle_delta ./dragon/geometry.rb /^ def angle_delta angle_one, angle_two$/;" f class:GTK
angle_from ./dragon/geometry.rb /^ def angle_from start_point, end_point$/;" f class:GTK
angle_from ./dragon/geometry.rb /^ def angle_from other_point$/;" f class:GTK.Geometry
angle_from ./dragon/primitive.rb /^ def angle_from other_point$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_given_point ./dragon/geometry.rb /^ def angle_given_point other_point$/;" f class:GTK.Geometry
angle_given_point ./dragon/primitive.rb /^ def angle_given_point other_point$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_to ./dragon/geometry.rb /^ def angle_to start_point, end_point$/;" f class:GTK
angle_to ./dragon/geometry.rb /^ def angle_to other_point$/;" f class:GTK.Geometry
angle_to ./dragon/primitive.rb /^ def angle_to other_point$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_turn_direction ./dragon/geometry.rb /^ def angle_turn_direction angle, target_angle$/;" f class:GTK
angle_within_range? ./dragon/geometry.rb /^ def angle_within_range? test_angle, target_angle, range$/;" f class:GTK
angle_x ./dragon/primitive.rb /^ def angle_x$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_x ./dragon/primitive.rb /^ def angle_x$/;" f class:GTK.Triangle.Sprite
angle_x= ./dragon/primitive.rb /^ def angle_x= value$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_x= ./dragon/primitive.rb /^ def angle_x= value$/;" f class:GTK.Triangle.Sprite
angle_y ./dragon/primitive.rb /^ def angle_y$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_y ./dragon/primitive.rb /^ def angle_y$/;" f class:GTK.Triangle.Sprite
angle_y= ./dragon/primitive.rb /^ def angle_y= value$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
angle_y= ./dragon/primitive.rb /^ def angle_y= value$/;" f class:GTK.Triangle.Sprite
animate_a_sprite ./dragon/readme_docs.rb /^ def animate_a_sprite$/;" f
any? ./dragon/keyboard.rb /^ def any? keys$/;" f class:GTK.KeyboardKeys
any_intersect_rect? ./dragon/array.rb /^ def any_intersect_rect? other, tolerance = 0.1$/;" f class:Array.product
any_intersects_rect? ./dragon/array_deprecated.rb /^ def any_intersects_rect? *args$/;" f class:ArrayDeprecated
app_metadata_retrieval_steps ./dragon/ios_wizard.rb /^ def app_metadata_retrieval_steps$/;" f class:IOSWizard
app_name ./dragon/ios_wizard.rb /^ def app_name$/;" f class:IOSWizard.ios_metadata.game_metadata
app_path ./dragon/ios_wizard.rb /^ def app_path$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
app_version ./dragon/ios_wizard.rb /^ def app_version$/;" f class:IOSWizard.ios_metadata.game_metadata
append ./dragon/runtime.rb /^ def self.append path, contents$/;" F class:File
append_file ./dragon/runtime.rb /^ def append_file file_name, text$/;" f
append_file_root ./dragon/runtime.rb /^ def append_file_root file_name, text$/;" f
apply ./dragon/fn.rb /^ def self.apply array, block$/;" F class:GTK.Fn
area ./dragon/hash.rb /^ def area$/;" f class:Hash
area= ./dragon/hash.rb /^ def area= value$/;" f class:Hash
areduce ./dragon/fn.rb /^ def self.areduce array, initial_value, block$/;" F class:GTK.Fn
args ./dragon/attr_gtk.rb /^ def args$/;" f class:AttrGTK
args ./dragon/console_evaluator.rb /^ def args$/;" f class:GTK.ConsoleEvaluator
args ./dragon/object.rb /^ def args$/;" f class:BareDefinitionsContainer
args= ./dragon/attr_gtk.rb /^ def args= value$/;" f class:AttrGTK
argv_window_position_x ./dragon/runtime.rb /^ def self.argv_window_position_x argv$/;" F class:grep_source_file
argv_window_position_y ./dragon/runtime.rb /^ def self.argv_window_position_y argv$/;" F class:grep_source_file
argv_window_scale ./dragon/runtime.rb /^ def self.argv_window_scale argv$/;" F class:grep_source_file
array_hash ./dragon/fn.rb /^ def self.array_hash *array$/;" F class:GTK.Fn
array_primitive? ./dragon/outputs.rb /^ def array_primitive? os$/;" f class:GTK.OutputsArray
as_hash ./dragon/hash.rb /^ def as_hash$/;" f
as_hash ./dragon/open_entity.rb /^ def as_hash$/;" f class:GTK.OpenEntity
as_hash ./dragon/strict_entity.rb /^ def as_hash$/;" f class:GTK.StrictEntity
assign_method_missing ./dragon/nil_class_false_class.rb /^ def assign_method_missing hash, name, thrash_counter$/;" f class:NilClassFalseClass
associate ./dragon/hash.rb /^ def associate hash = nil$/;" f class:Hash
associate ./dragon/object.rb /^ def associate hash = nil$/;" f class:Object.method_missing_core
associate ./dragon/primitive.rb /^ def associate hash = nil$/;" f class:GTK.Primitive.Point
associate ./dragon/primitive.rb /^ def associate hash = nil$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
async_require_init ./dragon/runtime/async_require.rb /^ def async_require_init$/;" f class:GTK.Runtime.AsyncRequire
attr ./dragon/object.rb /^ def attr *vars$/;" f class:Module
attr ./dragon/object.rb /^ def self.attr *vars$/;" F class:Object
attr_gtk ./dragon/attr_gtk.rb /^ def attr_gtk$/;" f class:Module
attr_gtk ./dragon/attr_gtk.rb /^ def attr_gtk$/;" f class:Object
attr_gtk ./dragon/attr_gtk.rb /^ def self.attr_gtk$/;" F class:Object
attr_label ./dragon/attr_label.rb /^ def attr_label$/;" f class:Object
attr_label ./dragon/attr_label.rb /^ def self.attr_label$/;" F class:Object
attr_line ./dragon/attr_line.rb /^ def attr_line$/;" f class:Object
attr_line ./dragon/attr_line.rb /^ def self.attr_line$/;" F class:Object
attr_rect ./dragon/attr_sprite.rb /^ def attr_rect$/;" f class:Object
attr_rect ./dragon/attr_sprite.rb /^ def self.attr_rect$/;" F class:Object
attr_sprite ./dragon/attr_sprite.rb /^ def attr_sprite$/;" f class:Object
attr_sprite ./dragon/attr_sprite.rb /^ def self.attr_sprite$/;" F class:Object
attributes ./dragon/object.rb /^ def attributes$/;" f class:Module
attributes ./dragon/object.rb /^ def self.attributes$/;" F class:Object
attributes ./dragon/open_entity.rb /^ def attributes$/;" f class:GTK.OpenEntity
attributes= ./dragon/open_entity.rb /^ def attributes= *opts$/;" f class:GTK.OpenEntity
attributes= ./dragon/strict_entity.rb /^ def attributes= *opts$/;" f class:GTK.StrictEntity
audio ./dragon/attr_gtk.rb /^ def audio$/;" f class:AttrGTK
audio ./dragon/runtime.rb /^ def audio$/;" f
auto_test_initialize ./dragon/runtime/auto_test.rb /^ def auto_test_initialize$/;" f class:GTK.Runtime.AutoTest
auto_test_run ./dragon/runtime/auto_test.rb /^ def auto_test_run$/;" f class:GTK.Runtime.AutoTest
auto_test_run_tests ./dragon/runtime/auto_test.rb /^ def auto_test_run_tests$/;" f class:GTK.Runtime.AutoTest
autocomplete ./dragon/console_prompt.rb /^ def autocomplete$/;" f class:GTK.Console.Prompt
autocomplete_filter_methods ./dragon/runtime/autocomplete.rb /^ def autocomplete_filter_methods keys, *ignores$/;" f class:GTK.Runtime.Autocomplete
autocomplete_methods ./dragon/args.rb /^ def autocomplete_methods$/;" f class:GTK.Args
autocomplete_methods ./dragon/object.rb /^ def autocomplete_methods$/;" f class:Object.method_missing_core
autocomplete_methods ./dragon/open_entity.rb /^ def autocomplete_methods$/;" f class:GTK.OpenEntity
autocomplete_methods ./dragon/runtime.rb /^ def autocomplete_methods$/;" f
autocomplete_parse ./dragon/runtime/autocomplete.rb /^ def autocomplete_parse opts$/;" f class:GTK.Runtime.Autocomplete
b ./dragon/primitive.rb /^ def b$/;" f class:GTK.Color
b ./dragon/primitive.rb /^ def b$/;" f class:GTK.Triangle.Label
b ./dragon/primitive.rb /^ def b$/;" f class:GTK.Triangle.Sprite
b ./dragon/primitive.rb /^ def b$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
b= ./dragon/primitive.rb /^ def b= value$/;" f class:GTK.Color
b= ./dragon/primitive.rb /^ def b= value$/;" f class:GTK.Triangle.Label
b= ./dragon/primitive.rb /^ def b= value$/;" f class:GTK.Triangle.Sprite
b= ./dragon/primitive.rb /^ def b= value$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
back ./dragon/controller/keys.rb /^ def back$/;" f class:GTK.Controller.Keys
back= ./dragon/controller/keys.rb /^ def back= value$/;" f class:GTK.Controller.Keys
background_color ./dragon/outputs.rb /^ def background_color$/;" f class:GTK.Outputs
background_color ./dragon/runtime/c_bridge.rb /^ def background_color$/;" f class:GTK.Runtime.CBridge
background_color= ./dragon/outputs.rb /^ def background_color= value$/;" f class:GTK.Outputs
background_color= ./dragon/outputs.rb /^ def background_color= value$/;" f class:GTK.TopLevelOutputs
backspace ./dragon/console_prompt.rb /^ def backspace$/;" f class:GTK.Console.Prompt
backup_create ./dragon/runtime/backup.rb /^ def backup_create file, ffi_file:, production:;$/;" f class:GTK.Backup.backup_write_changes
backup_create_index ./dragon/runtime/backup.rb /^ def backup_create_index ffi_file:;$/;" f class:GTK.Backup.backup_write_changes
backup_css ./dragon/runtime/backup.rb /^ def backup_css$/;" f class:GTK.Backup.backup_write_changes
backup_directory ./dragon/runtime/backup.rb /^ def backup_directory$/;" f class:GTK.Backup
backup_file ./dragon/runtime/backup.rb /^ def backup_file file, ffi_file:;$/;" f class:GTK.Backup
backup_html ./dragon/runtime/backup.rb /^ def backup_html$/;" f class:GTK.Backup.backup_write_changes
backup_load_changes ./dragon/runtime/backup.rb /^ def backup_load_changes ffi_file:;$/;" f class:GTK.Backup
backup_write_changes ./dragon/runtime/backup.rb /^ def backup_write_changes changes, ffi_file:;$/;" f class:GTK.Backup
below? ./dragon/numeric_deprecated.rb /^ def below?$/;" f class:NumericDeprecated
benchmark ./dragon/runtime.rb /^ def benchmark opts = {}$/;" f class:grep_source_file
benchmark ./dragon/runtime/benchmark.rb /^ def benchmark opts = {}$/;" f class:GTK.Benchmark
benchmark_iterations ./dragon/runtime/benchmark.rb /^ def benchmark_iterations opts = {}$/;" f class:GTK.Benchmark.benchmark_seconds
benchmark_iterations_single ./dragon/runtime/benchmark.rb /^ def benchmark_iterations_single iterations, name, proc$/;" f class:GTK.Benchmark
benchmark_seconds ./dragon/runtime/benchmark.rb /^ def benchmark_seconds opts = {}$/;" f class:GTK.Benchmark
benchmark_seconds_single ./dragon/runtime/benchmark.rb /^ def benchmark_seconds_single seconds, name, proc$/;" f class:GTK.Benchmark
better_class_hierarchy_information ./dragon/object.rb /^ def better_class_hierarchy_information$/;" f class:Object.__pretty_format_exception_text_recommend_reset_next_tick__
better_instance_information ./dragon/object.rb /^ def better_instance_information$/;" f class:Object.__pretty_format_exception_text_recommend_reset_next_tick__
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.Border
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.Label
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.Line
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.Solid
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.Sprite
blendmode_enum ./dragon/primitive.rb /^ def blendmode_enum$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.Border
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.Label
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.Line
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.Solid
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.Sprite
blendmode_enum= ./dragon/primitive.rb /^ def blendmode_enum= value$/;" f class:GTK.Triangle.__raise_triangle_primitive_not_supported__
border ./dragon/hash_deprecated.rb /^ def border$/;" f class:HashDeprecated
border ./dragon/primitive.rb /^ def border$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
border! ./dragon/array_deprecated.rb /^ def border!$/;" f
border! ./dragon/hash.rb /^ def border! opts = nil$/;" f class:Hash
borders ./dragon/args.rb /^ def borders$/;" f class:GTK.Args
borders ./dragon/primitive.rb /^ def borders$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
borders= ./dragon/outputs_deprecated.rb /^ def borders= value$/;" f class:GTK.OutputsDeprecated
bottom ./dragon/attr_sprite.rb /^ def bottom$/;" f class:AttrRect
bottom ./dragon/hash.rb /^ def bottom$/;" f class:Hash
bottom ./dragon/mouse.rb /^ def bottom; y; end$/;" f class:GTK.MousePoint
bottom ./dragon/primitive.rb /^ def bottom$/;" f class:GTK.Primitive.Point
bottom ./dragon/primitive.rb /^ def bottom$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
build_binding_string ./dragon/controller/config.rb /^ def build_binding_string$/;" f class:GTK.Controller.Config
button ./dragon/console_menu.rb /^ def button args$/;" f class:GTK.Console.Menu
calc ./dragon/console.rb /^ def calc args$/;" f class:GTK.Console
calc_autocomplete_prefix ./dragon/console_prompt.rb /^ def calc_autocomplete_prefix$/;" f class:GTK.Console.Prompt
calc_col_offset ./dragon/layout.rb /^ def calc_col_offset opts = {}$/;" f class:GTK.Layout
calc_fading ./dragon/controller/config.rb /^ def calc_fading$/;" f class:GTK.Controller.Config
calc_row_offset ./dragon/layout.rb /^ def calc_row_offset opts = {}$/;" f class:GTK.Layout
calc_wrapper ./dragon/runtime.rb /^ def calc_wrapper tick_override_lambda = nil$/;" f
calcspritebox ./dragon/runtime.rb /^ def calcspritebox str$/;" f
calcstringbox ./dragon/runtime.rb /^ def calcstringbox str, sz_enum = 0, fnt = "font.ttf", size_enum: nil, size_px: nil, font: nil$/;" f
can_auto_test? ./dragon/runtime/auto_test.rb /^ def can_auto_test?$/;" f class:GTK.Runtime.AutoTest
can_screenshot? ./dragon/outputs.rb /^ def can_screenshot?$/;" f class:GTK.Outputs
cancel ./dragon/recording.rb /^ def cancel$/;" f class:GTK.Recording
cancel_recording ./dragon/runtime.rb /^ def cancel_recording$/;" f
cap ./dragon/numeric.rb /^ def cap i$/;" f class:Numeric
cap_min_max ./dragon/numeric.rb /^ def cap_min_max min, max$/;" f class:Numeric
capture_record_input_timestamps ./dragon/recording.rb /^ def capture_record_input_timestamps name, raw_key, modifier_keys$/;" f class:GTK
cell_height ./dragon/layout.rb /^ def cell_height$/;" f class:GTK.Layout
cell_width ./dragon/layout.rb /^ def cell_width$/;" f class:GTK.Layout
center ./dragon/geometry.rb /^ def center rect$/;" f class:GTK
center ./dragon/numeric.rb /^ def center other$/;" f class:Integer
center_inside_rect ./dragon/geometry.rb /^ def center_inside_rect rect, other_rect$/;" f class:GTK.Geometry
center_inside_rect ./dragon/geometry.rb /^ def center_inside_rect other_rect$/;" f class:GTK.Geometry
center_inside_rect ./dragon/primitive.rb /^ def center_inside_rect *other_rect$/;" f class:GTK.Rect
center_inside_rect ./dragon/primitive.rb /^ def center_inside_rect *other_rect$/;" f class:GTK.Triangle.ConversionCapabilities.mark_assert!
center_inside_rect_x ./dragon/geometry.rb /^ def center_inside_rect_x rect, other_rect$/;" f class:GTK.Geometry
center_inside_rect_x ./dragon/geometry.rb /^ def center_inside_rect_x other_rect$/;" f class:GTK.Geometry
center_inside_rect_y ./dragon/geometry.rb /^ def center_inside_rect_y rect, other_rect$/;" f class:GTK.Geometry
center_inside_rect_y ./dragon/geometry.rb /^ def center_inside_rect_y other_rect$/;" f class:GTK.Geometry
certificate_name ./dragon/ios_wizard.rb /^ def certificate_name$/;" f class:IOSWizard.ios_metadata.game_metadata
char_byte ./dragon/string.rb /^ def char_byte$/;" f class:String
char_to_method ./dragon/keyboard.rb /^ def self.char_to_method char, int = nil$/;" F class:GTK.KeyboardKeys
char_to_method_hash ./dragon/keyboard.rb /^ def self.char_to_method_hash$/;" F class:GTK.KeyboardKeys
char_to_shift_char_hash ./dragon/keyboard.rb /^ def self.char_to_shift_char_hash$/;" F class:GTK.KeyboardKeys
char_with_shift ./dragon/keyboard.rb /^ def self.char_with_shift raw_key, modifier$/;" F class:GTK.KeyboardKeys
check_class_sort_order ./dragon/docs.rb /^ def self.check_class_sort_order$/;" F class:DocsOrganizer
check_for_brew ./dragon/ios_wizard.rb /^ def check_for_brew$/;" f class:IOSWizard
check_for_certs ./dragon/ios_wizard.rb /^ def check_for_certs$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
check_for_dev_profile ./dragon/ios_wizard.rb /^ def check_for_dev_profile$/;" f class:IOSWizard
check_for_device ./dragon/ios_wizard.rb /^ def check_for_device$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
check_for_distribution_profile ./dragon/ios_wizard.rb /^ def check_for_distribution_profile$/;" f class:IOSWizard
check_for_xcode ./dragon/ios_wizard.rb /^ def check_for_xcode$/;" f class:IOSWizard
check_framerate ./dragon/runtime/framerate.rb /^ def check_framerate$/;" f class:GTK.Runtime
check_metadata ./dragon/itch_wizard.rb /^ def check_metadata$/;" f class:ItchWizard
check_thermal_state ./dragon/runtime.rb /^ def check_thermal_state$/;" f
choose_target ./dragon/controller/config.rb /^ def choose_target$/;" f class:GTK.Controller.Config
circle_intersect_line? ./dragon/geometry.rb /^ def circle_intersect_line? circle, line$/;" f class:GTK
clamp ./dragon/numeric.rb /^ def clamp min, max = nil$/;" f class:Numeric
clamp ./dragon/numeric.rb /^ def self.clamp n, min, max$/;" F class:Numeric
clamp_wrap ./dragon/numeric.rb /^ def clamp_wrap min, max$/;" f class:Numeric
class_sort_order ./dragon/docs.rb /^ def self.class_sort_order$/;" F class:DocsOrganizer
clear ./dragon/console.rb /^ def clear$/;" f class:GTK.Console
clear ./dragon/console_prompt.rb /^ def clear$/;" f class:GTK.Console.Prompt
clear ./dragon/controller.rb /^ def clear$/;" f class:GTK.Controller
clear ./dragon/controller/keys.rb /^ def clear$/;" f class:GTK.Controller.Keys
clear ./dragon/inputs.rb /^ def clear$/;" f class:GTK.Inputs
clear ./dragon/keyboard.rb /^ def clear$/;" f class:GTK.Keyboard
clear ./dragon/keyboard.rb /^ def clear$/;" f class:GTK.KeyboardKeys
clear ./dragon/mouse.rb /^ def clear$/;" f class:GTK.Mouse
clear ./dragon/outputs.rb /^ def clear$/;" f class:GTK.Outputs
clear ./dragon/outputs.rb /^ def self.clear$/;" F class:GTK
clear! ./dragon/open_entity.rb /^ def clear!$/;" f class:GTK.OpenEntity
clear! ./dragon/strict_entity.rb /^ def clear!$/;" f class:GTK.StrictEntity
clear_before_render ./dragon/outputs.rb /^ def clear_before_render$/;" f class:GTK.Outputs
clear_before_render= ./dragon/outputs.rb /^ def clear_before_render= value$/;" f class:GTK.Outputs
clear_draw_passes ./dragon/runtime.rb /^ def clear_draw_passes$/;" f
clear_draw_primitives ./dragon/runtime.rb /^ def clear_draw_primitives pass$/;" f
clear_inputs ./dragon/runtime.rb /^ def clear_inputs$/;" f
clear_key ./dragon/keyboard.rb /^ def clear_key key$/;" f class:GTK.KeyboardKeys
clear_logs ./dragon/console.rb /^ def clear_logs global_at: Kernel.global_tick_count$/;" f class:GTK.Console
clear_non_static ./dragon/outputs.rb /^ def clear_non_static$/;" f class:GTK.Outputs
clear_non_static_reserved ./dragon/outputs.rb /^ def clear_non_static_reserved$/;" f class:GTK.Outputs
clear_payload_directory ./dragon/ios_wizard.rb /^ def clear_payload_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
clear_pixel_arrays ./dragon/args.rb /^ def clear_pixel_arrays$/;" f class:GTK.Args
clear_render_targets ./dragon/args.rb /^ def clear_render_targets$/;" f class:GTK.Args
clear_replay_stopped_at! ./dragon/recording.rb /^ def clear_replay_stopped_at!$/;" f class:GTK
clear_summary ./dragon/tests.rb /^ def clear_summary$/;" f class:GTK
clear_tmp_directory ./dragon/ios_wizard.rb /^ def clear_tmp_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
clear_toast ./dragon/console.rb /^ def clear_toast$/;" f class:GTK.Console
cli_app_exist? ./dragon/ios_wizard.rb /^ def cli_app_exist? app$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
cli_arguments ./dragon/runtime.rb /^ def cli_arguments$/;" f class:GTK
click ./dragon/args.rb /^ def click$/;" f class:GTK.Args
click ./dragon/inputs.rb /^ def click$/;" f class:GTK.Inputs
click_at ./dragon/args.rb /^ def click_at$/;" f class:GTK.Args
close ./dragon/console.rb /^ def close$/;" f class:GTK.Console
close_clicked ./dragon/console_menu.rb /^ def close_clicked$/;" f class:GTK.Console.Menu
code? ./dragon/console.rb /^ def code? log_entry$/;" f class:GTK.Console.process_add_primitive_queue
code_comment? ./dragon/console.rb /^ def code_comment? log_entry$/;" f class:GTK.Console.process_add_primitive_queue
code_edit_view ./dragon/api.rb /^ def code_edit_view args, file$/;" f class:GTK.Api
code_for_class_attributes_as_hash ./dragon/help.rb /^ def self.code_for_class_attributes_as_hash klass$/;" F class:GTK.Help
code_sign_binary ./dragon/ios_wizard.rb /^ def code_sign_binary$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
codeblock_marker? ./dragon/console.rb /^ def codeblock_marker? log_entry$/;" f class:GTK.Console.process_add_primitive_queue
codesign_allocate_path ./dragon/ios_wizard.rb /^ def codesign_allocate_path$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
codesign_path ./dragon/ios_wizard.rb /^ def codesign_path$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
col ./dragon/layout.rb /^ def col n$/;" f class:GTK.Layout
col_count ./dragon/layout.rb /^ def col_count$/;" f class:GTK.Layout
col_from_right ./dragon/layout.rb /^ def col_from_right n$/;" f class:GTK.Layout
col_max_index ./dragon/layout.rb /^ def col_max_index$/;" f class:GTK.Layout
color_for_log_entry ./dragon/console.rb /^ def color_for_log_entry(log_entry)$/;" f class:GTK.Console.process_add_primitive_queue
color_for_plain_text ./dragon/console.rb /^ def color_for_plain_text log_entry$/;" f class:GTK.Console.process_add_primitive_queue
combinations ./dragon/numeric.rb /^ def combinations other_int$/;" f class:Numeric
comment ./dragon/object.rb /^ def comment$/;" f class:Object.method_missing_core
compile_icons ./dragon/ios_wizard.rb /^ def compile_icons$/;" f class:IOSWizard.ios_metadata.game_metadata
connected_devices ./dragon/ios_wizard.rb /^ def connected_devices$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
console_button_primitive ./dragon/runtime.rb /^ def console_button_primitive$/;" f
console_text_width ./dragon/console.rb /^ def console_text_width$/;" f class:GTK.Console
console_toggle_key_down? ./dragon/console.rb /^ def console_toggle_key_down? args$/;" f class:GTK.Console
console_toggle_keys ./dragon/console.rb /^ def console_toggle_keys$/;" f class:GTK.Console
control_panel_view ./dragon/api.rb /^ def control_panel_view$/;" f class:GTK.Api
control_rect ./dragon/layout.rb /^ def control_rect$/;" f class:GTK.Layout
controller_four ./dragon/args.rb /^ def controller_four$/;" f class:GTK.Args
controller_four ./dragon/inputs.rb /^ def controller_four$/;" f class:GTK.Inputs
controller_four_connected ./dragon/runtime/c_bridge.rb /^ def controller_four_connected name$/;" f class:GTK.Runtime.CBridge
controller_four_disconnected ./dragon/runtime/c_bridge.rb /^ def controller_four_disconnected$/;" f class:GTK.Runtime.CBridge
controller_key_down ./dragon/runtime/c_bridge.rb /^ def controller_key_down player_num, raw_key, sender = false$/;" f class:GTK.Runtime.CBridge
controller_key_event ./dragon/runtime/c_bridge.rb /^ def controller_key_event player_num, raw_key, event, sender = false$/;" f class:GTK.Runtime.CBridge
controller_key_held ./dragon/runtime/c_bridge.rb /^ def controller_key_held player_num, raw_key, sender = false$/;" f class:GTK.Runtime.CBridge
controller_key_up ./dragon/runtime/c_bridge.rb /^ def controller_key_up player_num, raw_key, sender = false$/;" f class:GTK.Runtime.CBridge
controller_one ./dragon/args.rb /^ def controller_one$/;" f class:GTK.Args
controller_one ./dragon/inputs.rb /^ def controller_one$/;" f class:GTK.Inputs
controller_one_connected ./dragon/runtime/c_bridge.rb /^ def controller_one_connected name$/;" f class:GTK.Runtime.CBridge
controller_one_disconnected ./dragon/runtime/c_bridge.rb /^ def controller_one_disconnected$/;" f class:GTK.Runtime.CBridge
controller_three ./dragon/args.rb /^ def controller_three$/;" f class:GTK.Args
controller_three ./dragon/inputs.rb /^ def controller_three$/;" f class:GTK.Inputs
controller_three_connected ./dragon/runtime/c_bridge.rb /^ def controller_three_connected name$/;" f class:GTK.Runtime.CBridge
controller_three_disconnected ./dragon/runtime/c_bridge.rb /^ def controller_three_disconnected$/;" f class:GTK.Runtime.CBridge
controller_two ./dragon/args.rb /^ def controller_two$/;" f class:GTK.Args
controller_two ./dragon/inputs.rb /^ def controller_two$/;" f class:GTK.Inputs
controller_two_connected ./dragon/runtime/c_bridge.rb /^ def controller_two_connected name$/;" f class:GTK.Runtime.CBridge
controller_two_disconnected ./dragon/runtime/c_bridge.rb /^ def controller_two_disconnected$/;" f class:GTK.Runtime.CBridge
copy ./dragon/array.rb /^ def copy$/;" f class:Array.product
copy ./dragon/hash.rb /^ def copy$/;" f
copy ./dragon/object.rb /^ def copy$/;" f class:ValueType
core_files_to_reload ./dragon/runtime/hotload.rb /^ def core_files_to_reload$/;" f class:GTK.Runtime.Hotload
cos ./dragon/numeric.rb /^ def cos$/;" f class:Fixnum
cos ./dragon/numeric.rb /^ def cos$/;" f class:Float
cos_d ./dragon/numeric.rb /^ def cos_d$/;" f class:Fixnum
cos_d ./dragon/numeric.rb /^ def cos_d$/;" f class:Float
cos_r ./dragon/numeric.rb /^ def cos_r$/;" f class:Fixnum
cos_r ./dragon/numeric.rb /^ def cos_r$/;" f class:Float
create_dev_payload_directory ./dragon/ios_wizard.rb /^ def create_dev_payload_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_ipa ./dragon/ios_wizard.rb /^ def create_ipa$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_payload ./dragon/ios_wizard.rb /^ def create_payload$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_prod_payload_directory ./dragon/ios_wizard.rb /^ def create_prod_payload_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_sim_payload_directory ./dragon/ios_wizard.rb /^ def create_sim_payload_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_test_payload_directory ./dragon/ios_wizard.rb /^ def create_test_payload_directory$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
create_tweetcart_palette ./dragon/tweetcart.rb /^ def create_tweetcart_palette$/;" f
created_at_elapsed ./dragon/mouse.rb /^ def created_at_elapsed$/;" f class:GTK.MousePoint
created_at_elapsed ./dragon/open_entity.rb /^ def created_at_elapsed$/;" f class:GTK.OpenEntity
created_at_elapsed ./dragon/strict_entity.rb /^ def created_at_elapsed$/;" f class:GTK.StrictEntity
ctrl ./dragon/keyboard.rb /^ def ctrl$/;" f class:GTK.KeyboardKeys.method_missing
ctrl= ./dragon/keyboard.rb /^ def ctrl= value$/;" f class:GTK.KeyboardKeys.method_missing
cube ./dragon/easing.rb /^ def self.cube x$/;" F class:GTK.Easing
cubic_bezier ./dragon/geometry.rb /^ def cubic_bezier t, a, b, c, d$/;" f class:GTK.Geometry
current_fps ./dragon/runtime/c_bridge.rb /^ def current_fps simulation_fps, rendering_fps$/;" f class:GTK.Runtime.CBridge
current_framerate ./dragon/runtime/framerate.rb /^ def current_framerate$/;" f class:GTK.Runtime
current_framerate_primitives ./dragon/runtime/framerate.rb /^ def current_framerate_primitives$/;" f class:GTK.Runtime
current_framerate_raw ./dragon/runtime/deprecated.rb /^ def current_framerate_raw$/;" f class:GTK.Runtime.Deprecated
current_input_str ./dragon/console.rb /^ def current_input_str$/;" f class:GTK.Console
current_input_str= ./dragon/console.rb /^ def current_input_str=(str)$/;" f class:GTK.Console
current_input_str= ./dragon/console_prompt.rb /^ def current_input_str=(str)$/;" f class:GTK.Console.Prompt
current_object ./dragon/console_prompt.rb /^ def current_object$/;" f class:GTK.Console.Prompt
currently_toasting? ./dragon/console.rb /^ def currently_toasting?$/;" f class:GTK.Console
cursor_shown? ./dragon/runtime.rb /^ def cursor_shown?$/;" f class:grep_source_file
custom_assertion ./dragon/assert.rb /^ def custom_assertion actual, expected, message = nil$/;" f class:GTK.test_this_works.Assert
custom_buttons ./dragon/console_menu.rb /^ def custom_buttons$/;" f class:GTK.Console.Menu
cvars ./dragon/attr_gtk.rb /^ def cvars$/;" f class:AttrGTK
deactivate ./dragon/controller/keys.rb /^ def deactivate key$/;" f class:GTK.Controller.Keys
debug_primitives ./dragon/layout.rb /^ def debug_primitives opts = {}$/;" f class:GTK.Layout
debug_require! ./dragon/runtime.rb /^ def debug_require!$/;" f class:GTK
default_background_color ./dragon/outputs.rb /^ def default_background_color$/;" f class:GTK.Outputs
defaults_alias_method_once ./dragon/object.rb /^ def defaults_alias_method_once$/;" f class:Class
defaults_set_command_extended ./dragon/console.rb /^ def defaults_set_command_extended$/;" f class:GTK.Console.process_add_primitive_queue
defines_enums? ./dragon/primitive.rb /^ def defines_enums?$/;" f class:GTK.Triangle.Label
delete ./dragon/console_prompt.rb /^ def delete$/;" f class:GTK.Console.Prompt
delete_file ./dragon/runtime.rb /^ def delete_file path$/;" f
delete_file_if_exist ./dragon/runtime.rb /^ def delete_file_if_exist path$/;" f
delete_file_if_exist? ./dragon/runtime.rb /^ def delete_file_if_exist? path$/;" f
delta_framerate ./dragon/runtime/framerate.rb /^ def delta_framerate$/;" f class:GTK.Runtime.Framerate
deploy ./dragon/itch_wizard.rb /^ def deploy$/;" f class:ItchWizard
deploy_to_device ./dragon/ios_wizard.rb /^ def deploy_to_device$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
deploy_to_sim ./dragon/ios_wizard.rb /^ def deploy_to_sim$/;" f class:IOSWizard.ios_metadata.game_metadata
dequeue_sounds ./dragon/runtime.rb /^ def dequeue_sounds pass$/;" f
deserialize_state ./dragon/runtime/save_state_load_state.rb /^ def deserialize_state *args$/;" f class:GTK.Runtime.SaveStateLoadState
destructure ./dragon/args.rb /^ def destructure$/;" f class:GTK.Args
determine_app_id ./dragon/ios_wizard.rb /^ def determine_app_id$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
determine_app_name ./dragon/ios_wizard.rb /^ def determine_app_name$/;" f class:IOSWizard.ios_metadata.game_metadata
determine_app_version ./dragon/ios_wizard.rb /^ def determine_app_version$/;" f class:IOSWizard.ios_metadata.game_metadata
determine_devcert ./dragon/ios_wizard.rb /^ def determine_devcert$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
determine_prodcert ./dragon/ios_wizard.rb /^ def determine_prodcert$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
determine_team_identifier ./dragon/ios_wizard.rb /^ def determine_team_identifier$/;" f class:IOSWizard.ios_metadata.game_metadata
dev_build? ./dragon/ios_wizard.rb /^ def dev_build?$/;" f class:IOSWizard
development_write_info_plist ./dragon/ios_wizard.rb /^ def development_write_info_plist$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
device_orientation_xml ./dragon/ios_wizard.rb /^ def device_orientation_xml$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
directional_angle ./dragon/directional_input_helper_methods.rb /^ def directional_angle$/;" f class:GTK.DirectionalInputHelperMethods
directional_angle ./dragon/inputs.rb /^ def directional_angle$/;" f class:GTK.Inputs
directional_vector ./dragon/directional_input_helper_methods.rb /^ def directional_vector$/;" f class:GTK.DirectionalInputHelperMethods
directional_vector ./dragon/inputs.rb /^ def directional_vector$/;" f class:GTK.Inputs
directional_vector ./dragon/keyboard.rb /^ def directional_vector$/;" f class:GTK.KeyboardKeys.method_missing
disable ./dragon/console.rb /^ def disable$/;" f class:GTK.Console
disable! ./dragon/runtime/a11y_emulation.rb /^ def disable!$/;" f class:GTK.A11yEmulation
disable_aggressive_gc! ./dragon/runtime.rb /^ def disable_aggressive_gc!$/;" f
disable_console ./dragon/runtime.rb /^ def disable_console$/;" f
disable_console! ./dragon/runtime.rb /^ def disable_console!$/;" f
disable_controller_config ./dragon/runtime.rb /^ def disable_controller_config$/;" f class:grep_source_file
disable_controller_config! ./dragon/runtime.rb /^ def disable_controller_config!$/;" f class:grep_source_file
disable_framerate_warning! ./dragon/runtime/framerate.rb /^ def disable_framerate_warning!$/;" f class:GTK.Runtime.Framerate
disable_nil_coersion! ./dragon/runtime.rb /^ def disable_nil_coersion!$/;" f class:grep_source_file
disable_nil_punning! ./dragon/runtime.rb /^ def disable_nil_punning!$/;" f class:grep_source_file
disable_reset_via_ctrl_r ./dragon/runtime.rb /^ def disable_reset_via_ctrl_r$/;" f
disable_via_ctrl_r! ./dragon/runtime/a11y_emulation.rb /^ def disable_via_ctrl_r!$/;" f class:GTK.A11yEmulation
display_autocomplete_candidate ./dragon/console_prompt.rb /^ def display_autocomplete_candidate(candidate)$/;" f class:GTK.Console.Prompt
display_name ./dragon/ios_wizard.rb /^ def display_name$/;" f class:IOSWizard.ios_metadata.game_metadata
display_name ./dragon/itch_wizard.rb /^ def display_name$/;" f class:ItchWizard
display_name ./dragon/wizards.rb /^ def display_name$/;" f class:Wizard.get_metadata
distance ./dragon/geometry.rb /^ def distance point_one, point_two$/;" f class:GTK
distance_squared ./dragon/geometry.rb /^ def distance_squared p1, p2$/;" f class:GTK
div ./dragon/fn.rb /^ def self.div(*nums)$/;" F class:GTK.Fn
dlopen ./dragon/runtime.rb /^ def dlopen name$/;" f class:grep_source_file
do_zip ./dragon/ios_wizard.rb /^ def do_zip$/;" f class:IOSWizard.ios_metadata.game_metadata.provisioning_profile_xml
docs ./dragon/console_evaluator.rb /^ def docs$/;" f class:GTK.ConsoleEvaluator
docs ./dragon/docs.rb /^ def docs$/;" f class:DocsOrganizer.Docs
docs ./dragon/object.rb /^ def docs$/;" f class:Object.method_missing_core.let
docs_accessing_files ./dragon/readme_docs.rb /^ def docs_accessing_files$/;" f
docs_add_caller_to_puts! ./dragon/runtime_docs.rb /^ def docs_add_caller_to_puts!$/;" f class:RuntimeDocs
docs_all ./dragon/docs.rb /^ def docs_all$/;" f class:DocsOrganizer.Docs
docs_anchor_rect ./dragon/geometry_docs.rb /^ def docs_anchor_rect$/;" f class:GeometryDocs
docs_angle ./dragon/geometry_docs.rb /^ def docs_angle$/;" f class:GeometryDocs
docs_angle_from ./dragon/geometry_docs.rb /^ def docs_angle_from$/;" f class:GeometryDocs
docs_angle_to ./dragon/geometry_docs.rb /^ def docs_angle_to$/;" f class:GeometryDocs
docs_angle_turn_direction ./dragon/geometry_docs.rb /^ def docs_angle_turn_direction$/;" f class:GeometryDocs
docs_any_intersect_rect? ./dragon/array_docs.rb /^ def docs_any_intersect_rect?$/;" f class:ArrayDocs
docs_api_summary_state ./dragon/runtime_docs.rb /^ def docs_api_summary_state$/;" f class:RuntimeDocs
docs_append_file ./dragon/runtime_docs.rb /^ def docs_append_file$/;" f class:RuntimeDocs
docs_append_file_root ./dragon/runtime_docs.rb /^ def docs_append_file_root$/;" f class:RuntimeDocs
docs_argv ./dragon/runtime_docs.rb /^ def docs_argv$/;" f class:RuntimeDocs
docs_audio ./dragon/args_docs.rb /^ def docs_audio$/;" f class:ArgsDocs
docs_benchmark ./dragon/runtime_docs.rb /^ def docs_benchmark$/;" f class:RuntimeDocs
docs_calcspritebox ./dragon/runtime_docs.rb /^ def docs_calcspritebox$/;" f class:RuntimeDocs
docs_calcstringbox ./dragon/runtime_docs.rb /^ def docs_calcstringbox$/;" f class:RuntimeDocs
docs_cancel_recording ./dragon/runtime_docs.rb /^ def docs_cancel_recording$/;" f class:RuntimeDocs
docs_center_inside_rect ./dragon/geometry_docs.rb /^ def docs_center_inside_rect$/;" f class:GeometryDocs
docs_circle_intersect_line? ./dragon/geometry_docs.rb /^ def docs_circle_intersect_line?$/;" f class:GeometryDocs
docs_class ./dragon/array_docs.rb /^ def docs_class$/;" f class:ArrayDocs
docs_class ./dragon/geometry_docs.rb /^ def docs_class$/;" f class:GeometryDocs
docs_class ./dragon/grid_docs.rb /^ def docs_class$/;" f class:GridDocs
docs_class ./dragon/inputs_docs.rb /^ def docs_class$/;" f class:InputsDocs
docs_class ./dragon/kernel_docs.rb /^ def docs_class$/;" f class:KernelDocs
docs_class ./dragon/layout_docs.rb /^ def docs_class$/;" f class:LayoutDocs
docs_class ./dragon/numeric_docs.rb /^ def docs_class$/;" f class:NumericDocs
docs_class ./dragon/object.rb /^ def docs_class$/;" f class:Object.method_missing_core.let.docs.PersonDocs
docs_class ./dragon/outputs_docs.rb /^ def docs_class$/;" f class:OutputsDocs
docs_class ./dragon/runtime_docs.rb /^ def docs_class$/;" f class:RuntimeDocs
docs_class_macros ./dragon/runtime_docs.rb /^ def docs_class_macros$/;" f class:RuntimeDocs
docs_classes ./dragon/docs.rb /^ def docs_classes$/;" f class:DocsOrganizer.Docs
docs_cli_arguments ./dragon/runtime_docs.rb /^ def docs_cli_arguments$/;" f class:RuntimeDocs
docs_clicked ./dragon/console_menu.rb /^ def docs_clicked$/;" f class:GTK.Console.Menu
docs_create_quad_tree ./dragon/geometry_docs.rb /^ def docs_create_quad_tree$/;" f class:GeometryDocs
docs_current_framerate ./dragon/runtime_docs.rb /^ def docs_current_framerate$/;" f class:RuntimeDocs
docs_cursor_shown? ./dragon/runtime_docs.rb /^ def docs_cursor_shown?$/;" f class:RuntimeDocs
docs_cvars ./dragon/args_docs.rb /^ def docs_cvars$/;" f class:ArgsDocs
docs_debug_primitives ./dragon/layout_docs.rb /^ def docs_debug_primitives$/;" f class:LayoutDocs
docs_delete_file ./dragon/runtime_docs.rb /^ def docs_delete_file$/;" f class:RuntimeDocs
docs_deployment ./dragon/readme_docs.rb /^ def docs_deployment$/;" f class:GTK.ReadMeDocs
docs_deployment_mobile ./dragon/readme_docs.rb /^ def docs_deployment_mobile$/;" f class:GTK.ReadMeDocs
docs_deployment_steam ./dragon/readme_docs.rb /^ def docs_deployment_steam$/;" f class:GTK.ReadMeDocs
docs_dev_support_functions ./dragon/runtime_docs.rb /^ def docs_dev_support_functions$/;" f class:RuntimeDocs
docs_disable_console ./dragon/runtime_docs.rb /^ def docs_disable_console$/;" f class:RuntimeDocs
docs_disable_controller_config ./dragon/runtime_docs.rb /^ def docs_disable_controller_config$/;" f class:RuntimeDocs
docs_disable_reset_via_ctrl_r ./dragon/runtime_docs.rb /^ def docs_disable_reset_via_ctrl_r$/;" f class:RuntimeDocs
docs_distance ./dragon/geometry_docs.rb /^ def docs_distance$/;" f class:GeometryDocs
docs_distance_squared ./dragon/geometry_docs.rb /^ def docs_distance_squared$/;" f class:GeometryDocs
docs_dlopen ./dragon/runtime_docs.rb /^ def docs_dlopen$/;" f class:RuntimeDocs
docs_download_stb_rb ./dragon/runtime_docs.rb /^ def docs_download_stb_rb$/;" f class:RuntimeDocs
docs_dragonruby_philosophy ./dragon/readme_docs.rb /^ def docs_dragonruby_philosophy$/;" f class:GTK.ReadMeDocs
docs_each ./dragon/array_docs.rb /^ def docs_each$/;" f class:ArrayDocs
docs_easing ./dragon/args_docs.rb /^ def docs_easing$/;" f class:ArgsDocs
docs_elapsed? ./dragon/numeric_docs.rb /^ def docs_elapsed?$/;" f class:NumericDocs
docs_elapsed_time ./dragon/numeric_docs.rb /^ def docs_elapsed_time$/;" f class:NumericDocs
docs_enable_console ./dragon/runtime_docs.rb /^ def docs_enable_console$/;" f class:RuntimeDocs
docs_enable_controller_config ./dragon/runtime_docs.rb /^ def docs_enable_controller_config$/;" f class:RuntimeDocs
docs_encoding_functions ./dragon/runtime_docs.rb /^ def docs_encoding_functions$/;" f class:RuntimeDocs
docs_environment_functions ./dragon/runtime_docs.rb /^ def docs_environment_functions$/;" f class:RuntimeDocs
docs_exec ./dragon/runtime_docs.rb /^ def docs_exec$/;" f class:RuntimeDocs
docs_export_docs! ./dragon/kernel_docs.rb /^ def docs_export_docs!$/;" f class:KernelDocs
docs_faq ./dragon/readme_docs.rb /^ def docs_faq$/;" f
docs_file_access_functions ./dragon/runtime_docs.rb /^ def docs_file_access_functions$/;" f class:RuntimeDocs
docs_find_all_intersect_rect ./dragon/geometry_docs.rb /^ def docs_find_all_intersect_rect$/;" f class:GeometryDocs
docs_find_all_intersect_rect_quad_tree ./dragon/geometry_docs.rb /^ def docs_find_all_intersect_rect_quad_tree$/;" f class:GeometryDocs
docs_find_collisions ./dragon/geometry_docs.rb /^ def docs_find_collisions$/;" f class:GeometryDocs
docs_find_intersect_rect ./dragon/geometry_docs.rb /^ def docs_find_intersect_rect$/;" f class:GeometryDocs
docs_find_intersect_rect_quad_tree ./dragon/geometry_docs.rb /^ def docs_find_intersect_rect_quad_tree$/;" f class:GeometryDocs
docs_frame_index ./dragon/numeric_docs.rb /^ def docs_frame_index$/;" f class:NumericDocs
docs_framerate_diagnostics_primitives ./dragon/runtime_docs.rb /^ def docs_framerate_diagnostics_primitives$/;" f class:RuntimeDocs
docs_game_state ./dragon/readme_docs.rb /^ def docs_game_state$/;" f
docs_game_version ./dragon/runtime_docs.rb /^ def docs_game_version$/;" f class:RuntimeDocs
docs_get_base_dir ./dragon/runtime_docs.rb /^ def docs_get_base_dir$/;" f class:RuntimeDocs
docs_get_game_dir ./dragon/runtime_docs.rb /^ def docs_get_game_dir$/;" f class:RuntimeDocs
docs_get_game_dir_url ./dragon/runtime_docs.rb /^ def docs_get_game_dir_url$/;" f class:RuntimeDocs
docs_get_pixels ./dragon/runtime_docs.rb /^ def docs_get_pixels$/;" f class:RuntimeDocs
docs_global_tick_count ./dragon/kernel_docs.rb /^ def docs_global_tick_count$/;" f class:KernelDocs
docs_hello_world ./dragon/readme_docs.rb /^ def docs_hello_world$/;" f class:GTK.ReadMeDocs
docs_hide_console ./dragon/runtime_docs.rb /^ def docs_hide_console$/;" f class:RuntimeDocs
docs_hide_cursor ./dragon/runtime_docs.rb /^ def docs_hide_cursor$/;" f class:RuntimeDocs
docs_http_get ./dragon/runtime_docs.rb /^ def docs_http_get$/;" f class:RuntimeDocs
docs_http_post ./dragon/runtime_docs.rb /^ def docs_http_post$/;" f class:RuntimeDocs
docs_http_post_body ./dragon/runtime_docs.rb /^ def docs_http_post_body$/;" f class:RuntimeDocs
docs_include_any? ./dragon/array_docs.rb /^ def docs_include_any?$/;" f class:ArrayDocs
docs_indie_pro_functions ./dragon/runtime_docs.rb /^ def docs_indie_pro_functions$/;" f class:RuntimeDocs
docs_inside_rect? ./dragon/geometry_docs.rb /^ def docs_inside_rect?$/;" f class:GeometryDocs
docs_intersect_rect? ./dragon/geometry_docs.rb /^ def docs_intersect_rect?$/;" f class:GeometryDocs
docs_labels ./dragon/readme_docs.rb /^ def docs_labels$/;" f class:GTK.ReadMeDocs
docs_line_angle ./dragon/geometry_docs.rb /^ def docs_line_angle$/;" f class:GeometryDocs
docs_line_intersect ./dragon/geometry_docs.rb /^ def docs_line_intersect$/;" f class:GeometryDocs
docs_line_normal ./dragon/geometry_docs.rb /^ def docs_line_normal$/;" f class:GeometryDocs
docs_line_rise_run ./dragon/geometry_docs.rb /^ def docs_line_rise_run$/;" f class:GeometryDocs
docs_line_vec2 ./dragon/geometry_docs.rb /^ def docs_line_vec2$/;" f class:GeometryDocs
docs_list_files ./dragon/runtime_docs.rb /^ def docs_list_files$/;" f class:RuntimeDocs
docs_map ./dragon/array_docs.rb /^ def docs_map$/;" f class:ArrayDocs
docs_map_2d ./dragon/array_docs.rb /^ def docs_map_2d$/;" f class:ArrayDocs
docs_method_sort_order ./dragon/args_docs.rb /^ def docs_method_sort_order$/;" f class:ArgsDocs
docs_method_sort_order ./dragon/array_docs.rb /^ def docs_method_sort_order$/;" f class:ArrayDocs
docs_method_sort_order ./dragon/docs.rb /^ def docs_method_sort_order$/;" f class:DocsOrganizer.Docs
docs_method_sort_order ./dragon/geometry_docs.rb /^ def docs_method_sort_order$/;" f class:GeometryDocs
docs_method_sort_order ./dragon/grid_docs.rb /^ def docs_method_sort_order$/;" f class:GridDocs
docs_method_sort_order ./dragon/inputs_docs.rb /^ def docs_method_sort_order$/;" f class:InputsDocs
docs_method_sort_order ./dragon/kernel_docs.rb /^ def docs_method_sort_order$/;" f class:KernelDocs
docs_method_sort_order ./dragon/layout_docs.rb /^ def docs_method_sort_order$/;" f class:LayoutDocs
docs_method_sort_order ./dragon/numeric_docs.rb /^ def docs_method_sort_order$/;" f class:NumericDocs
docs_method_sort_order ./dragon/outputs_docs.rb /^ def docs_method_sort_order$/;" f class:OutputsDocs
docs_method_sort_order ./dragon/readme_docs.rb /^ def docs_method_sort_order$/;" f class:GTK.ReadMeDocs
docs_method_sort_order ./dragon/runtime_docs.rb /^ def docs_method_sort_order$/;" f class:RuntimeDocs
docs_network_functions ./dragon/runtime_docs.rb /^ def docs_network_functions$/;" f class:RuntimeDocs
docs_new? ./dragon/numeric_docs.rb /^ def docs_new?$/;" f class:NumericDocs
docs_new_project ./dragon/readme_docs.rb /^ def docs_new_project$/;" f class:GTK.ReadMeDocs
docs_notify! ./dragon/runtime_docs.rb /^ def docs_notify!$/;" f class:RuntimeDocs
docs_notify_extended! ./dragon/runtime_docs.rb /^ def docs_notify_extended!$/;" f class:RuntimeDocs
docs_open_game_dir ./dragon/runtime_docs.rb /^ def docs_open_game_dir$/;" f class:RuntimeDocs
docs_open_url ./dragon/runtime_docs.rb /^ def docs_open_url$/;" f class:RuntimeDocs
docs_parse_json ./dragon/runtime_docs.rb /^ def docs_parse_json$/;" f class:RuntimeDocs
docs_parse_json_file ./dragon/runtime_docs.rb /^ def docs_parse_json_file$/;" f class:RuntimeDocs
docs_parse_xml ./dragon/runtime_docs.rb /^ def docs_parse_xml$/;" f class:RuntimeDocs
docs_parse_xml_file ./dragon/runtime_docs.rb /^ def docs_parse_xml_file$/;" f class:RuntimeDocs
docs_pixel_array ./dragon/args_docs.rb /^ def docs_pixel_array$/;" f class:ArgsDocs
docs_platform? ./dragon/runtime_docs.rb /^ def docs_platform?$/;" f class:RuntimeDocs
docs_platform_mappings ./dragon/runtime_docs.rb /^ def docs_platform_mappings$/;" f class:RuntimeDocs
docs_point_inside_circle? ./dragon/geometry_docs.rb /^ def docs_point_inside_circle?$/;" f class:GeometryDocs
docs_point_on_line? ./dragon/geometry_docs.rb /^ def docs_point_on_line?$/;" f class:GeometryDocs
docs_product ./dragon/array_docs.rb /^ def docs_product$/;" f class:ArrayDocs
docs_production? ./dragon/runtime_docs.rb /^ def docs_production?$/;" f class:RuntimeDocs
docs_quit_requested? ./dragon/runtime_docs.rb /^ def docs_quit_requested?$/;" f class:RuntimeDocs
docs_ray_intersect ./dragon/geometry_docs.rb /^ def docs_ray_intersect$/;" f class:GeometryDocs
docs_ray_test ./dragon/geometry_docs.rb /^ def docs_ray_test$/;" f class:GeometryDocs
docs_read_file ./dragon/runtime_docs.rb /^ def docs_read_file$/;" f class:RuntimeDocs
docs_rect ./dragon/layout_docs.rb /^ def docs_rect$/;" f class:LayoutDocs
docs_rect_navigate ./dragon/geometry_docs.rb /^ def docs_rect_navigate$/;" f class:GeometryDocs
docs_rect_normalize ./dragon/geometry_docs.rb /^ def docs_rect_normalize$/;" f class:GeometryDocs
docs_reject_false ./dragon/array_docs.rb /^ def docs_reject_false$/;" f class:ArrayDocs
docs_reject_nil ./dragon/array_docs.rb /^ def docs_reject_nil$/;" f class:ArrayDocs
docs_reload_history ./dragon/runtime_docs.rb /^ def docs_reload_history$/;" f class:RuntimeDocs
docs_reload_history_pending ./dragon/runtime_docs.rb /^ def docs_reload_history_pending$/;" f class:RuntimeDocs
docs_reload_if_needed ./dragon/runtime_docs.rb /^ def docs_reload_if_needed$/;" f class:RuntimeDocs
docs_request_quit ./dragon/runtime_docs.rb /^ def docs_request_quit$/;" f class:RuntimeDocs
docs_reset ./dragon/runtime_docs.rb /^ def docs_reset$/;" f class:RuntimeDocs
docs_reset_next_tick ./dragon/runtime_docs.rb /^ def docs_reset_next_tick$/;" f class:RuntimeDocs
docs_reset_sprite ./dragon/runtime_docs.rb /^ def docs_reset_sprite$/;" f class:RuntimeDocs
docs_reset_sprites ./dragon/runtime_docs.rb /^ def docs_reset_sprites$/;" f class:RuntimeDocs
docs_rotate_point ./dragon/geometry_docs.rb /^ def docs_rotate_point$/;" f class:GeometryDocs
docs_say_hello ./dragon/object.rb /^ def docs_say_hello$/;" f class:Object.method_missing_core.let.docs.PersonDocs
docs_scale_rect ./dragon/geometry_docs.rb /^ def docs_scale_rect$/;" f class:GeometryDocs
docs_scale_rect_extended ./dragon/geometry_docs.rb /^ def docs_scale_rect_extended$/;" f class:GeometryDocs
docs_search ./dragon/console_evaluator.rb /^ def docs_search words = nil, &block$/;" f class:GTK.ConsoleEvaluator
docs_search ./dragon/docs.rb /^ def docs_search words = nil, &block$/;" f class:DocsOrganizer.Docs.docs.__docs_search_help_text__.__docs_search_results__
docs_set_cursor ./dragon/runtime_docs.rb /^ def docs_set_cursor$/;" f class:RuntimeDocs
docs_set_mouse_grab ./dragon/runtime_docs.rb /^ def docs_set_mouse_grab$/;" f class:RuntimeDocs
docs_set_system_cursor ./dragon/runtime_docs.rb /^ def docs_set_system_cursor$/;" f class:RuntimeDocs
docs_set_window_fullscreen ./dragon/runtime_docs.rb /^ def docs_set_window_fullscreen$/;" f class:RuntimeDocs
docs_set_window_scale ./dragon/runtime_docs.rb /^ def docs_set_window_scale$/;" f class:RuntimeDocs
docs_set_window_title ./dragon/runtime_docs.rb /^ def docs_set_window_title$/;" f class:RuntimeDocs
docs_show_console ./dragon/runtime_docs.rb /^ def docs_show_console$/;" f class:RuntimeDocs
docs_show_cursor ./dragon/runtime_docs.rb /^ def docs_show_cursor$/;" f class:RuntimeDocs
docs_slowmo! ./dragon/runtime_docs.rb /^ def docs_slowmo!$/;" f class:RuntimeDocs
docs_sounds ./dragon/readme_docs.rb /^ def docs_sounds$/;" f class:GTK.ReadMeDocs
docs_sprites ./dragon/readme_docs.rb /^ def docs_sprites$/;" f class:GTK.ReadMeDocs
docs_start_recording ./dragon/runtime_docs.rb /^ def docs_start_recording$/;" f class:RuntimeDocs
docs_start_replay ./dragon/runtime_docs.rb /^ def docs_start_replay$/;" f class:RuntimeDocs
docs_start_server! ./dragon/runtime_docs.rb /^ def docs_start_server!$/;" f class:RuntimeDocs
docs_stat_file ./dragon/runtime_docs.rb /^ def docs_stat_file$/;" f class:RuntimeDocs
docs_stop_recording ./dragon/runtime_docs.rb /^ def docs_stop_recording$/;" f class:RuntimeDocs
docs_stop_replay ./dragon/runtime_docs.rb /^ def docs_stop_replay$/;" f class:RuntimeDocs
docs_system ./dragon/runtime_docs.rb /^ def docs_system$/;" f class:RuntimeDocs
docs_tick_count ./dragon/kernel_docs.rb /^ def docs_tick_count$/;" f class:KernelDocs
docs_ticks_and_frames ./dragon/readme_docs.rb /^ def docs_ticks_and_frames$/;" f class:GTK.ReadMeDocs
docs_to_sf ./dragon/numeric_docs.rb /^ def docs_to_sf$/;" f class:NumericDocs
docs_to_si ./dragon/numeric_docs.rb /^ def docs_to_si$/;" f class:NumericDocs
docs_troubleshooting_performance ./dragon/readme_docs.rb /^ def docs_troubleshooting_performance$/;" f
docs_vec2_dot_product ./dragon/geometry_docs.rb /^ def docs_vec2_dot_product$/;" f class:GeometryDocs
docs_vec2_magnitude ./dragon/geometry_docs.rb /^ def docs_vec2_magnitude$/;" f class:GeometryDocs
docs_vec2_normal ./dragon/geometry_docs.rb /^ def docs_vec2_normal$/;" f class:GeometryDocs
docs_vec2_normalize ./dragon/geometry_docs.rb /^ def docs_vec2_normalize$/;" f class:GeometryDocs