gml4gtk-cg.gv 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691
  1. digraph function_map {
  2. rankdir=LR;
  3. ratio=fill;
  4. node [style=filled]
  5. GML_free_list [ shape=box ];
  6. GML_free_list -> splay_tree_delete;
  7. GML_parser [ shape=box ];
  8. GML_parser -> GML_parser;
  9. GML_parser -> GML_scanner;
  10. GML_parser -> gmlparser_calloc;
  11. GML_parser -> gmlparser_free;
  12. GML_print_list [ shape=box ];
  13. GML_print_list -> GML_print_list;
  14. GML_scanner [ shape=box ];
  15. GML_scanner -> GML_scanner;
  16. GML_scanner -> GML_search_ISO;
  17. GML_scanner -> gmlparser_calloc;
  18. GML_scanner -> gmlparser_free;
  19. GML_search_ISO [ shape=box ];
  20. GT_parse_list [ shape=box ];
  21. GT_parse_list -> GT_parse_list;
  22. GT_parse_list -> GT_parse_list_edge;
  23. GT_parse_list -> GT_parse_list_node;
  24. GT_parse_list_edge [ shape=box ];
  25. GT_parse_list_edge -> GT_parse_list_edge_graphics;
  26. GT_parse_list_edge -> add_new_edge;
  27. GT_parse_list_edge -> dp_free;
  28. GT_parse_list_edge -> uniqnodeid;
  29. GT_parse_list_edge -> uniqstr;
  30. GT_parse_list_edge_graphics [ shape=box ];
  31. GT_parse_list_edge_graphics -> dp_calloc;
  32. GT_parse_list_node [ shape=box ];
  33. GT_parse_list_node -> GT_parse_list_node_graphics;
  34. GT_parse_list_node -> GT_parse_list_node_labelgraphics;
  35. GT_parse_list_node -> add_new_node;
  36. GT_parse_list_node -> dp_free;
  37. GT_parse_list_node -> uniqstr;
  38. GT_parse_list_node_graphics [ shape=box ];
  39. GT_parse_list_node_graphics -> dp_calloc;
  40. GT_parse_list_node_labelgraphics [ shape=box ];
  41. GT_parse_list_node_labelgraphics -> dp_calloc;
  42. GT_parse_list_node_labelgraphics -> uniqstr;
  43. GType [ shape=box ];
  44. GType -> gboolean;
  45. G_IS_LIST_MODEL [ shape=box ];
  46. G_IS_LIST_STORE [ shape=box ];
  47. G_LIST_MODEL [ shape=box ];
  48. G_LIST_MODEL_GET_IFACE [ shape=box ];
  49. G_LIST_MODEL_GET_IFACE -> GType;
  50. G_LIST_MODEL_GET_IFACE -> gpointer;
  51. G_LIST_STORE [ shape=box ];
  52. _GLIB_CHECKED_ADD_U32 [ shape=box ];
  53. _GLIB_CHECKED_ADD_U64 [ shape=box ];
  54. _GLIB_CHECKED_ADD_U64 -> __attribute__;
  55. _GLIB_CHECKED_MUL_U32 [ shape=box ];
  56. _GLIB_CHECKED_MUL_U64 [ shape=box ];
  57. __attribute__ [ shape=box ];
  58. __attribute__ -> GType;
  59. __attribute__ -> gboolean;
  60. __attribute__ -> gint;
  61. __attribute__ -> gpointer;
  62. __bswap_16 [ shape=box ];
  63. __bswap_32 [ shape=box ];
  64. __bswap_64 [ shape=box ];
  65. __format__ [ shape=box ];
  66. __format__ -> gboolean;
  67. __format__ -> gint;
  68. __issignalingf128 [ shape=box ];
  69. __issignalingf128 -> __attribute__;
  70. act_ab [ shape=box ];
  71. act_ab -> state_push;
  72. act_ae [ shape=box ];
  73. act_ob [ shape=box ];
  74. act_ob -> state_push;
  75. act_oe [ shape=box ];
  76. act_se [ shape=box ];
  77. act_uc [ shape=box ];
  78. add_new_dummyedge [ shape=box ];
  79. add_new_dummyedge -> dp_calloc;
  80. add_new_dummyedge -> uniqnode2;
  81. add_new_dummynode [ shape=box ];
  82. add_new_dummynode -> dp_calloc;
  83. add_new_dummynode -> uniqnode2;
  84. add_new_dummynode -> uniqnode_add2;
  85. add_new_edge [ shape=box ];
  86. add_new_edge -> dp_calloc;
  87. add_new_edge -> uniqnode;
  88. add_new_edge -> uniqstr;
  89. add_new_node [ shape=box ];
  90. add_new_node -> dp_calloc;
  91. add_new_node -> dp_free;
  92. add_new_node -> uniqnode;
  93. add_new_node -> uniqnode_add;
  94. add_new_node -> uniqnodeid;
  95. add_new_node -> uniqstr;
  96. add_selfedgenode [ shape=box ];
  97. add_selfedgenode -> dp_calloc;
  98. add_singlenode [ shape=box ];
  99. add_singlenode -> dp_calloc;
  100. b_c [ shape=box ];
  101. b_c -> column_barycenter;
  102. b_c -> exch_columns;
  103. b_c -> exch_rows;
  104. b_r [ shape=box ];
  105. b_r -> exch_columns;
  106. b_r -> exch_rows;
  107. b_r -> row_barycenter;
  108. bary_changed [ shape=box ];
  109. bary_changed -> do_relayout_all;
  110. barycenter [ shape=box ];
  111. barycenter -> dp_calloc;
  112. barycenter -> reduce_crossings2;
  113. barycenter -> reduce_crossings3;
  114. barycenter -> reduce_crossings4;
  115. barycenter -> reduce_crossings5;
  116. barycenter -> rhp_addedge;
  117. barycenter -> rhp_addnode;
  118. barycenter -> rhp_current_crossings;
  119. barycenter -> rhp_current_crossings_at_level;
  120. barycenter -> rhp_deinit;
  121. barycenter -> rhp_init;
  122. barycenter -> rhp_initial_crossings;
  123. barycenter -> rhp_layout;
  124. barycenter -> rhp_node_foreach;
  125. barycenter_3 [ shape=box ];
  126. barycenter_3 -> clr_data;
  127. barycenter_3 -> cp_data;
  128. barycenter_3 -> mediansort;
  129. barycenter_3 -> uniqnode2;
  130. barycenter_4 [ shape=box ];
  131. barycenter_4 -> clr_data;
  132. barycenter_4 -> cp_data;
  133. barycenter_4 -> mediansort;
  134. barycenter_4 -> uniqnode2;
  135. barycenter_5 [ shape=box ];
  136. barycenter_5 -> clr_data;
  137. barycenter_5 -> cp_data;
  138. barycenter_5 -> mediansort;
  139. barycenter_5 -> uniqnode2;
  140. bc_n [ shape=box ];
  141. bc_n -> copy_a;
  142. bc_n -> dp_calloc;
  143. bc_n -> dp_free;
  144. bc_n -> equal_a;
  145. bc_n -> humansize;
  146. bc_n -> make_matrix;
  147. bc_n -> number_of_crossings_a;
  148. bc_n -> phase1_down;
  149. bc_n -> phase1_up;
  150. bc_n -> phase2_down;
  151. bc_n -> phase2_up;
  152. bc_n -> store_new_positions;
  153. bc_n -> update_status_text_cross;
  154. bfsinsertq [ shape=box ];
  155. bfsinsertq -> dp_calloc;
  156. bfsremoveq [ shape=box ];
  157. bfsremoveq -> dp_free;
  158. bubbling_calloc [ shape=box ];
  159. bubbling_calloc -> dp_calloc;
  160. bubbling_calloc -> splay_tree_insert;
  161. bubbling_calloc -> splay_tree_new;
  162. bubbling_free [ shape=box ];
  163. bubbling_free -> splay_tree_remove;
  164. buffer_grow [ shape=box ];
  165. buffer_grow -> memory_realloc;
  166. buffer_push [ shape=box ];
  167. buffer_push -> buffer_grow;
  168. buffer_push_escape [ shape=box ];
  169. buffer_push_escape -> buffer_push;
  170. cfinalxy [ shape=box ];
  171. cfinalxy -> clear_clevelnodes;
  172. cfinalxy -> clear_cposnodes;
  173. cfinalxy -> clear_nume_r;
  174. cfinalxy -> dp_calloc;
  175. cfinalxy -> make_clevelnodes;
  176. cfinalxy -> make_cposnodes;
  177. check1_toggle [ shape=box ];
  178. chkedges [ shape=box ];
  179. chkedges -> vcguniqnode;
  180. clear_bubbling [ shape=box ];
  181. clear_bubbling -> splay_tree_delete;
  182. clear_clevelnodes [ shape=box ];
  183. clear_clevelnodes -> dp_free;
  184. clear_cnnodes_at_level [ shape=box ];
  185. clear_cnnodes_at_level -> dp_free;
  186. clear_cnodelist [ shape=box ];
  187. clear_cnodelist -> dp_free;
  188. clear_cposnodes [ shape=box ];
  189. clear_cposnodes -> dp_free;
  190. clear_dpuniqnode [ shape=box ];
  191. clear_dpuniqnode -> splay_tree_delete;
  192. clear_edgelist_r [ shape=box ];
  193. clear_edgelist_r -> clear_edgelist_r;
  194. clear_edgelist_r -> dp_free;
  195. clear_hlabel2 [ shape=box ];
  196. clear_hlabel2 -> clear_hlabel2il;
  197. clear_hlabel2 -> clear_hlabel2tl;
  198. clear_hlabel2 -> dp_free;
  199. clear_hlabel2il [ shape=box ];
  200. clear_hlabel2il -> dp_free;
  201. clear_hlabel2td [ shape=box ];
  202. clear_hlabel2td -> clear_hlabel2il;
  203. clear_hlabel2td -> dp_free;
  204. clear_hlabel2tl [ shape=box ];
  205. clear_hlabel2tl -> clear_hlabel2td;
  206. clear_hlabel2tl -> clear_hlabel2tl_r;
  207. clear_hlabel2tl -> dp_free;
  208. clear_hlabel2tl_r [ shape=box ];
  209. clear_hlabel2tl_r -> clear_hlabel2td;
  210. clear_hlabel2tl_r -> clear_hlabel2tl_r;
  211. clear_hlabel2tl_r -> dp_free;
  212. clear_hlabel_r [ shape=box ];
  213. clear_hlabel_r -> clear_hlabel2;
  214. clear_hlabel_r -> clear_hlabel_r;
  215. clear_ioedges_r [ shape=box ];
  216. clear_ioedges_r -> clear_ioedges_r;
  217. clear_ioedges_r -> dp_free;
  218. clear_levelnodes_r [ shape=box ];
  219. clear_levelnodes_r -> clear_levelnodes_r;
  220. clear_levelnodes_r -> dp_free;
  221. clear_nnl_r [ shape=box ];
  222. clear_nnl_r -> clear_nnl_r;
  223. clear_nnl_r -> dp_free;
  224. clear_nodelist_r [ shape=box ];
  225. clear_nodelist_r -> clear_nodelist_r;
  226. clear_nodelist_r -> clear_rlabel2;
  227. clear_nodelist_r -> clear_stlist_all;
  228. clear_nodelist_r -> dp_free;
  229. clear_numce_r [ shape=box ];
  230. clear_numce_r -> clear_numce_r;
  231. clear_numce_r -> dp_free;
  232. clear_nume_r [ shape=box ];
  233. clear_nume_r -> clear_nume_r;
  234. clear_nume_r -> dp_free;
  235. clear_posnodes_r [ shape=box ];
  236. clear_posnodes_r -> clear_posnodes_r;
  237. clear_posnodes_r -> dp_free;
  238. clear_rawedgelist [ shape=box ];
  239. clear_rawedgelist -> dp_free;
  240. clear_rawnodelist [ shape=box ];
  241. clear_rawnodelist -> dp_free;
  242. clear_rlabel2 [ shape=box ];
  243. clear_rlabel2 -> clear_rlabel2;
  244. clear_rlabel2 -> dp_free;
  245. clear_rlabel_r [ shape=box ];
  246. clear_rlabel_r -> clear_rlabel2;
  247. clear_rlabel_r -> clear_rlabel_r;
  248. clear_selfedgesnodelist_r [ shape=box ];
  249. clear_selfedgesnodelist_r -> clear_selfedgesnodelist_r;
  250. clear_selfedgesnodelist_r -> dp_free;
  251. clear_sg [ shape=box ];
  252. clear_sg -> clear_sg;
  253. clear_sg -> dp_free;
  254. clear_singlenodelist_r [ shape=box ];
  255. clear_singlenodelist_r -> clear_singlenodelist_r;
  256. clear_singlenodelist_r -> dp_free;
  257. clear_startnodes_r [ shape=box ];
  258. clear_startnodes_r -> clear_startnodes_r;
  259. clear_startnodes_r -> dp_free;
  260. clear_stlist [ shape=box ];
  261. clear_stlist -> dp_free;
  262. clear_stlist_all [ shape=box ];
  263. clear_stlist_all -> clear_stlist;
  264. clear_uniqgraph [ shape=box ];
  265. clear_uniqgraph -> splay_tree_delete;
  266. clear_uniqnode [ shape=box ];
  267. clear_uniqnode -> splay_tree_delete;
  268. clear_uniqnode2 [ shape=box ];
  269. clear_uniqnode2 -> splay_tree_delete;
  270. clear_uniqstr [ shape=box ];
  271. clear_uniqstr -> splay_tree_delete;
  272. clear_vcguniqnode [ shape=box ];
  273. clear_vcguniqnode -> splay_tree_delete;
  274. clearbit [ shape=box ];
  275. clr_data [ shape=box ];
  276. clr_data -> clr_levelnodes;
  277. clr_data -> clr_nglevelnodes;
  278. clr_data -> dp_free;
  279. clr_levelnodes [ shape=box ];
  280. clr_levelnodes -> dp_free;
  281. clr_nglevelnodes [ shape=box ];
  282. clr_nglevelnodes -> dp_free;
  283. color_init [ shape=box ];
  284. color_init -> colordata;
  285. color_init -> splay_tree_new;
  286. coloradd [ shape=box ];
  287. coloradd -> dp_uniqstr;
  288. coloradd -> splay_tree_insert;
  289. colordata [ shape=box ];
  290. colordata -> coloradd;
  291. column_barycenter [ shape=box ];
  292. column_barycenter -> mget;
  293. comparevalue [ shape=box ];
  294. copy_a [ shape=box ];
  295. copy_a -> copy_m;
  296. copy_m [ shape=box ];
  297. copyall [ shape=box ];
  298. copyall -> add_new_edge;
  299. copyall -> add_new_node;
  300. copyall -> uniqnode;
  301. copyall -> uniqstr;
  302. cp_data [ shape=box ];
  303. cp_data -> clr_levelnodes;
  304. cp_data -> cp_make_levelnodes;
  305. cp_data -> dp_calloc;
  306. cp_make_levelnodes [ shape=box ];
  307. cp_make_levelnodes -> dp_calloc;
  308. create_maingraph [ shape=box ];
  309. create_maingraph -> dp_calloc;
  310. create_maingraph -> uniqgraph_add;
  311. create_maingraph -> uniqstr;
  312. create_sg [ shape=box ];
  313. create_sg -> dp_calloc;
  314. create_sg -> uniqgraph_add;
  315. decycle3 [ shape=box ];
  316. decycle3 -> decycle3;
  317. del_edge [ shape=box ];
  318. del_edge -> dp_free;
  319. dia_string [ shape=box ];
  320. dialine [ shape=box ];
  321. do_action [ shape=box ];
  322. do_action -> do_buffer;
  323. do_buffer [ shape=box ];
  324. do_clear_all [ shape=box ];
  325. do_clear_all -> clear_bubbling;
  326. do_clear_all -> clear_edgelist_r;
  327. do_clear_all -> clear_hlabel_r;
  328. do_clear_all -> clear_ioedges_r;
  329. do_clear_all -> clear_nnl_r;
  330. do_clear_all -> clear_nodelist_r;
  331. do_clear_all -> clear_numce_r;
  332. do_clear_all -> clear_nume_r;
  333. do_clear_all -> clear_rawedgelist;
  334. do_clear_all -> clear_rawnodelist;
  335. do_clear_all -> clear_rlabel_r;
  336. do_clear_all -> clear_selfedgesnodelist_r;
  337. do_clear_all -> clear_sg;
  338. do_clear_all -> clear_singlenodelist_r;
  339. do_clear_all -> clear_startnodes_r;
  340. do_clear_all -> clear_uniqgraph;
  341. do_clear_all -> clear_uniqnode;
  342. do_clear_all -> clear_uniqnode2;
  343. do_clear_all -> clear_uniqstr;
  344. do_clear_all -> dp_free;
  345. do_data [ shape=box ];
  346. do_data -> add_new_edge;
  347. do_data -> add_new_node;
  348. do_data -> jgfaddnode;
  349. do_data -> splay_tree_lookup;
  350. do_data -> splay_tree_new;
  351. do_data -> uniqnode;
  352. do_data -> uniqstr;
  353. do_down [ shape=box ];
  354. do_down -> upper_barycenter;
  355. do_key [ shape=box ];
  356. do_key -> uniqstr;
  357. do_layout_all [ shape=box ];
  358. do_layout_all -> barycenter;
  359. do_layout_all -> do_layout_all_r;
  360. do_layout_all -> edgeconnections;
  361. do_layout_all -> edgelabels;
  362. do_layout_all -> edgelen;
  363. do_layout_all -> edgesdownwards;
  364. do_layout_all -> finalxy;
  365. do_layout_all -> improve_positions;
  366. do_layout_all -> longestpath;
  367. do_layout_all -> nodecounts;
  368. do_layout_all -> prep;
  369. do_layout_all -> prepincr;
  370. do_layout_all -> reorg;
  371. do_layout_all -> shorteredges;
  372. do_layout_all -> splitedges;
  373. do_layout_all -> static_maingtk_textsizes;
  374. do_layout_all -> uncycle;
  375. do_layout_all -> ylevels;
  376. do_layout_all_r [ shape=box ];
  377. do_layout_all_r -> barycenter;
  378. do_layout_all_r -> do_layout_all_r;
  379. do_layout_all_r -> do_layout_all_rprint;
  380. do_layout_all_r -> edgelabels;
  381. do_layout_all_r -> edgelen;
  382. do_layout_all_r -> edgesdownwards;
  383. do_layout_all_r -> improve_positions;
  384. do_layout_all_r -> longestpath;
  385. do_layout_all_r -> nodecounts;
  386. do_layout_all_r -> reorg;
  387. do_layout_all_r -> shorteredges;
  388. do_layout_all_r -> splitedges;
  389. do_layout_all_r -> static_maingtk_textsizes;
  390. do_layout_all_r -> uncycle;
  391. do_layout_all_r -> ylevels;
  392. do_layout_all_rprint [ shape=box ];
  393. do_popup [ shape=box ];
  394. do_relayout_all [ shape=box ];
  395. do_relayout_all -> do_clear_all;
  396. do_relayout_all -> do_layout_all;
  397. do_relayout_all -> dofit;
  398. do_relayout_all -> update_status_text;
  399. do_string [ shape=box ];
  400. do_string -> uniqstr;
  401. do_up [ shape=box ];
  402. do_up -> lower_barycenter;
  403. dofit [ shape=box ];
  404. dolabel [ shape=box ];
  405. dolabel -> dp_calloc;
  406. dolabel -> dp_free;
  407. dolabel -> uniqstr;
  408. dom_push [ shape=box ];
  409. dom_push -> memory_realloc;
  410. doscaleit [ shape=box ];
  411. dotparse [ shape=box ];
  412. dotparse -> add_new_edge;
  413. dotparse -> add_new_node;
  414. dotparse -> dolabel;
  415. dotparse -> dp_clearall;
  416. dotparse -> dp_datachk;
  417. dotparse -> dp_lex_deinit;
  418. dotparse -> dp_randnname;
  419. dotparse -> dphl_freemem;
  420. dotparse -> dpif_pr_in_tl;
  421. dotparse -> dpif_pr_out_tl;
  422. dotparse -> hlicopy;
  423. dotparse -> hltcopy;
  424. dotparse -> prrl;
  425. dotparse -> rlcheck;
  426. dotparse -> rlcopy;
  427. dotparse -> sp_addsg_r;
  428. dotparse -> sp_crsg_r;
  429. dotparse -> uniqgraph;
  430. dotparse -> uniqstr;
  431. dotparse -> yyparse;
  432. dp1_chkhmln [ shape=box ];
  433. dp1_chkhmln -> htmlparse;
  434. dp_1chkrec [ shape=box ];
  435. dp_1chkrec -> dp_1chkrecpr;
  436. dp_1chkrec -> dp_2chkrec;
  437. dp_1chkrecpr [ shape=box ];
  438. dp_1chkrecpr -> dp_1chkrecpr;
  439. dp_2chkrec [ shape=box ];
  440. dp_2chkrec -> dp_2chkrec;
  441. dp_2chkrec -> dp_calloc;
  442. dp_2chkrec -> dp_free;
  443. dp_2chkrec -> dp_uniqstr;
  444. dp_addte [ shape=box ];
  445. dp_addte -> dp_calloc;
  446. dp_addte -> dp_free;
  447. dp_aset [ shape=box ];
  448. dp_aset -> dp_do_eattr;
  449. dp_aset -> dp_do_gattr;
  450. dp_aset -> dp_do_nattr;
  451. dp_aset -> splay_tree_insert;
  452. dp_aset -> splay_tree_lookup;
  453. dp_calloc [ shape=box ];
  454. dp_calloc -> memcheck_calloc;
  455. dp_ccat [ shape=box ];
  456. dp_ccat -> dp_calloc;
  457. dp_ccat -> dp_free;
  458. dp_ccat -> dp_uniqstr;
  459. dp_check_c_comment [ shape=box ];
  460. dp_chkerr [ shape=box ];
  461. dp_chkhtmln [ shape=box ];
  462. dp_chkhtmln -> dp1_chkhmln;
  463. dp_chknum [ shape=box ];
  464. dp_chkrec [ shape=box ];
  465. dp_chkrec -> dp_1chkrec;
  466. dp_cke [ shape=box ];
  467. dp_clear_uniqstr [ shape=box ];
  468. dp_clear_uniqstr -> splay_tree_delete;
  469. dp_clearall [ shape=box ];
  470. dp_clearall -> clear_dpuniqnode;
  471. dp_clearall -> dp_clear_uniqstr;
  472. dp_clearall -> dp_clredges;
  473. dp_clearall -> dp_clrep;
  474. dp_clearall -> dp_clrgraphs;
  475. dp_clearall -> dp_clrheade;
  476. dp_clearall -> dp_clrnodes;
  477. dp_clearall -> dp_clrtmpe;
  478. dp_clearall -> dp_colorcode_clear;
  479. dp_clearall -> dp_free;
  480. dp_clearall -> splay_tree_delete;
  481. dp_clearhlinfonode [ shape=box ];
  482. dp_clearhlinfonode -> dp_free;
  483. dp_clearhlinfonode -> dp_freememt_r;
  484. dp_clredges [ shape=box ];
  485. dp_clredges -> dp_clredges_r;
  486. dp_clredges -> dp_free;
  487. dp_clredges_r [ shape=box ];
  488. dp_clredges_r -> dp_clredges_r;
  489. dp_clredges_r -> dp_free;
  490. dp_clrep [ shape=box ];
  491. dp_clrep -> dp_clrep_r;
  492. dp_clrep -> dp_free;
  493. dp_clrep_r [ shape=box ];
  494. dp_clrep_r -> dp_clrep_r;
  495. dp_clrep_r -> dp_free;
  496. dp_clrgraph_r [ shape=box ];
  497. dp_clrgraph_r -> dp_clrgraph_r;
  498. dp_clrgraph_r -> dp_free;
  499. dp_clrgraph_r -> splay_tree_delete;
  500. dp_clrgraphs [ shape=box ];
  501. dp_clrgraphs -> dp_clrgraph_r;
  502. dp_clrgraphs -> dp_free;
  503. dp_clrheade [ shape=box ];
  504. dp_clrheade -> dp_free;
  505. dp_clrnodes [ shape=box ];
  506. dp_clrnodes -> dp_clearhlinfonode;
  507. dp_clrnodes -> dp_clrnodes_r;
  508. dp_clrnodes -> dp_clrnodesli;
  509. dp_clrnodes -> dp_free;
  510. dp_clrnodes_r [ shape=box ];
  511. dp_clrnodes_r -> dp_clrnodes_r;
  512. dp_clrnodes_r -> dp_free;
  513. dp_clrnodesli [ shape=box ];
  514. dp_clrnodesli -> dp_clrnodesli;
  515. dp_clrnodesli -> dp_free;
  516. dp_clrtmpe [ shape=box ];
  517. dp_clrtmpe -> dp_free;
  518. dp_colorcode [ shape=box ];
  519. dp_colorcode -> color_init;
  520. dp_colorcode -> hsv2rgb;
  521. dp_colorcode -> splay_tree_lookup;
  522. dp_colorcode_clear [ shape=box ];
  523. dp_colorcode_clear -> splay_tree_delete;
  524. dp_colorschemecode [ shape=box ];
  525. dp_datachk [ shape=box ];
  526. dp_datachk -> dp_chkhtmln;
  527. dp_datachk -> dp_chkrec;
  528. dp_do_eattr [ shape=box ];
  529. dp_do_eattr -> dp_colorschemecode;
  530. dp_do_eattr -> dp_free;
  531. dp_do_eattr -> dp_getarrow;
  532. dp_do_eattr -> dp_getbool;
  533. dp_do_eattr -> dp_getcolor;
  534. dp_do_eattr -> dp_getdir;
  535. dp_do_eattr -> dp_getnum;
  536. dp_do_eattr -> dp_getpoint;
  537. dp_do_eattr -> dp_getstyle;
  538. dp_do_eattr -> dp_iscompass;
  539. dp_do_eattr -> dp_uniqstr;
  540. dp_do_gattr [ shape=box ];
  541. dp_do_gattr -> dp_chknum;
  542. dp_do_gattr -> dp_colorschemecode;
  543. dp_do_gattr -> dp_free;
  544. dp_do_gattr -> dp_getbool;
  545. dp_do_gattr -> dp_getclrank;
  546. dp_do_gattr -> dp_getcolor;
  547. dp_do_gattr -> dp_getmargin;
  548. dp_do_gattr -> dp_getnum;
  549. dp_do_gattr -> dp_getoo;
  550. dp_do_gattr -> dp_getpoint;
  551. dp_do_gattr -> dp_getrank;
  552. dp_do_gattr -> dp_getrankdir;
  553. dp_do_gattr -> dp_getranksep;
  554. dp_do_gattr -> dp_getratio;
  555. dp_do_gattr -> dp_getrect;
  556. dp_do_gattr -> dp_getsplines;
  557. dp_do_gattr -> dp_getstyle;
  558. dp_do_gattr -> dp_islabelloc;
  559. dp_do_nattr [ shape=box ];
  560. dp_do_nattr -> dp_chknum;
  561. dp_do_nattr -> dp_colorschemecode;
  562. dp_do_nattr -> dp_free;
  563. dp_do_nattr -> dp_getbool;
  564. dp_do_nattr -> dp_getcolor;
  565. dp_do_nattr -> dp_getmargin;
  566. dp_do_nattr -> dp_getnum;
  567. dp_do_nattr -> dp_getstyle;
  568. dp_do_nattr -> dp_isdotshape;
  569. dp_do_nattr -> dp_islabelloc;
  570. dp_do_nattr -> dp_uniqstr;
  571. dp_edgefdef [ shape=box ];
  572. dp_edgefdef -> dp_uniqstr;
  573. dp_ende [ shape=box ];
  574. dp_ende -> dp_clrheade;
  575. dp_ende -> dp_clrtmpe;
  576. dp_ende -> dp_endel;
  577. dp_ende -> dp_endeprlink;
  578. dp_ende -> dp_free;
  579. dp_ende -> dp_mkedges;
  580. dp_ende -> dp_prtae;
  581. dp_ende -> dp_prte;
  582. dp_endel [ shape=box ];
  583. dp_endel -> dp_endel_g2g;
  584. dp_endel -> dp_endel_g2n;
  585. dp_endel -> dp_endel_n2g;
  586. dp_endel -> dp_endel_n2n;
  587. dp_endel_g2g [ shape=box ];
  588. dp_endel_g2g -> dp_addte;
  589. dp_endel_g2n [ shape=box ];
  590. dp_endel_g2n -> dp_addte;
  591. dp_endel_n2g [ shape=box ];
  592. dp_endel_n2g -> dp_addte;
  593. dp_endel_n2n [ shape=box ];
  594. dp_endel_n2n -> dp_addte;
  595. dp_endeprlink [ shape=box ];
  596. dp_endss [ shape=box ];
  597. dp_endss -> dp_calloc;
  598. dp_endss -> dp_pullgraph;
  599. dp_eplink [ shape=box ];
  600. dp_eplink -> dp_calloc;
  601. dp_findcolor [ shape=box ];
  602. dp_findcolor -> dp_colorcode;
  603. dp_free [ shape=box ];
  604. dp_free -> memcheck_free;
  605. dp_freememil [ shape=box ];
  606. dp_freememil -> dp_free;
  607. dp_freememt_r [ shape=box ];
  608. dp_freememt_r -> dp_free;
  609. dp_freememt_r -> dp_freememt_r;
  610. dp_freememt_r -> dp_freememtr;
  611. dp_freememtr [ shape=box ];
  612. dp_freememtr -> dp_free;
  613. dp_freememtr -> dp_freememil;
  614. dp_getarrow [ shape=box ];
  615. dp_getarrow -> dp_calloc;
  616. dp_getarrow -> dp_uniqstr;
  617. dp_getbool [ shape=box ];
  618. dp_getbool -> dp_calloc;
  619. dp_getbool -> dp_free;
  620. dp_getclrank [ shape=box ];
  621. dp_getcolor [ shape=box ];
  622. dp_getcolor -> dp_calloc;
  623. dp_getcolor -> dp_findcolor;
  624. dp_getdir [ shape=box ];
  625. dp_getdir -> dp_calloc;
  626. dp_getinum [ shape=box ];
  627. dp_getinum -> dp_calloc;
  628. dp_getmargin [ shape=box ];
  629. dp_getmargin -> dp_calloc;
  630. dp_getnum [ shape=box ];
  631. dp_getnum -> dp_calloc;
  632. dp_getoo [ shape=box ];
  633. dp_getoo -> dp_calloc;
  634. dp_getpoint [ shape=box ];
  635. dp_getpoint -> dp_calloc;
  636. dp_getpoint -> dp_free;
  637. dp_getrank [ shape=box ];
  638. dp_getrank -> dp_calloc;
  639. dp_getrankdir [ shape=box ];
  640. dp_getrankdir -> dp_calloc;
  641. dp_getranksep [ shape=box ];
  642. dp_getranksep -> dp_calloc;
  643. dp_getratio [ shape=box ];
  644. dp_getratio -> dp_calloc;
  645. dp_getrect [ shape=box ];
  646. dp_getrect -> dp_calloc;
  647. dp_getsplines [ shape=box ];
  648. dp_getsplines -> dp_calloc;
  649. dp_getstyle [ shape=box ];
  650. dp_getstyle -> dp_calloc;
  651. dp_getstyle -> dp_free;
  652. dp_getstyle -> dp_uniqstr;
  653. dp_graphlink [ shape=box ];
  654. dp_graphlink -> dp_calloc;
  655. dp_ine [ shape=box ];
  656. dp_ine -> dp_eplink;
  657. dp_iscompass [ shape=box ];
  658. dp_isdotshape [ shape=box ];
  659. dp_islabelloc [ shape=box ];
  660. dp_lex_clear [ shape=box ];
  661. dp_lex_clear -> dp_free;
  662. dp_lex_deinit [ shape=box ];
  663. dp_lex_deinit -> dp_lex_clear;
  664. dp_lex_deinit -> yylex_destroy;
  665. dp_malloc [ shape=box ];
  666. dp_malloc -> dp_calloc;
  667. dp_mkedges [ shape=box ];
  668. dp_mkedges -> dp_calloc;
  669. dp_mknid [ shape=box ];
  670. dp_mknid -> dp_calloc;
  671. dp_mknid -> dp_iscompass;
  672. dp_mknid -> dp_nodelink;
  673. dp_mknid -> dpuniqnode;
  674. dp_mknid -> dpuniqnode_add;
  675. dp_mknode0 [ shape=box ];
  676. dp_mknode0 -> dp_calloc;
  677. dp_mknode0 -> dp_nodelink;
  678. dp_mknode0 -> dpuniqnode;
  679. dp_mknode0 -> dpuniqnode_add;
  680. dp_namedsubg [ shape=box ];
  681. dp_namedsubg -> dp_calloc;
  682. dp_namedsubg -> dp_graphlink;
  683. dp_namedsubg -> dp_nsubg;
  684. dp_namedsubg -> dp_pushgraph;
  685. dp_newe [ shape=box ];
  686. dp_newe -> dp_calloc;
  687. dp_nodelink [ shape=box ];
  688. dp_nodelink -> dp_calloc;
  689. dp_nsubg [ shape=box ];
  690. dp_nsubg -> dp_calloc;
  691. dp_nsubg -> dp_edgefdef;
  692. dp_nsubg -> dp_free;
  693. dp_nsubg -> dp_uniqstr;
  694. dp_nsubg -> splay_tree_new;
  695. dp_prtae [ shape=box ];
  696. dp_prte [ shape=box ];
  697. dp_pullgraph [ shape=box ];
  698. dp_pullgraph -> splay_tree_lookup;
  699. dp_pullgraph -> splay_tree_remove;
  700. dp_pushgraph [ shape=box ];
  701. dp_pushgraph -> splay_tree_insert;
  702. dp_randnname [ shape=box ];
  703. dp_randnname -> dp_uniqstr;
  704. dp_randnname -> dpuniqnode;
  705. dp_realloc [ shape=box ];
  706. dp_realloc -> memcheck_realloc;
  707. dp_sg [ shape=box ];
  708. dp_sg -> dp_calloc;
  709. dp_sg -> dp_edgefdef;
  710. dp_sg -> dp_free;
  711. dp_sg -> dp_pushgraph;
  712. dp_sg -> dp_uniqstr;
  713. dp_sg -> splay_tree_new;
  714. dp_starte1 [ shape=box ];
  715. dp_starte1 -> dp_calloc;
  716. dp_starte1 -> dp_eplink;
  717. dp_starte2 [ shape=box ];
  718. dp_starte2 -> dp_calloc;
  719. dp_starte2 -> dp_eplink;
  720. dp_uniqstr [ shape=box ];
  721. dp_uniqstr -> dp_calloc;
  722. dp_uniqstr -> splay_tree_insert;
  723. dp_uniqstr -> splay_tree_lookup;
  724. dp_uniqstr -> splay_tree_new;
  725. dphl_attr_huh [ shape=box ];
  726. dphl_chk_align [ shape=box ];
  727. dphl_chk_balign [ shape=box ];
  728. dphl_chk_bgcolor [ shape=box ];
  729. dphl_chk_bgcolor -> dp_free;
  730. dphl_chk_bgcolor -> dp_getcolor;
  731. dphl_chk_border [ shape=box ];
  732. dphl_chk_border -> dp_free;
  733. dphl_chk_border -> dp_getinum;
  734. dphl_chk_cellborder [ shape=box ];
  735. dphl_chk_cellborder -> dp_free;
  736. dphl_chk_cellborder -> dp_getinum;
  737. dphl_chk_cellpadding [ shape=box ];
  738. dphl_chk_cellpadding -> dp_free;
  739. dphl_chk_cellpadding -> dp_getinum;
  740. dphl_chk_cellspacing [ shape=box ];
  741. dphl_chk_cellspacing -> dp_free;
  742. dphl_chk_cellspacing -> dp_getnum;
  743. dphl_chk_color [ shape=box ];
  744. dphl_chk_color -> dp_free;
  745. dphl_chk_color -> dp_getcolor;
  746. dphl_chk_colspan [ shape=box ];
  747. dphl_chk_colspan -> dp_free;
  748. dphl_chk_colspan -> dp_getinum;
  749. dphl_chk_columns [ shape=box ];
  750. dphl_chk_err [ shape=box ];
  751. dphl_chk_face [ shape=box ];
  752. dphl_chk_fixedsize [ shape=box ];
  753. dphl_chk_gradientangle [ shape=box ];
  754. dphl_chk_gradientangle -> dp_free;
  755. dphl_chk_gradientangle -> dp_getinum;
  756. dphl_chk_height [ shape=box ];
  757. dphl_chk_height -> dp_free;
  758. dphl_chk_height -> dp_getinum;
  759. dphl_chk_href [ shape=box ];
  760. dphl_chk_id [ shape=box ];
  761. dphl_chk_pointsize [ shape=box ];
  762. dphl_chk_pointsize -> dp_free;
  763. dphl_chk_pointsize -> dp_getnum;
  764. dphl_chk_port [ shape=box ];
  765. dphl_chk_rows [ shape=box ];
  766. dphl_chk_rowspan [ shape=box ];
  767. dphl_chk_rowspan -> dp_free;
  768. dphl_chk_rowspan -> dp_getinum;
  769. dphl_chk_scale [ shape=box ];
  770. dphl_chk_sides [ shape=box ];
  771. dphl_chk_src [ shape=box ];
  772. dphl_chk_style [ shape=box ];
  773. dphl_chk_style -> dp_calloc;
  774. dphl_chk_style -> dp_free;
  775. dphl_chk_target [ shape=box ];
  776. dphl_chk_title [ shape=box ];
  777. dphl_chk_valign [ shape=box ];
  778. dphl_chk_width [ shape=box ];
  779. dphl_chk_width -> dp_free;
  780. dphl_chk_width -> dp_getinum;
  781. dphl_clearhlinfo [ shape=box ];
  782. dphl_clearhlinfo -> dp_free;
  783. dphl_data [ shape=box ];
  784. dphl_data -> dphl_chk_err;
  785. dphl_data -> dphl_itemitems;
  786. dphl_data -> dphl_itemtables;
  787. dphl_data -> dplh_htrans;
  788. dphl_ebr [ shape=box ];
  789. dphl_ebr -> dphl_itemitems;
  790. dphl_ebr -> dphl_itemtables;
  791. dphl_efont [ shape=box ];
  792. dphl_efont -> dphl_pullfont;
  793. dphl_eimg [ shape=box ];
  794. dphl_eimg -> dp_free;
  795. dphl_eimg -> dphl_itemtables;
  796. dphl_etable [ shape=box ];
  797. dphl_etable -> dphl_pulltable;
  798. dphl_etd [ shape=box ];
  799. dphl_etd -> dphl_pulltd;
  800. dphl_etr [ shape=box ];
  801. dphl_etr -> dphl_pulltr;
  802. dphl_freemem [ shape=box ];
  803. dphl_freemem -> dp_free;
  804. dphl_freemem -> splay_tree_delete;
  805. dphl_itemitems [ shape=box ];
  806. dphl_itemitems -> dp_calloc;
  807. dphl_itemitems -> dphl_makeitem;
  808. dphl_itemtables [ shape=box ];
  809. dphl_itemtables -> dp_calloc;
  810. dphl_itemtables -> dphl_makeitem;
  811. dphl_makeitem [ shape=box ];
  812. dphl_makeitem -> dp_calloc;
  813. dphl_pullfont [ shape=box ];
  814. dphl_pullfont -> splay_tree_delete;
  815. dphl_pullfont -> splay_tree_remove;
  816. dphl_pulltable [ shape=box ];
  817. dphl_pulltable -> splay_tree_delete;
  818. dphl_pulltable -> splay_tree_remove;
  819. dphl_pulltd [ shape=box ];
  820. dphl_pulltd -> splay_tree_delete;
  821. dphl_pulltd -> splay_tree_remove;
  822. dphl_pulltr [ shape=box ];
  823. dphl_pulltr -> splay_tree_delete;
  824. dphl_pulltr -> splay_tree_remove;
  825. dphl_pushfont [ shape=box ];
  826. dphl_pushfont -> splay_tree_insert;
  827. dphl_pushfont -> splay_tree_new;
  828. dphl_pushtable [ shape=box ];
  829. dphl_pushtable -> splay_tree_insert;
  830. dphl_pushtable -> splay_tree_new;
  831. dphl_pushtd [ shape=box ];
  832. dphl_pushtd -> splay_tree_insert;
  833. dphl_pushtd -> splay_tree_new;
  834. dphl_pushtr [ shape=box ];
  835. dphl_pushtr -> splay_tree_insert;
  836. dphl_pushtr -> splay_tree_new;
  837. dphl_rbr [ shape=box ];
  838. dphl_rbr -> dp_calloc;
  839. dphl_rbr -> dp_free;
  840. dphl_rfont [ shape=box ];
  841. dphl_rfont -> dp_calloc;
  842. dphl_rfont -> dp_free;
  843. dphl_rfont -> dphl_pushfont;
  844. dphl_rhr [ shape=box ];
  845. dphl_rhr -> dphl_itemtables;
  846. dphl_rimg [ shape=box ];
  847. dphl_rimg -> dp_calloc;
  848. dphl_rimg -> dp_free;
  849. dphl_rsub [ shape=box ];
  850. dphl_rsup [ shape=box ];
  851. dphl_rtable [ shape=box ];
  852. dphl_rtable -> dp_calloc;
  853. dphl_rtable -> dp_free;
  854. dphl_rtable -> dphl_pushtable;
  855. dphl_rtd [ shape=box ];
  856. dphl_rtd -> dp_calloc;
  857. dphl_rtd -> dp_free;
  858. dphl_rtd -> dphl_pushtd;
  859. dphl_rtr [ shape=box ];
  860. dphl_rtr -> dp_calloc;
  861. dphl_rtr -> dp_free;
  862. dphl_rtr -> dphl_pushtr;
  863. dphl_rvr [ shape=box ];
  864. dphl_rvr -> dphl_itemtables;
  865. dphl_tabledata [ shape=box ];
  866. dpif_pr_in_1il [ shape=box ];
  867. dpif_pr_in_1il -> dpif_pr_in_sp;
  868. dpif_pr_in_il [ shape=box ];
  869. dpif_pr_in_il -> dpif_pr_in_1il;
  870. dpif_pr_in_il -> dpif_pr_in_sp;
  871. dpif_pr_in_sp [ shape=box ];
  872. dpif_pr_in_t_r [ shape=box ];
  873. dpif_pr_in_t_r -> dpif_pr_in_sp;
  874. dpif_pr_in_t_r -> dpif_pr_in_t_r;
  875. dpif_pr_in_t_r -> dpif_pr_in_tr;
  876. dpif_pr_in_tl [ shape=box ];
  877. dpif_pr_in_tl -> dpif_pr_in_t_r;
  878. dpif_pr_in_tr [ shape=box ];
  879. dpif_pr_in_tr -> dpif_pr_in_il;
  880. dpif_pr_in_tr -> dpif_pr_in_sp;
  881. dpif_pr_out_sp [ shape=box ];
  882. dpif_pr_out_t_r [ shape=box ];
  883. dpif_pr_out_t_r -> dpif_pr_out_sp;
  884. dpif_pr_out_t_r -> dpif_pr_out_t_r;
  885. dpif_pr_out_tl [ shape=box ];
  886. dpif_pr_out_tl -> dpif_pr_out_t_r;
  887. dplh_htrans [ shape=box ];
  888. dplh_htrans -> dp_calloc;
  889. dplh_htrans -> dp_free;
  890. dplh_htrans -> dp_uniqstr;
  891. dplh_htrans -> dphl_chk_err;
  892. dpuniqnode [ shape=box ];
  893. dpuniqnode -> splay_tree_lookup;
  894. dpuniqnode_add [ shape=box ];
  895. dpuniqnode_add -> splay_tree_insert;
  896. dpuniqnode_add -> splay_tree_lookup;
  897. dpuniqnode_add -> splay_tree_new;
  898. drarrow [ shape=box ];
  899. dummy1_toggle [ shape=box ];
  900. edgeconnections [ shape=box ];
  901. edgeconnections -> dp_calloc;
  902. edgelabels [ shape=box ];
  903. edgelabels -> add_new_dummyedge;
  904. edgelabels -> add_new_dummynode;
  905. edgelabels -> del_edge;
  906. edgelabels -> uniqnode2;
  907. edgelen [ shape=box ];
  908. edgelen -> clear_stlist_all;
  909. edgelen -> make_stlist;
  910. edgesdownwards [ shape=box ];
  911. edgesdownwards -> clear_stlist_all;
  912. edgesdownwards -> make_stlist;
  913. elabel1_toggle [ shape=box ];
  914. elabel1_toggle -> do_relayout_all;
  915. entcmp [ shape=box ];
  916. equal_a [ shape=box ];
  917. equal_a -> equal_m;
  918. equal_m [ shape=box ];
  919. equal_m -> mget;
  920. equals [ shape=box ];
  921. equals -> dp_calloc;
  922. equals -> dp_free;
  923. exch_columns [ shape=box ];
  924. exch_columns -> mget;
  925. exch_columns -> mget_set;
  926. exch_rows [ shape=box ];
  927. exch_rows -> mget;
  928. exch_rows -> mget_set;
  929. finalxy [ shape=box ];
  930. finalxy -> finalxy1;
  931. finalxy1 [ shape=box ];
  932. finalxy1 -> clear_levelnodes_r;
  933. finalxy1 -> clear_nume_r;
  934. finalxy1 -> clear_posnodes_r;
  935. finalxy1 -> dp_calloc;
  936. finalxy1 -> make_levelnodes;
  937. finalxy1 -> make_posnodes;
  938. first_bubbling [ shape=box ];
  939. first_bubbling -> insert_node_bubble;
  940. g_action_get_type [ shape=box ];
  941. g_action_get_type -> gboolean;
  942. g_action_map_get_type [ shape=box ];
  943. g_action_map_get_type -> gboolean;
  944. g_app_launch_context_get_type [ shape=box ];
  945. g_app_launch_context_get_type -> gboolean;
  946. g_app_launch_context_get_type -> gint;
  947. g_async_result_get_type [ shape=box ];
  948. g_async_result_get_type -> gboolean;
  949. g_autoptr_cleanup_generic_gfree [ shape=box ];
  950. g_autoptr_cleanup_gstring_free [ shape=box ];
  951. g_buffered_input_stream_get_type [ shape=box ];
  952. g_buffered_input_stream_get_type -> gboolean;
  953. g_cancellable_get_type [ shape=box ];
  954. g_credentials_get_type [ shape=box ];
  955. g_credentials_get_type -> gboolean;
  956. g_credentials_get_type -> gint;
  957. g_dbus_interface_get_type [ shape=box ];
  958. g_dbus_interface_get_type -> gboolean;
  959. g_dbus_object_get_type [ shape=box ];
  960. g_dbus_object_get_type -> gboolean;
  961. g_dbus_server_get_type [ shape=box ];
  962. g_dbus_server_get_type -> gboolean;
  963. g_dtls_server_connection_get_type [ shape=box ];
  964. g_dtls_server_connection_get_type -> gboolean;
  965. g_emblemed_icon_get_type [ shape=box ];
  966. g_emblemed_icon_get_type -> gboolean;
  967. g_file_attribute_matcher_get_type [ shape=box ];
  968. g_file_attribute_matcher_get_type -> gboolean;
  969. g_file_enumerator_get_type [ shape=box ];
  970. g_file_enumerator_get_type -> gboolean;
  971. g_file_input_stream_get_type [ shape=box ];
  972. g_file_input_stream_get_type -> gboolean;
  973. g_file_io_stream_get_type [ shape=box ];
  974. g_file_io_stream_get_type -> gboolean;
  975. g_filename_completer_get_type [ shape=box ];
  976. g_filename_completer_get_type -> gboolean;
  977. g_filter_input_stream_get_type [ shape=box ];
  978. g_inet_address_mask_get_type [ shape=box ];
  979. g_inet_address_mask_get_type -> gboolean;
  980. g_io_stream_get_type [ shape=box ];
  981. g_io_stream_get_type -> gboolean;
  982. g_memory_output_stream_get_type [ shape=box ];
  983. g_memory_output_stream_get_type -> gboolean;
  984. g_menu_attribute_iter_get_type [ shape=box ];
  985. g_menu_attribute_iter_get_type -> gboolean;
  986. g_menu_model_get_type [ shape=box ];
  987. g_menu_model_get_type -> gboolean;
  988. g_mount_operation_get_type [ shape=box ];
  989. g_mount_operation_get_type -> gboolean;
  990. g_mutex_locker_free [ shape=box ];
  991. g_mutex_locker_new [ shape=box ];
  992. g_network_address_get_type [ shape=box ];
  993. g_network_address_get_type -> gboolean;
  994. g_network_service_get_type [ shape=box ];
  995. g_network_service_get_type -> gboolean;
  996. g_pollable_input_stream_get_type [ shape=box ];
  997. g_pollable_input_stream_get_type -> gboolean;
  998. g_property_action_get_type [ shape=box ];
  999. g_property_action_get_type -> gboolean;
  1000. g_proxy_address_enumerator_get_type [ shape=box ];
  1001. g_proxy_address_enumerator_get_type -> gboolean;
  1002. g_remote_action_group_get_type [ shape=box ];
  1003. g_remote_action_group_get_type -> gboolean;
  1004. g_remote_action_group_get_type -> gint;
  1005. g_resource_get_type [ shape=box ];
  1006. g_resource_get_type -> gboolean;
  1007. g_settings_schema_key_get_type [ shape=box ];
  1008. g_settings_schema_key_get_type -> gboolean;
  1009. g_socket_connection_get_type [ shape=box ];
  1010. g_socket_listener_get_type [ shape=box ];
  1011. g_socket_listener_get_type -> gboolean;
  1012. g_steal_pointer [ shape=box ];
  1013. g_steal_pointer -> gpointer;
  1014. g_string_append_c_inline [ shape=box ];
  1015. g_themed_icon_get_type [ shape=box ];
  1016. g_themed_icon_get_type -> GType;
  1017. g_themed_icon_get_type -> gboolean;
  1018. g_tls_backend_get_type [ shape=box ];
  1019. g_tls_certificate_get_type [ shape=box ];
  1020. g_tls_certificate_get_type -> gboolean;
  1021. g_tls_file_database_get_type [ shape=box ];
  1022. g_tls_password_get_type [ shape=box ];
  1023. g_tls_password_get_type -> gboolean;
  1024. g_type_test_flags [ shape=box ];
  1025. g_type_test_flags -> gboolean;
  1026. g_type_test_flags -> gint;
  1027. g_vfs_get_type [ shape=box ];
  1028. g_vfs_get_type -> gboolean;
  1029. gboolean [ shape=box ];
  1030. gboolean -> GType;
  1031. gboolean -> gboolean;
  1032. gboolean -> gint;
  1033. gboolean -> gpointer;
  1034. gdk_event_get_type [ shape=box ];
  1035. gdk_event_get_type -> gint;
  1036. gdk_gc_get_type [ shape=box ];
  1037. gdk_gc_get_type -> gint;
  1038. getnodedata_from_rhp_1 [ shape=box ];
  1039. gint [ shape=box ];
  1040. gint -> gboolean;
  1041. gint -> gint;
  1042. give_horizontal_place [ shape=box ];
  1043. give_horizontal_place -> insert_node_bubble;
  1044. give_horizontal_place -> new_bubbles;
  1045. give_horizontal_place -> sort_levellist;
  1046. glib_autoptr_cleanup_GListModel [ shape=box ];
  1047. glib_autoptr_cleanup_GListStore [ shape=box ];
  1048. glib_listautoptr_cleanup_GAction [ shape=box ];
  1049. glib_listautoptr_cleanup_GActionMap [ shape=box ];
  1050. glib_listautoptr_cleanup_GAppInfo [ shape=box ];
  1051. glib_listautoptr_cleanup_GAppInfoMonitor [ shape=box ];
  1052. glib_listautoptr_cleanup_GAppLaunchContext [ shape=box ];
  1053. glib_listautoptr_cleanup_GApplication [ shape=box ];
  1054. glib_listautoptr_cleanup_GApplicationCommandLine [ shape=box ];
  1055. glib_listautoptr_cleanup_GArray [ shape=box ];
  1056. glib_listautoptr_cleanup_GAsyncInitable [ shape=box ];
  1057. glib_listautoptr_cleanup_GAsyncQueue [ shape=box ];
  1058. glib_listautoptr_cleanup_GAsyncResult [ shape=box ];
  1059. glib_listautoptr_cleanup_GBookmarkFile [ shape=box ];
  1060. glib_listautoptr_cleanup_GBufferedInputStream [ shape=box ];
  1061. glib_listautoptr_cleanup_GBufferedOutputStream [ shape=box ];
  1062. glib_listautoptr_cleanup_GByteArray [ shape=box ];
  1063. glib_listautoptr_cleanup_GBytes [ shape=box ];
  1064. glib_listautoptr_cleanup_GBytesIcon [ shape=box ];
  1065. glib_listautoptr_cleanup_GCancellable [ shape=box ];
  1066. glib_listautoptr_cleanup_GCharsetConverter [ shape=box ];
  1067. glib_listautoptr_cleanup_GChecksum [ shape=box ];
  1068. glib_listautoptr_cleanup_GClosure [ shape=box ];
  1069. glib_listautoptr_cleanup_GConverter [ shape=box ];
  1070. glib_listautoptr_cleanup_GConverterInputStream [ shape=box ];
  1071. glib_listautoptr_cleanup_GConverterOutputStream [ shape=box ];
  1072. glib_listautoptr_cleanup_GCredentials [ shape=box ];
  1073. glib_listautoptr_cleanup_GDBusActionGroup [ shape=box ];
  1074. glib_listautoptr_cleanup_GDBusAuthObserver [ shape=box ];
  1075. glib_listautoptr_cleanup_GDBusConnection [ shape=box ];
  1076. glib_listautoptr_cleanup_GDBusInterface [ shape=box ];
  1077. glib_listautoptr_cleanup_GDBusInterfaceSkeleton [ shape=box ];
  1078. glib_listautoptr_cleanup_GDBusMenuModel [ shape=box ];
  1079. glib_listautoptr_cleanup_GDBusMessage [ shape=box ];
  1080. glib_listautoptr_cleanup_GDBusMethodInvocation [ shape=box ];
  1081. glib_listautoptr_cleanup_GDBusNodeInfo [ shape=box ];
  1082. glib_listautoptr_cleanup_GDBusObject [ shape=box ];
  1083. glib_listautoptr_cleanup_GDBusObjectManager [ shape=box ];
  1084. glib_listautoptr_cleanup_GDBusObjectManagerClient [ shape=box ];
  1085. glib_listautoptr_cleanup_GDBusObjectManagerServer [ shape=box ];
  1086. glib_listautoptr_cleanup_GDBusObjectProxy [ shape=box ];
  1087. glib_listautoptr_cleanup_GDBusObjectSkeleton [ shape=box ];
  1088. glib_listautoptr_cleanup_GDBusProxy [ shape=box ];
  1089. glib_listautoptr_cleanup_GDBusServer [ shape=box ];
  1090. glib_listautoptr_cleanup_GDataInputStream [ shape=box ];
  1091. glib_listautoptr_cleanup_GDataOutputStream [ shape=box ];
  1092. glib_listautoptr_cleanup_GDatagramBased [ shape=box ];
  1093. glib_listautoptr_cleanup_GDateTime [ shape=box ];
  1094. glib_listautoptr_cleanup_GDir [ shape=box ];
  1095. glib_listautoptr_cleanup_GDrive [ shape=box ];
  1096. glib_listautoptr_cleanup_GEmblem [ shape=box ];
  1097. glib_listautoptr_cleanup_GEmblemedIcon [ shape=box ];
  1098. glib_listautoptr_cleanup_GEnumClass [ shape=box ];
  1099. glib_listautoptr_cleanup_GError [ shape=box ];
  1100. glib_listautoptr_cleanup_GFile [ shape=box ];
  1101. glib_listautoptr_cleanup_GFileAttributeInfoList [ shape=box ];
  1102. glib_listautoptr_cleanup_GFileEnumerator [ shape=box ];
  1103. glib_listautoptr_cleanup_GFileIOStream [ shape=box ];
  1104. glib_listautoptr_cleanup_GFileIcon [ shape=box ];
  1105. glib_listautoptr_cleanup_GFileInfo [ shape=box ];
  1106. glib_listautoptr_cleanup_GFileInputStream [ shape=box ];
  1107. glib_listautoptr_cleanup_GFileMonitor [ shape=box ];
  1108. glib_listautoptr_cleanup_GFileOutputStream [ shape=box ];
  1109. glib_listautoptr_cleanup_GFilenameCompleter [ shape=box ];
  1110. glib_listautoptr_cleanup_GFilterInputStream [ shape=box ];
  1111. glib_listautoptr_cleanup_GFilterOutputStream [ shape=box ];
  1112. glib_listautoptr_cleanup_GFlagsClass [ shape=box ];
  1113. glib_listautoptr_cleanup_GHashTable [ shape=box ];
  1114. glib_listautoptr_cleanup_GHmac [ shape=box ];
  1115. glib_listautoptr_cleanup_GIOChannel [ shape=box ];
  1116. glib_listautoptr_cleanup_GIOModule [ shape=box ];
  1117. glib_listautoptr_cleanup_GIOStream [ shape=box ];
  1118. glib_listautoptr_cleanup_GIcon [ shape=box ];
  1119. glib_listautoptr_cleanup_GInetAddress [ shape=box ];
  1120. glib_listautoptr_cleanup_GInetAddressMask [ shape=box ];
  1121. glib_listautoptr_cleanup_GInetSocketAddress [ shape=box ];
  1122. glib_listautoptr_cleanup_GInitable [ shape=box ];
  1123. glib_listautoptr_cleanup_GInitiallyUnowned [ shape=box ];
  1124. glib_listautoptr_cleanup_GInputStream [ shape=box ];
  1125. glib_listautoptr_cleanup_GKeyFile [ shape=box ];
  1126. glib_listautoptr_cleanup_GList [ shape=box ];
  1127. glib_listautoptr_cleanup_GLoadableIcon [ shape=box ];
  1128. glib_listautoptr_cleanup_GMainContext [ shape=box ];
  1129. glib_listautoptr_cleanup_GMainLoop [ shape=box ];
  1130. glib_listautoptr_cleanup_GMappedFile [ shape=box ];
  1131. glib_listautoptr_cleanup_GMarkupParseContext [ shape=box ];
  1132. glib_listautoptr_cleanup_GMatchInfo [ shape=box ];
  1133. glib_listautoptr_cleanup_GMemoryInputStream [ shape=box ];
  1134. glib_listautoptr_cleanup_GMemoryOutputStream [ shape=box ];
  1135. glib_listautoptr_cleanup_GMenu [ shape=box ];
  1136. glib_listautoptr_cleanup_GMenuAttributeIter [ shape=box ];
  1137. glib_listautoptr_cleanup_GMenuItem [ shape=box ];
  1138. glib_listautoptr_cleanup_GMenuLinkIter [ shape=box ];
  1139. glib_listautoptr_cleanup_GMenuModel [ shape=box ];
  1140. glib_listautoptr_cleanup_GMount [ shape=box ];
  1141. glib_listautoptr_cleanup_GMountOperation [ shape=box ];
  1142. glib_listautoptr_cleanup_GMutexLocker [ shape=box ];
  1143. glib_listautoptr_cleanup_GNativeVolumeMonitor [ shape=box ];
  1144. glib_listautoptr_cleanup_GNetworkAddress [ shape=box ];
  1145. glib_listautoptr_cleanup_GNetworkMonitor [ shape=box ];
  1146. glib_listautoptr_cleanup_GNetworkService [ shape=box ];
  1147. glib_listautoptr_cleanup_GNode [ shape=box ];
  1148. glib_listautoptr_cleanup_GNotification [ shape=box ];
  1149. glib_listautoptr_cleanup_GObject [ shape=box ];
  1150. glib_listautoptr_cleanup_GOptionContext [ shape=box ];
  1151. glib_listautoptr_cleanup_GOptionGroup [ shape=box ];
  1152. glib_listautoptr_cleanup_GOutputStream [ shape=box ];
  1153. glib_listautoptr_cleanup_GParamSpec [ shape=box ];
  1154. glib_listautoptr_cleanup_GPatternSpec [ shape=box ];
  1155. glib_listautoptr_cleanup_GPermission [ shape=box ];
  1156. glib_listautoptr_cleanup_GPollableInputStream [ shape=box ];
  1157. glib_listautoptr_cleanup_GPollableOutputStream [ shape=box ];
  1158. glib_listautoptr_cleanup_GPropertyAction [ shape=box ];
  1159. glib_listautoptr_cleanup_GProxy [ shape=box ];
  1160. glib_listautoptr_cleanup_GProxyAddress [ shape=box ];
  1161. glib_listautoptr_cleanup_GProxyAddressEnumerator [ shape=box ];
  1162. glib_listautoptr_cleanup_GProxyResolver [ shape=box ];
  1163. glib_listautoptr_cleanup_GPtrArray [ shape=box ];
  1164. glib_listautoptr_cleanup_GQueue [ shape=box ];
  1165. glib_listautoptr_cleanup_GRand [ shape=box ];
  1166. glib_listautoptr_cleanup_GRefString [ shape=box ];
  1167. glib_listautoptr_cleanup_GRegex [ shape=box ];
  1168. glib_listautoptr_cleanup_GRemoteActionGroup [ shape=box ];
  1169. glib_listautoptr_cleanup_GResolver [ shape=box ];
  1170. glib_listautoptr_cleanup_GResource [ shape=box ];
  1171. glib_listautoptr_cleanup_GSList [ shape=box ];
  1172. glib_listautoptr_cleanup_GScanner [ shape=box ];
  1173. glib_listautoptr_cleanup_GSeekable [ shape=box ];
  1174. glib_listautoptr_cleanup_GSequence [ shape=box ];
  1175. glib_listautoptr_cleanup_GSettings [ shape=box ];
  1176. glib_listautoptr_cleanup_GSettingsBackend [ shape=box ];
  1177. glib_listautoptr_cleanup_GSettingsSchema [ shape=box ];
  1178. glib_listautoptr_cleanup_GSimpleAction [ shape=box ];
  1179. glib_listautoptr_cleanup_GSimpleActionGroup [ shape=box ];
  1180. glib_listautoptr_cleanup_GSimpleAsyncResult [ shape=box ];
  1181. glib_listautoptr_cleanup_GSimplePermission [ shape=box ];
  1182. glib_listautoptr_cleanup_GSimpleProxyResolver [ shape=box ];
  1183. glib_listautoptr_cleanup_GSocket [ shape=box ];
  1184. glib_listautoptr_cleanup_GSocketAddress [ shape=box ];
  1185. glib_listautoptr_cleanup_GSocketAddressEnumerator [ shape=box ];
  1186. glib_listautoptr_cleanup_GSocketClient [ shape=box ];
  1187. glib_listautoptr_cleanup_GSocketConnectable [ shape=box ];
  1188. glib_listautoptr_cleanup_GSocketConnection [ shape=box ];
  1189. glib_listautoptr_cleanup_GSocketControlMessage [ shape=box ];
  1190. glib_listautoptr_cleanup_GSocketListener [ shape=box ];
  1191. glib_listautoptr_cleanup_GSocketService [ shape=box ];
  1192. glib_listautoptr_cleanup_GSource [ shape=box ];
  1193. glib_listautoptr_cleanup_GString [ shape=box ];
  1194. glib_listautoptr_cleanup_GStringChunk [ shape=box ];
  1195. glib_listautoptr_cleanup_GSubprocess [ shape=box ];
  1196. glib_listautoptr_cleanup_GSubprocessLauncher [ shape=box ];
  1197. glib_listautoptr_cleanup_GTask [ shape=box ];
  1198. glib_listautoptr_cleanup_GTcpConnection [ shape=box ];
  1199. glib_listautoptr_cleanup_GTcpWrapperConnection [ shape=box ];
  1200. glib_listautoptr_cleanup_GTestDBus [ shape=box ];
  1201. glib_listautoptr_cleanup_GThemedIcon [ shape=box ];
  1202. glib_listautoptr_cleanup_GThread [ shape=box ];
  1203. glib_listautoptr_cleanup_GThreadedSocketService [ shape=box ];
  1204. glib_listautoptr_cleanup_GTimeZone [ shape=box ];
  1205. glib_listautoptr_cleanup_GTimer [ shape=box ];
  1206. glib_listautoptr_cleanup_GTlsBackend [ shape=box ];
  1207. glib_listautoptr_cleanup_GTlsCertificate [ shape=box ];
  1208. glib_listautoptr_cleanup_GTlsClientConnection [ shape=box ];
  1209. glib_listautoptr_cleanup_GTlsConnection [ shape=box ];
  1210. glib_listautoptr_cleanup_GTlsDatabase [ shape=box ];
  1211. glib_listautoptr_cleanup_GTlsFileDatabase [ shape=box ];
  1212. glib_listautoptr_cleanup_GTlsInteraction [ shape=box ];
  1213. glib_listautoptr_cleanup_GTlsPassword [ shape=box ];
  1214. glib_listautoptr_cleanup_GTlsServerConnection [ shape=box ];
  1215. glib_listautoptr_cleanup_GTree [ shape=box ];
  1216. glib_listautoptr_cleanup_GTypeClass [ shape=box ];
  1217. glib_listautoptr_cleanup_GTypeModule [ shape=box ];
  1218. glib_listautoptr_cleanup_GVariant [ shape=box ];
  1219. glib_listautoptr_cleanup_GVariantBuilder [ shape=box ];
  1220. glib_listautoptr_cleanup_GVariantDict [ shape=box ];
  1221. glib_listautoptr_cleanup_GVariantIter [ shape=box ];
  1222. glib_listautoptr_cleanup_GVariantType [ shape=box ];
  1223. glib_listautoptr_cleanup_GVfs [ shape=box ];
  1224. glib_listautoptr_cleanup_GVolume [ shape=box ];
  1225. glib_listautoptr_cleanup_GVolumeMonitor [ shape=box ];
  1226. glib_listautoptr_cleanup_GZlibCompressor [ shape=box ];
  1227. glib_listautoptr_cleanup_GZlibDecompressor [ shape=box ];
  1228. glib_listautoptr_cleanup_GdkPixbuf [ shape=box ];
  1229. glib_listautoptr_cleanup_GdkPixbufAnimation [ shape=box ];
  1230. glib_listautoptr_cleanup_GdkPixbufAnimationIter [ shape=box ];
  1231. glib_listautoptr_cleanup_GdkPixbufLoader [ shape=box ];
  1232. glib_listautoptr_cleanup_GdkPixbufSimpleAnim [ shape=box ];
  1233. glib_slistautoptr_cleanup_GAction [ shape=box ];
  1234. glib_slistautoptr_cleanup_GActionMap [ shape=box ];
  1235. glib_slistautoptr_cleanup_GAppInfo [ shape=box ];
  1236. glib_slistautoptr_cleanup_GAppInfoMonitor [ shape=box ];
  1237. glib_slistautoptr_cleanup_GAppLaunchContext [ shape=box ];
  1238. glib_slistautoptr_cleanup_GApplication [ shape=box ];
  1239. glib_slistautoptr_cleanup_GApplicationCommandLine [ shape=box ];
  1240. glib_slistautoptr_cleanup_GArray [ shape=box ];
  1241. glib_slistautoptr_cleanup_GAsyncInitable [ shape=box ];
  1242. glib_slistautoptr_cleanup_GAsyncQueue [ shape=box ];
  1243. glib_slistautoptr_cleanup_GAsyncResult [ shape=box ];
  1244. glib_slistautoptr_cleanup_GBookmarkFile [ shape=box ];
  1245. glib_slistautoptr_cleanup_GBufferedInputStream [ shape=box ];
  1246. glib_slistautoptr_cleanup_GBufferedOutputStream [ shape=box ];
  1247. glib_slistautoptr_cleanup_GByteArray [ shape=box ];
  1248. glib_slistautoptr_cleanup_GBytes [ shape=box ];
  1249. glib_slistautoptr_cleanup_GBytesIcon [ shape=box ];
  1250. glib_slistautoptr_cleanup_GCancellable [ shape=box ];
  1251. glib_slistautoptr_cleanup_GCharsetConverter [ shape=box ];
  1252. glib_slistautoptr_cleanup_GChecksum [ shape=box ];
  1253. glib_slistautoptr_cleanup_GClosure [ shape=box ];
  1254. glib_slistautoptr_cleanup_GConverter [ shape=box ];
  1255. glib_slistautoptr_cleanup_GConverterInputStream [ shape=box ];
  1256. glib_slistautoptr_cleanup_GConverterOutputStream [ shape=box ];
  1257. glib_slistautoptr_cleanup_GCredentials [ shape=box ];
  1258. glib_slistautoptr_cleanup_GDBusActionGroup [ shape=box ];
  1259. glib_slistautoptr_cleanup_GDBusAuthObserver [ shape=box ];
  1260. glib_slistautoptr_cleanup_GDBusConnection [ shape=box ];
  1261. glib_slistautoptr_cleanup_GDBusInterface [ shape=box ];
  1262. glib_slistautoptr_cleanup_GDBusInterfaceSkeleton [ shape=box ];
  1263. glib_slistautoptr_cleanup_GDBusMenuModel [ shape=box ];
  1264. glib_slistautoptr_cleanup_GDBusMessage [ shape=box ];
  1265. glib_slistautoptr_cleanup_GDBusMethodInvocation [ shape=box ];
  1266. glib_slistautoptr_cleanup_GDBusNodeInfo [ shape=box ];
  1267. glib_slistautoptr_cleanup_GDBusObject [ shape=box ];
  1268. glib_slistautoptr_cleanup_GDBusObjectManager [ shape=box ];
  1269. glib_slistautoptr_cleanup_GDBusObjectManagerClient [ shape=box ];
  1270. glib_slistautoptr_cleanup_GDBusObjectManagerServer [ shape=box ];
  1271. glib_slistautoptr_cleanup_GDBusObjectProxy [ shape=box ];
  1272. glib_slistautoptr_cleanup_GDBusObjectSkeleton [ shape=box ];
  1273. glib_slistautoptr_cleanup_GDBusProxy [ shape=box ];
  1274. glib_slistautoptr_cleanup_GDBusServer [ shape=box ];
  1275. glib_slistautoptr_cleanup_GDataInputStream [ shape=box ];
  1276. glib_slistautoptr_cleanup_GDataOutputStream [ shape=box ];
  1277. glib_slistautoptr_cleanup_GDatagramBased [ shape=box ];
  1278. glib_slistautoptr_cleanup_GDateTime [ shape=box ];
  1279. glib_slistautoptr_cleanup_GDir [ shape=box ];
  1280. glib_slistautoptr_cleanup_GDrive [ shape=box ];
  1281. glib_slistautoptr_cleanup_GEmblem [ shape=box ];
  1282. glib_slistautoptr_cleanup_GEmblemedIcon [ shape=box ];
  1283. glib_slistautoptr_cleanup_GEnumClass [ shape=box ];
  1284. glib_slistautoptr_cleanup_GError [ shape=box ];
  1285. glib_slistautoptr_cleanup_GFile [ shape=box ];
  1286. glib_slistautoptr_cleanup_GFileAttributeInfoList [ shape=box ];
  1287. glib_slistautoptr_cleanup_GFileEnumerator [ shape=box ];
  1288. glib_slistautoptr_cleanup_GFileIOStream [ shape=box ];
  1289. glib_slistautoptr_cleanup_GFileIcon [ shape=box ];
  1290. glib_slistautoptr_cleanup_GFileInfo [ shape=box ];
  1291. glib_slistautoptr_cleanup_GFileInputStream [ shape=box ];
  1292. glib_slistautoptr_cleanup_GFileMonitor [ shape=box ];
  1293. glib_slistautoptr_cleanup_GFileOutputStream [ shape=box ];
  1294. glib_slistautoptr_cleanup_GFilenameCompleter [ shape=box ];
  1295. glib_slistautoptr_cleanup_GFilterInputStream [ shape=box ];
  1296. glib_slistautoptr_cleanup_GFilterOutputStream [ shape=box ];
  1297. glib_slistautoptr_cleanup_GFlagsClass [ shape=box ];
  1298. glib_slistautoptr_cleanup_GHashTable [ shape=box ];
  1299. glib_slistautoptr_cleanup_GHmac [ shape=box ];
  1300. glib_slistautoptr_cleanup_GIOChannel [ shape=box ];
  1301. glib_slistautoptr_cleanup_GIOModule [ shape=box ];
  1302. glib_slistautoptr_cleanup_GIOStream [ shape=box ];
  1303. glib_slistautoptr_cleanup_GIcon [ shape=box ];
  1304. glib_slistautoptr_cleanup_GInetAddress [ shape=box ];
  1305. glib_slistautoptr_cleanup_GInetAddressMask [ shape=box ];
  1306. glib_slistautoptr_cleanup_GInetSocketAddress [ shape=box ];
  1307. glib_slistautoptr_cleanup_GInitable [ shape=box ];
  1308. glib_slistautoptr_cleanup_GInitiallyUnowned [ shape=box ];
  1309. glib_slistautoptr_cleanup_GInputStream [ shape=box ];
  1310. glib_slistautoptr_cleanup_GKeyFile [ shape=box ];
  1311. glib_slistautoptr_cleanup_GList [ shape=box ];
  1312. glib_slistautoptr_cleanup_GLoadableIcon [ shape=box ];
  1313. glib_slistautoptr_cleanup_GMainContext [ shape=box ];
  1314. glib_slistautoptr_cleanup_GMainLoop [ shape=box ];
  1315. glib_slistautoptr_cleanup_GMappedFile [ shape=box ];
  1316. glib_slistautoptr_cleanup_GMarkupParseContext [ shape=box ];
  1317. glib_slistautoptr_cleanup_GMatchInfo [ shape=box ];
  1318. glib_slistautoptr_cleanup_GMemoryInputStream [ shape=box ];
  1319. glib_slistautoptr_cleanup_GMemoryOutputStream [ shape=box ];
  1320. glib_slistautoptr_cleanup_GMenu [ shape=box ];
  1321. glib_slistautoptr_cleanup_GMenuAttributeIter [ shape=box ];
  1322. glib_slistautoptr_cleanup_GMenuItem [ shape=box ];
  1323. glib_slistautoptr_cleanup_GMenuLinkIter [ shape=box ];
  1324. glib_slistautoptr_cleanup_GMenuModel [ shape=box ];
  1325. glib_slistautoptr_cleanup_GMount [ shape=box ];
  1326. glib_slistautoptr_cleanup_GMountOperation [ shape=box ];
  1327. glib_slistautoptr_cleanup_GMutexLocker [ shape=box ];
  1328. glib_slistautoptr_cleanup_GNativeVolumeMonitor [ shape=box ];
  1329. glib_slistautoptr_cleanup_GNetworkAddress [ shape=box ];
  1330. glib_slistautoptr_cleanup_GNetworkMonitor [ shape=box ];
  1331. glib_slistautoptr_cleanup_GNetworkService [ shape=box ];
  1332. glib_slistautoptr_cleanup_GNode [ shape=box ];
  1333. glib_slistautoptr_cleanup_GNotification [ shape=box ];
  1334. glib_slistautoptr_cleanup_GObject [ shape=box ];
  1335. glib_slistautoptr_cleanup_GOptionContext [ shape=box ];
  1336. glib_slistautoptr_cleanup_GOptionGroup [ shape=box ];
  1337. glib_slistautoptr_cleanup_GOutputStream [ shape=box ];
  1338. glib_slistautoptr_cleanup_GParamSpec [ shape=box ];
  1339. glib_slistautoptr_cleanup_GPatternSpec [ shape=box ];
  1340. glib_slistautoptr_cleanup_GPermission [ shape=box ];
  1341. glib_slistautoptr_cleanup_GPollableInputStream [ shape=box ];
  1342. glib_slistautoptr_cleanup_GPollableOutputStream [ shape=box ];
  1343. glib_slistautoptr_cleanup_GPropertyAction [ shape=box ];
  1344. glib_slistautoptr_cleanup_GProxy [ shape=box ];
  1345. glib_slistautoptr_cleanup_GProxyAddress [ shape=box ];
  1346. glib_slistautoptr_cleanup_GProxyAddressEnumerator [ shape=box ];
  1347. glib_slistautoptr_cleanup_GProxyResolver [ shape=box ];
  1348. glib_slistautoptr_cleanup_GPtrArray [ shape=box ];
  1349. glib_slistautoptr_cleanup_GQueue [ shape=box ];
  1350. glib_slistautoptr_cleanup_GRand [ shape=box ];
  1351. glib_slistautoptr_cleanup_GRefString [ shape=box ];
  1352. glib_slistautoptr_cleanup_GRegex [ shape=box ];
  1353. glib_slistautoptr_cleanup_GRemoteActionGroup [ shape=box ];
  1354. glib_slistautoptr_cleanup_GResolver [ shape=box ];
  1355. glib_slistautoptr_cleanup_GResource [ shape=box ];
  1356. glib_slistautoptr_cleanup_GSList [ shape=box ];
  1357. glib_slistautoptr_cleanup_GScanner [ shape=box ];
  1358. glib_slistautoptr_cleanup_GSeekable [ shape=box ];
  1359. glib_slistautoptr_cleanup_GSequence [ shape=box ];
  1360. glib_slistautoptr_cleanup_GSettings [ shape=box ];
  1361. glib_slistautoptr_cleanup_GSettingsBackend [ shape=box ];
  1362. glib_slistautoptr_cleanup_GSettingsSchema [ shape=box ];
  1363. glib_slistautoptr_cleanup_GSimpleAction [ shape=box ];
  1364. glib_slistautoptr_cleanup_GSimpleActionGroup [ shape=box ];
  1365. glib_slistautoptr_cleanup_GSimpleAsyncResult [ shape=box ];
  1366. glib_slistautoptr_cleanup_GSimplePermission [ shape=box ];
  1367. glib_slistautoptr_cleanup_GSimpleProxyResolver [ shape=box ];
  1368. glib_slistautoptr_cleanup_GSocket [ shape=box ];
  1369. glib_slistautoptr_cleanup_GSocketAddress [ shape=box ];
  1370. glib_slistautoptr_cleanup_GSocketAddressEnumerator [ shape=box ];
  1371. glib_slistautoptr_cleanup_GSocketClient [ shape=box ];
  1372. glib_slistautoptr_cleanup_GSocketConnectable [ shape=box ];
  1373. glib_slistautoptr_cleanup_GSocketConnection [ shape=box ];
  1374. glib_slistautoptr_cleanup_GSocketControlMessage [ shape=box ];
  1375. glib_slistautoptr_cleanup_GSocketListener [ shape=box ];
  1376. glib_slistautoptr_cleanup_GSocketService [ shape=box ];
  1377. glib_slistautoptr_cleanup_GSource [ shape=box ];
  1378. glib_slistautoptr_cleanup_GString [ shape=box ];
  1379. glib_slistautoptr_cleanup_GStringChunk [ shape=box ];
  1380. glib_slistautoptr_cleanup_GSubprocess [ shape=box ];
  1381. glib_slistautoptr_cleanup_GSubprocessLauncher [ shape=box ];
  1382. glib_slistautoptr_cleanup_GTask [ shape=box ];
  1383. glib_slistautoptr_cleanup_GTcpConnection [ shape=box ];
  1384. glib_slistautoptr_cleanup_GTcpWrapperConnection [ shape=box ];
  1385. glib_slistautoptr_cleanup_GTestDBus [ shape=box ];
  1386. glib_slistautoptr_cleanup_GThemedIcon [ shape=box ];
  1387. glib_slistautoptr_cleanup_GThread [ shape=box ];
  1388. glib_slistautoptr_cleanup_GThreadedSocketService [ shape=box ];
  1389. glib_slistautoptr_cleanup_GTimeZone [ shape=box ];
  1390. glib_slistautoptr_cleanup_GTimer [ shape=box ];
  1391. glib_slistautoptr_cleanup_GTlsBackend [ shape=box ];
  1392. glib_slistautoptr_cleanup_GTlsCertificate [ shape=box ];
  1393. glib_slistautoptr_cleanup_GTlsClientConnection [ shape=box ];
  1394. glib_slistautoptr_cleanup_GTlsConnection [ shape=box ];
  1395. glib_slistautoptr_cleanup_GTlsDatabase [ shape=box ];
  1396. glib_slistautoptr_cleanup_GTlsFileDatabase [ shape=box ];
  1397. glib_slistautoptr_cleanup_GTlsInteraction [ shape=box ];
  1398. glib_slistautoptr_cleanup_GTlsPassword [ shape=box ];
  1399. glib_slistautoptr_cleanup_GTlsServerConnection [ shape=box ];
  1400. glib_slistautoptr_cleanup_GTree [ shape=box ];
  1401. glib_slistautoptr_cleanup_GTypeClass [ shape=box ];
  1402. glib_slistautoptr_cleanup_GTypeModule [ shape=box ];
  1403. glib_slistautoptr_cleanup_GTypeModule -> gboolean;
  1404. glib_slistautoptr_cleanup_GVariant [ shape=box ];
  1405. glib_slistautoptr_cleanup_GVariantBuilder [ shape=box ];
  1406. glib_slistautoptr_cleanup_GVariantDict [ shape=box ];
  1407. glib_slistautoptr_cleanup_GVariantIter [ shape=box ];
  1408. glib_slistautoptr_cleanup_GVariantType [ shape=box ];
  1409. glib_slistautoptr_cleanup_GVfs [ shape=box ];
  1410. glib_slistautoptr_cleanup_GVolume [ shape=box ];
  1411. glib_slistautoptr_cleanup_GVolumeMonitor [ shape=box ];
  1412. glib_slistautoptr_cleanup_GZlibCompressor [ shape=box ];
  1413. glib_slistautoptr_cleanup_GZlibDecompressor [ shape=box ];
  1414. glib_slistautoptr_cleanup_GdkPixbuf [ shape=box ];
  1415. glib_slistautoptr_cleanup_GdkPixbufAnimation [ shape=box ];
  1416. glib_slistautoptr_cleanup_GdkPixbufAnimationIter [ shape=box ];
  1417. glib_slistautoptr_cleanup_GdkPixbufLoader [ shape=box ];
  1418. glib_slistautoptr_cleanup_GdkPixbufSimpleAnim [ shape=box ];
  1419. gmlparse [ shape=box ];
  1420. gmlparse -> GML_free_list;
  1421. gmlparse -> GML_parser;
  1422. gmlparse -> GML_print_list;
  1423. gmlparse -> GT_parse_list;
  1424. gmlparse -> dp_calloc;
  1425. gmlparse -> dp_free;
  1426. gmlparser_calloc [ shape=box ];
  1427. gmlparser_calloc -> dp_calloc;
  1428. gmlparser_calloc -> splay_tree_insert;
  1429. gmlparser_calloc -> splay_tree_new;
  1430. gmlparser_free [ shape=box ];
  1431. gmlparser_free -> splay_tree_remove;
  1432. gpointer [ shape=box ];
  1433. gpointer -> gboolean;
  1434. graph2dia [ shape=box ];
  1435. graph2dia -> dia_string;
  1436. graph2dia -> dialine;
  1437. graph2jgf [ shape=box ];
  1438. graph2jgf -> graph2jgflabel;
  1439. graph2jgflabel [ shape=box ];
  1440. graph_bubbling [ shape=box ];
  1441. graph_bubbling -> first_bubbling;
  1442. graph_bubbling -> give_horizontal_place;
  1443. graph_bubbling -> splay_tree_delete;
  1444. gtk_bin_get_type [ shape=box ];
  1445. gtk_bin_get_type -> gboolean;
  1446. gtk_builder_get_type [ shape=box ];
  1447. gtk_builder_get_type -> gboolean;
  1448. gtk_button_box_get_type [ shape=box ];
  1449. gtk_button_box_get_type -> GType;
  1450. gtk_cell_editable_get_type [ shape=box ];
  1451. gtk_cell_editable_get_type -> gboolean;
  1452. gtk_check_menu_item_get_type [ shape=box ];
  1453. gtk_check_menu_item_get_type -> gboolean;
  1454. gtk_color_selection_dialog_get_type [ shape=box ];
  1455. gtk_color_selection_dialog_get_type -> gboolean;
  1456. gtk_color_selection_dialog_get_type -> gint;
  1457. gtk_ctree_node_get_type [ shape=box ];
  1458. gtk_dialog_add_buttons [ shape=box ];
  1459. gtk_dialog_add_buttons -> gboolean;
  1460. gtk_editable_get_type [ shape=box ];
  1461. gtk_editable_get_type -> gboolean;
  1462. gtk_entry_get_type [ shape=box ];
  1463. gtk_entry_get_type -> gboolean;
  1464. gtk_hbutton_box_get_type [ shape=box ];
  1465. gtk_hbutton_box_get_type -> gboolean;
  1466. gtk_hruler_get_type [ shape=box ];
  1467. gtk_hruler_get_type -> gboolean;
  1468. gtk_icon_info_get_type [ shape=box ];
  1469. gtk_icon_info_get_type -> gboolean;
  1470. gtk_im_context_get_type [ shape=box ];
  1471. gtk_menu_get_type [ shape=box ];
  1472. gtk_menu_get_type -> gboolean;
  1473. gtk_misc_get_type [ shape=box ];
  1474. gtk_misc_get_type -> gboolean;
  1475. gtk_misc_get_type -> gint;
  1476. gtk_page_setup_get_type [ shape=box ];
  1477. gtk_page_setup_get_type -> gboolean;
  1478. gtk_pixmap_get_type [ shape=box ];
  1479. gtk_pixmap_get_type -> gboolean;
  1480. gtk_preview_get_type [ shape=box ];
  1481. gtk_preview_get_type -> gint;
  1482. gtk_print_operation_preview_get_type [ shape=box ];
  1483. gtk_print_operation_preview_get_type -> gboolean;
  1484. gtk_print_settings_get_type [ shape=box ];
  1485. gtk_print_settings_get_type -> gboolean;
  1486. gtk_requisition_get_type [ shape=box ];
  1487. gtk_requisition_get_type -> GType;
  1488. gtk_separator_tool_item_get_type [ shape=box ];
  1489. gtk_separator_tool_item_get_type -> gint;
  1490. gtk_size_group_get_type [ shape=box ];
  1491. gtk_size_group_get_type -> gboolean;
  1492. gtk_statusbar_get_type [ shape=box ];
  1493. gtk_statusbar_get_type -> gboolean;
  1494. gtk_style_get [ shape=box ];
  1495. gtk_tool_palette_get_drag_target_group [ shape=box ];
  1496. gtk_tool_shell_get_type [ shape=box ];
  1497. gtk_tool_shell_get_type -> gboolean;
  1498. gtk_tree_drag_source_get_type [ shape=box ];
  1499. gtk_tree_drag_source_get_type -> gboolean;
  1500. gtk_viewport_get_type [ shape=box ];
  1501. gtk_viewport_get_type -> gboolean;
  1502. hl_create_buffer [ shape=box ];
  1503. hl_create_buffer -> hl_init_buffer;
  1504. hl_create_buffer -> hlalloc;
  1505. hl_create_buffer -> hlfree;
  1506. hl_delete_buffer [ shape=box ];
  1507. hl_delete_buffer -> hlfree;
  1508. hl_flush_buffer [ shape=box ];
  1509. hl_init_buffer [ shape=box ];
  1510. hl_init_buffer -> hl_flush_buffer;
  1511. hl_scan_buffer [ shape=box ];
  1512. hl_scan_buffer -> hl_switch_to_buffer;
  1513. hl_scan_buffer -> hlalloc;
  1514. hl_scan_bytes [ shape=box ];
  1515. hl_scan_bytes -> hl_scan_buffer;
  1516. hl_scan_bytes -> hlalloc;
  1517. hl_scan_bytes -> hlfree;
  1518. hl_scan_string [ shape=box ];
  1519. hl_scan_string -> hl_scan_bytes;
  1520. hl_switch_to_buffer [ shape=box ];
  1521. hl_switch_to_buffer -> hlensure_buffer_stack;
  1522. hlalloc [ shape=box ];
  1523. hlensure_buffer_stack [ shape=box ];
  1524. hlensure_buffer_stack -> hlalloc;
  1525. hlensure_buffer_stack -> hlrealloc;
  1526. hlfree [ shape=box ];
  1527. hlicopy [ shape=box ];
  1528. hlicopy -> dp_calloc;
  1529. hlicopy -> hlicopy_pr;
  1530. hlicopy -> hlimakecopy;
  1531. hlicopy_pr [ shape=box ];
  1532. hlimakecopy [ shape=box ];
  1533. hlimakecopy -> dp_calloc;
  1534. hlimakecopy -> uniqstr;
  1535. hllex [ shape=box ];
  1536. hllex -> dp_calloc;
  1537. hllex -> dp_free;
  1538. hllex -> dp_uniqstr;
  1539. hllex -> dphl_rbr;
  1540. hllex -> dphl_rhr;
  1541. hllex -> dphl_rvr;
  1542. hllex -> hl_create_buffer;
  1543. hllex -> hlensure_buffer_stack;
  1544. hllex -> hlrestart;
  1545. hllex -> yy_get_next_buffer;
  1546. hllex_destroy [ shape=box ];
  1547. hllex_destroy -> hl_delete_buffer;
  1548. hllex_destroy -> hlfree;
  1549. hllex_destroy -> hlpop_buffer_state;
  1550. hlpop_buffer_state [ shape=box ];
  1551. hlpop_buffer_state -> hl_delete_buffer;
  1552. hlpush_buffer_state [ shape=box ];
  1553. hlpush_buffer_state -> hlensure_buffer_stack;
  1554. hlrealloc [ shape=box ];
  1555. hlrestart [ shape=box ];
  1556. hlrestart -> hl_create_buffer;
  1557. hlrestart -> hl_init_buffer;
  1558. hlrestart -> hlensure_buffer_stack;
  1559. hltcopy [ shape=box ];
  1560. hltcopy -> dp_calloc;
  1561. hltcopy -> dp_free;
  1562. hltcopy -> hltcopy_r;
  1563. hltcopy_r [ shape=box ];
  1564. hltcopy_r -> dp_calloc;
  1565. hltcopy_r -> hlimakecopy;
  1566. hltcopy_r -> hltcopy_r;
  1567. hlyerror [ shape=box ];
  1568. hlylex [ shape=box ];
  1569. hlylex -> html_lex;
  1570. hlyparse [ shape=box ];
  1571. hlyparse -> hlyerror;
  1572. hlyparse -> yyFail;
  1573. hlyparse -> yy_symbol_print;
  1574. hlyparse -> yydestroyGLRState;
  1575. hlyparse -> yydestruct;
  1576. hlyparse -> yyfreeGLRStack;
  1577. hlyparse -> yygetLRActions;
  1578. hlyparse -> yygetToken;
  1579. hlyparse -> yyglrReduce;
  1580. hlyparse -> yyglrShift;
  1581. hlyparse -> yyinitGLRStack;
  1582. hlyparse -> yyprocessOneStack;
  1583. hlyparse -> yyrecoverSyntaxError;
  1584. hlyparse -> yyremoveDeletes;
  1585. hlyparse -> yyreportSyntaxError;
  1586. hlyparse -> yyresolveStack;
  1587. hlyparse -> yyundeleteLastStack;
  1588. hsv2rgb [ shape=box ];
  1589. html_lex [ shape=box ];
  1590. html_lex -> dp_uniqstr;
  1591. html_lex -> hl_scan_string;
  1592. html_lex -> hllex;
  1593. html_lex -> hllex_destroy;
  1594. html_lex_deinit [ shape=box ];
  1595. html_lex_deinit -> dp_free;
  1596. html_lex_deinit -> hllex_destroy;
  1597. html_lex_init [ shape=box ];
  1598. html_lex_init -> dp_calloc;
  1599. htmlparse [ shape=box ];
  1600. htmlparse -> dp_calloc;
  1601. htmlparse -> dphl_chk_err;
  1602. htmlparse -> dphl_clearhlinfo;
  1603. htmlparse -> hlyparse;
  1604. htmlparse -> html_lex;
  1605. htmlparse -> html_lex_deinit;
  1606. htmlparse -> html_lex_init;
  1607. humansize [ shape=box ];
  1608. humansized [ shape=box ];
  1609. improve_positions [ shape=box ];
  1610. improve_positions -> improve_positions1;
  1611. improve_positions -> improve_positions2;
  1612. improve_positions -> improve_positions3;
  1613. improve_positions1 [ shape=box ];
  1614. improve_positions1 -> do_down;
  1615. improve_positions1 -> do_up;
  1616. improve_positions1 -> dp_calloc;
  1617. improve_positions1 -> dp_free;
  1618. improve_positions1 -> make_node_list_down;
  1619. improve_positions1 -> make_node_list_up;
  1620. improve_positions2 [ shape=box ];
  1621. improve_positions2 -> cfinalxy;
  1622. improve_positions2 -> clear_cnnodes_at_level;
  1623. improve_positions2 -> clear_cnodelist;
  1624. improve_positions2 -> improve_positions2local;
  1625. improve_positions2 -> make_cnnodes_at_level;
  1626. improve_positions2 -> make_cnodelist;
  1627. improve_positions2local [ shape=box ];
  1628. improve_positions2local -> do_down;
  1629. improve_positions2local -> do_up;
  1630. improve_positions2local -> dp_calloc;
  1631. improve_positions2local -> dp_free;
  1632. improve_positions2local -> make_node_list_down;
  1633. improve_positions2local -> make_node_list_up;
  1634. improve_positions3 [ shape=box ];
  1635. improve_positions3 -> improve_positions_3;
  1636. improve_positions4 [ shape=box ];
  1637. improve_positions4 -> improve_positions_3;
  1638. improve_positions_3 [ shape=box ];
  1639. improve_positions_3 -> do_down;
  1640. improve_positions_3 -> do_up;
  1641. improve_positions_3 -> make_node_list_down;
  1642. improve_positions_3 -> make_node_list_up;
  1643. improve_positions_3 -> pos3clear;
  1644. improve_positions_3 -> pos3init;
  1645. insert_node_bubble [ shape=box ];
  1646. insert_node_bubble -> bubbling_calloc;
  1647. is_node_at_xy [ shape=box ];
  1648. is_node_at_xy -> doscaleit;
  1649. jgfaddnode [ shape=box ];
  1650. jgfaddnode -> splay_tree_insert;
  1651. jgfaddnode -> splay_tree_lookup;
  1652. jgfparse [ shape=box ];
  1653. jgfparse -> jgfparse_clear;
  1654. jgfparse -> jgfprocess_file;
  1655. jgfparse -> json_parser_free;
  1656. jgfparse -> json_parser_init;
  1657. jgfparse_clear [ shape=box ];
  1658. jgfparse_clear -> splay_tree_delete;
  1659. jgfprocess_file [ shape=box ];
  1660. jgfprocess_file -> json_parser_string;
  1661. json_parser_char [ shape=box ];
  1662. json_parser_char -> json_parser_string;
  1663. json_parser_dom_callback [ shape=box ];
  1664. json_parser_dom_callback -> dom_push;
  1665. json_parser_dom_callback -> memory_calloc;
  1666. json_parser_dom_free [ shape=box ];
  1667. json_parser_dom_init [ shape=box ];
  1668. json_parser_dom_init -> memory_calloc;
  1669. json_parser_free [ shape=box ];
  1670. json_parser_free -> memory_free;
  1671. json_parser_init [ shape=box ];
  1672. json_parser_init -> memory_calloc;
  1673. json_parser_init -> memory_free;
  1674. json_parser_string [ shape=box ];
  1675. json_parser_string -> buffer_push;
  1676. json_parser_string -> buffer_push_escape;
  1677. json_parser_string -> do_action;
  1678. json_print_args [ shape=box ];
  1679. json_print_free [ shape=box ];
  1680. json_print_init [ shape=box ];
  1681. json_print_mode [ shape=box ];
  1682. json_print_mode -> print_binary_string;
  1683. json_print_mode -> print_indent;
  1684. json_print_mode -> print_string;
  1685. json_print_pretty [ shape=box ];
  1686. json_print_pretty -> json_print_mode;
  1687. json_print_raw [ shape=box ];
  1688. json_print_raw -> json_print_mode;
  1689. label1_toggle [ shape=box ];
  1690. label1_toggle -> do_relayout_all;
  1691. levelcross [ shape=box ];
  1692. levelcross -> dp_calloc;
  1693. levelcross -> dp_free;
  1694. levelcross -> levellength;
  1695. levelcross -> twovertcross;
  1696. levellength [ shape=box ];
  1697. longestpath [ shape=box ];
  1698. longestpath -> humansized;
  1699. longestpath -> longestpath_r;
  1700. longestpath_r [ shape=box ];
  1701. longestpath_r -> longestpath_r;
  1702. lower_barycenter [ shape=box ];
  1703. main [ shape=box ];
  1704. main -> create_maingraph;
  1705. main -> do_clear_all;
  1706. main -> do_layout_all;
  1707. main -> dofit;
  1708. main -> dotparse;
  1709. main -> dp_calloc;
  1710. main -> dp_free;
  1711. main -> gmlparse;
  1712. main -> update_status_text;
  1713. main -> vcgparse;
  1714. make_clevelnodes [ shape=box ];
  1715. make_clevelnodes -> dp_calloc;
  1716. make_cnnodes_at_level [ shape=box ];
  1717. make_cnnodes_at_level -> dp_calloc;
  1718. make_cnodelist [ shape=box ];
  1719. make_cnodelist -> dp_calloc;
  1720. make_cposnodes [ shape=box ];
  1721. make_cposnodes -> dp_calloc;
  1722. make_levelnodes [ shape=box ];
  1723. make_levelnodes -> dp_calloc;
  1724. make_matrix [ shape=box ];
  1725. make_matrix -> mget;
  1726. make_matrix -> mget_set;
  1727. make_node_list_down [ shape=box ];
  1728. make_node_list_down -> sort;
  1729. make_node_list_up [ shape=box ];
  1730. make_node_list_up -> sort;
  1731. make_posnodes [ shape=box ];
  1732. make_posnodes -> dp_calloc;
  1733. make_stlist [ shape=box ];
  1734. make_stlist -> dp_calloc;
  1735. mediansort [ shape=box ];
  1736. mediansort -> dp_calloc;
  1737. mediansort -> dp_free;
  1738. mediansort -> equals;
  1739. mediansort -> levelcross;
  1740. mediansort -> levellength;
  1741. mediansort -> medianvalue;
  1742. mediansort -> renumber;
  1743. medianvalue [ shape=box ];
  1744. medianvalue -> dp_calloc;
  1745. medianvalue -> dp_free;
  1746. medianvalue -> levellength;
  1747. medianvalue -> posat;
  1748. memcheck_calloc [ shape=box ];
  1749. memcheck_free [ shape=box ];
  1750. memcheck_realloc [ shape=box ];
  1751. memory_calloc [ shape=box ];
  1752. memory_free [ shape=box ];
  1753. memory_realloc [ shape=box ];
  1754. mget [ shape=box ];
  1755. mget -> testbit;
  1756. mget_set [ shape=box ];
  1757. mget_set -> clearbit;
  1758. mget_set -> setbit;
  1759. mirrory1_toggle [ shape=box ];
  1760. mirrory1_toggle -> do_relayout_all;
  1761. my_callback [ shape=box ];
  1762. my_callback -> do_data;
  1763. my_callback -> do_key;
  1764. my_callback -> do_string;
  1765. myfree [ shape=box ];
  1766. myfree -> dp_free;
  1767. mymalloc [ shape=box ];
  1768. mymalloc -> dp_calloc;
  1769. new_bubbles [ shape=box ];
  1770. new_bubbles -> bubbling_free;
  1771. nnames1_toggle [ shape=box ];
  1772. nnames1_toggle -> do_relayout_all;
  1773. no_popup [ shape=box ];
  1774. nodecounts [ shape=box ];
  1775. nodecounts -> clear_stlist_all;
  1776. nodecounts -> dp_calloc;
  1777. nodecounts -> make_stlist;
  1778. nscompass [ shape=box ];
  1779. number_of_crossings2 [ shape=box ];
  1780. number_of_crossings2 -> mget;
  1781. number_of_crossings3 [ shape=box ];
  1782. number_of_crossings3 -> mget;
  1783. number_of_crossings3 -> number_of_crossings2;
  1784. number_of_crossings_a [ shape=box ];
  1785. number_of_crossings_a -> number_of_crossings3;
  1786. on_hscale1_changed [ shape=box ];
  1787. on_motion_notify_event [ shape=box ];
  1788. on_motion_notify_event -> do_popup;
  1789. on_motion_notify_event -> is_node_at_xy;
  1790. on_motion_notify_event -> no_popup;
  1791. on_top_level_window_dia1_activate [ shape=box ];
  1792. on_top_level_window_dia1_activate -> dp_calloc;
  1793. on_top_level_window_dia1_activate -> dp_free;
  1794. on_top_level_window_dia1_activate -> graph2dia;
  1795. on_top_level_window_drawingarea1_expose_event [ shape=box ];
  1796. on_top_level_window_drawingarea1_expose_event -> on_top_level_window_drawingarea1_expose_event_edges;
  1797. on_top_level_window_drawingarea1_expose_event -> on_top_level_window_drawingarea1_expose_event_nodes;
  1798. on_top_level_window_drawingarea1_expose_event_edges [ shape=box ];
  1799. on_top_level_window_drawingarea1_expose_event_edges -> drarrow;
  1800. on_top_level_window_drawingarea1_expose_event_nodes [ shape=box ];
  1801. on_top_level_window_drawingarea1_expose_event_nodes -> drarrow;
  1802. on_top_level_window_drawingarea1_expose_event_nodes -> on_top_level_window_drawingarea1_expose_event_nodes_html;
  1803. on_top_level_window_drawingarea1_expose_event_nodes -> on_top_level_window_drawingarea1_expose_event_nodes_record;
  1804. on_top_level_window_drawingarea1_expose_event_nodes -> uniqstr;
  1805. on_top_level_window_drawingarea1_expose_event_nodes_1htmltable [ shape=box ];
  1806. on_top_level_window_drawingarea1_expose_event_nodes_1htmltable -> on_top_level_window_drawingarea1_expose_event_nodes_1htmltable;
  1807. on_top_level_window_drawingarea1_expose_event_nodes_1htmltable -> on_top_level_window_drawingarea1_expose_event_nodes_html1item;
  1808. on_top_level_window_drawingarea1_expose_event_nodes_html [ shape=box ];
  1809. on_top_level_window_drawingarea1_expose_event_nodes_html -> on_top_level_window_drawingarea1_expose_event_nodes_htmlitems;
  1810. on_top_level_window_drawingarea1_expose_event_nodes_html -> on_top_level_window_drawingarea1_expose_event_nodes_htmltables;
  1811. on_top_level_window_drawingarea1_expose_event_nodes_html1item [ shape=box ];
  1812. on_top_level_window_drawingarea1_expose_event_nodes_html1item -> dp_calloc;
  1813. on_top_level_window_drawingarea1_expose_event_nodes_html1item -> dp_free;
  1814. on_top_level_window_drawingarea1_expose_event_nodes_html1item -> uniqstr;
  1815. on_top_level_window_drawingarea1_expose_event_nodes_htmlitems [ shape=box ];
  1816. on_top_level_window_drawingarea1_expose_event_nodes_htmlitems -> on_top_level_window_drawingarea1_expose_event_nodes_html1item;
  1817. on_top_level_window_drawingarea1_expose_event_nodes_htmltables [ shape=box ];
  1818. on_top_level_window_drawingarea1_expose_event_nodes_htmltables -> on_top_level_window_drawingarea1_expose_event_nodes_1htmltable;
  1819. on_top_level_window_drawingarea1_expose_event_nodes_record [ shape=box ];
  1820. on_top_level_window_drawingarea1_expose_event_nodes_record -> on_top_level_window_drawingarea1_expose_event_nodes_record_r;
  1821. on_top_level_window_drawingarea1_expose_event_nodes_record_r [ shape=box ];
  1822. on_top_level_window_drawingarea1_expose_event_nodes_record_r -> on_top_level_window_drawingarea1_expose_event_nodes_record_r;
  1823. on_top_level_window_drawingarea1_expose_event_nodes_record_r -> uniqstr;
  1824. on_top_level_window_jgf1_activate [ shape=box ];
  1825. on_top_level_window_jgf1_activate -> dp_calloc;
  1826. on_top_level_window_jgf1_activate -> dp_free;
  1827. on_top_level_window_jgf1_activate -> graph2jgf;
  1828. on_top_level_window_open1_activate [ shape=box ];
  1829. on_top_level_window_open1_activate -> create_maingraph;
  1830. on_top_level_window_open1_activate -> do_clear_all;
  1831. on_top_level_window_open1_activate -> do_layout_all;
  1832. on_top_level_window_open1_activate -> dofit;
  1833. on_top_level_window_open1_activate -> dp_calloc;
  1834. on_top_level_window_open1_activate -> dp_free;
  1835. on_top_level_window_open1_activate -> gmlparse;
  1836. on_top_level_window_open1_activate -> uniqstr;
  1837. on_top_level_window_open1_activate -> update_status_text;
  1838. on_top_level_window_open2_activate [ shape=box ];
  1839. on_top_level_window_open2_activate -> create_maingraph;
  1840. on_top_level_window_open2_activate -> do_clear_all;
  1841. on_top_level_window_open2_activate -> do_layout_all;
  1842. on_top_level_window_open2_activate -> dofit;
  1843. on_top_level_window_open2_activate -> dotparse;
  1844. on_top_level_window_open2_activate -> dp_calloc;
  1845. on_top_level_window_open2_activate -> dp_free;
  1846. on_top_level_window_open2_activate -> uniqstr;
  1847. on_top_level_window_open2_activate -> update_status_text;
  1848. on_top_level_window_open3_activate [ shape=box ];
  1849. on_top_level_window_open3_activate -> create_maingraph;
  1850. on_top_level_window_open3_activate -> do_clear_all;
  1851. on_top_level_window_open3_activate -> do_layout_all;
  1852. on_top_level_window_open3_activate -> dofit;
  1853. on_top_level_window_open3_activate -> dp_calloc;
  1854. on_top_level_window_open3_activate -> dp_free;
  1855. on_top_level_window_open3_activate -> uniqstr;
  1856. on_top_level_window_open3_activate -> update_status_text;
  1857. on_top_level_window_open3_activate -> vcgparse;
  1858. on_top_level_window_open4_activate [ shape=box ];
  1859. on_top_level_window_open4_activate -> create_maingraph;
  1860. on_top_level_window_open4_activate -> do_clear_all;
  1861. on_top_level_window_open4_activate -> do_layout_all;
  1862. on_top_level_window_open4_activate -> dofit;
  1863. on_top_level_window_open4_activate -> dp_calloc;
  1864. on_top_level_window_open4_activate -> dp_free;
  1865. on_top_level_window_open4_activate -> jgfparse;
  1866. on_top_level_window_open4_activate -> uniqstr;
  1867. on_top_level_window_open4_activate -> update_status_text;
  1868. on_top_level_window_quit1_activate [ shape=box ];
  1869. on_top_level_window_quit1_activate -> top_level_window_main_quit;
  1870. on_top_level_window_svg1_activate [ shape=box ];
  1871. on_top_level_window_svg1_activate -> dp_calloc;
  1872. on_top_level_window_svg1_activate -> dp_free;
  1873. on_top_level_window_svg1_activate -> on_top_level_window_drawingarea1_expose_event_edges;
  1874. on_top_level_window_svg1_activate -> on_top_level_window_drawingarea1_expose_event_nodes;
  1875. on_vscale1_changed [ shape=box ];
  1876. on_vscale2_changed [ shape=box ];
  1877. phase1_down [ shape=box ];
  1878. phase1_down -> b_c;
  1879. phase1_up [ shape=box ];
  1880. phase1_up -> b_r;
  1881. phase2_down [ shape=box ];
  1882. phase2_down -> column_barycenter;
  1883. phase2_down -> r_c;
  1884. phase2_up [ shape=box ];
  1885. phase2_up -> r_r;
  1886. phase2_up -> row_barycenter;
  1887. popup1_toggle [ shape=box ];
  1888. popup_nodelabel [ shape=box ];
  1889. popup_nodelabel -> on_top_level_window_drawingarea1_expose_event_nodes_html;
  1890. popup_nodelabel -> on_top_level_window_drawingarea1_expose_event_nodes_record;
  1891. popup_nodelabel -> uniqstr;
  1892. popuparea1_expose_event [ shape=box ];
  1893. popuparea1_expose_event -> popup_nodelabel;
  1894. pos3clear [ shape=box ];
  1895. pos3clear -> dp_free;
  1896. pos3init [ shape=box ];
  1897. pos3init -> dp_calloc;
  1898. pos3init -> sort;
  1899. pos_changed [ shape=box ];
  1900. pos_changed -> edgeconnections;
  1901. pos_changed -> finalxy;
  1902. pos_changed -> improve_positions;
  1903. pos_changed -> update_status_text;
  1904. posat [ shape=box ];
  1905. posat -> levellength;
  1906. prep [ shape=box ];
  1907. prep -> add_selfedgenode;
  1908. prep -> dp_calloc;
  1909. prep -> uniqnode2;
  1910. prep -> uniqnode_add2;
  1911. prepincr [ shape=box ];
  1912. prepincr -> dp_calloc;
  1913. prepincr -> dp_free;
  1914. prepincr -> prep;
  1915. prepincr -> prepincr_addnode;
  1916. prepincr -> uniqnode2;
  1917. prepincr_addnode [ shape=box ];
  1918. prepincr_addnode -> dp_calloc;
  1919. print_binary_string [ shape=box ];
  1920. print_indent [ shape=box ];
  1921. print_string [ shape=box ];
  1922. prrl [ shape=box ];
  1923. prrl -> prrl;
  1924. r_c [ shape=box ];
  1925. r_c -> column_barycenter;
  1926. r_c -> reverse_c;
  1927. r_c -> reverse_r;
  1928. r_r [ shape=box ];
  1929. r_r -> reverse_c;
  1930. r_r -> reverse_r;
  1931. r_r -> row_barycenter;
  1932. rank_changed [ shape=box ];
  1933. rank_changed -> do_relayout_all;
  1934. reduce_crossings2 [ shape=box ];
  1935. reduce_crossings2 -> bc_n;
  1936. reduce_crossings2 -> dp_calloc;
  1937. reduce_crossings3 [ shape=box ];
  1938. reduce_crossings3 -> barycenter_3;
  1939. reduce_crossings3 -> dp_calloc;
  1940. reduce_crossings4 [ shape=box ];
  1941. reduce_crossings4 -> barycenter_4;
  1942. reduce_crossings4 -> dp_calloc;
  1943. reduce_crossings5 [ shape=box ];
  1944. reduce_crossings5 -> barycenter_5;
  1945. reduce_crossings5 -> dp_calloc;
  1946. renumber [ shape=box ];
  1947. renumber -> levellength;
  1948. reorg [ shape=box ];
  1949. reorg -> dp_calloc;
  1950. reorg -> dp_free;
  1951. reverse_c [ shape=box ];
  1952. reverse_c -> exch_columns;
  1953. reverse_r [ shape=box ];
  1954. reverse_r -> exch_rows;
  1955. rhp_add_edges_to_array [ shape=box ];
  1956. rhp_add_edges_to_array -> rhp_log;
  1957. rhp_addedge [ shape=box ];
  1958. rhp_addedge -> rhp_log;
  1959. rhp_addedge -> rhp_malloc;
  1960. rhp_addedge -> rhp_sp_insert;
  1961. rhp_addedge -> rhp_sp_lookup;
  1962. rhp_addnode [ shape=box ];
  1963. rhp_addnode -> rhp_log;
  1964. rhp_addnode -> rhp_malloc;
  1965. rhp_addnode -> rhp_sp_insert;
  1966. rhp_addnode -> rhp_sp_lookup;
  1967. rhp_allocateadjacencylists [ shape=box ];
  1968. rhp_allocateadjacencylists -> rhp_log;
  1969. rhp_allocateadjacencylists -> rhp_malloc;
  1970. rhp_allocateadjacencylists -> rhp_sp_lookup;
  1971. rhp_allocateadjacencylists -> rhp_sp_next;
  1972. rhp_allocatelayers [ shape=box ];
  1973. rhp_allocatelayers -> rhp_log;
  1974. rhp_allocatelayers -> rhp_malloc;
  1975. rhp_allocatelayers -> rhp_sp_insert;
  1976. rhp_allocatelayers -> rhp_sp_lookup;
  1977. rhp_allocatelayers -> rhp_sp_new;
  1978. rhp_allocatelayers -> rhp_sp_next;
  1979. rhp_barycenter [ shape=box ];
  1980. rhp_barycenter -> rhp_barycenterdownsweep;
  1981. rhp_barycenter -> rhp_barycenterupsweep;
  1982. rhp_barycenter -> rhp_log;
  1983. rhp_barycenter -> rhp_terminate;
  1984. rhp_barycenterdownsweep [ shape=box ];
  1985. rhp_barycenterdownsweep -> rhp_barycenterweights;
  1986. rhp_barycenterdownsweep -> rhp_barycenterweights_adjust;
  1987. rhp_barycenterdownsweep -> rhp_layersort;
  1988. rhp_barycenterdownsweep -> rhp_updatecrossingsforlayer;
  1989. rhp_barycenterupsweep [ shape=box ];
  1990. rhp_barycenterupsweep -> rhp_barycenterweights;
  1991. rhp_barycenterupsweep -> rhp_barycenterweights_adjust;
  1992. rhp_barycenterupsweep -> rhp_layersort;
  1993. rhp_barycenterupsweep -> rhp_updatecrossingsforlayer;
  1994. rhp_barycenterweights [ shape=box ];
  1995. rhp_barycenterweights -> rhp_log;
  1996. rhp_barycenterweights -> rhp_node_weight;
  1997. rhp_barycenterweights -> rhp_sp_lookup;
  1998. rhp_barycenterweights_adjust [ shape=box ];
  1999. rhp_barycenterweights_adjust -> rhp_log;
  2000. rhp_barycenterweights_adjust -> rhp_sp_lookup;
  2001. rhp_count_down_edges [ shape=box ];
  2002. rhp_count_down_edges -> rhp_log;
  2003. rhp_count_down_edges -> rhp_sp_lookup;
  2004. rhp_count_inversions_down [ shape=box ];
  2005. rhp_count_inversions_down -> rhp_insert_and_count_inversions_down;
  2006. rhp_countisolatednodes [ shape=box ];
  2007. rhp_countisolatednodes -> rhp_log;
  2008. rhp_countisolatednodes -> rhp_sp_next;
  2009. rhp_current_crossings [ shape=box ];
  2010. rhp_current_crossings -> rhp_initial_crossings;
  2011. rhp_current_crossings -> rhp_log;
  2012. rhp_current_crossings -> rhp_numberofcrossings;
  2013. rhp_current_crossings -> rhp_updateallcrossings;
  2014. rhp_current_crossings_at_level [ shape=box ];
  2015. rhp_current_crossings_at_level -> rhp_log;
  2016. rhp_current_crossings_at_level -> rhp_sp_lookup;
  2017. rhp_deinit [ shape=box ];
  2018. rhp_deinit -> rhp_empty_best_crossings_order;
  2019. rhp_deinit -> rhp_empty_sp_between_layers;
  2020. rhp_deinit -> rhp_empty_sp_layers;
  2021. rhp_deinit -> rhp_empty_sp_master_edge_list;
  2022. rhp_deinit -> rhp_empty_sp_master_node_list;
  2023. rhp_deinit -> rhp_free;
  2024. rhp_deinit -> rhp_log;
  2025. rhp_deinit -> rhp_sp_delete;
  2026. rhp_edge_foreach [ shape=box ];
  2027. rhp_edge_foreach -> rhp_log;
  2028. rhp_edge_foreach -> rhp_sp_next;
  2029. rhp_edges_in_layout [ shape=box ];
  2030. rhp_edges_in_layout -> rhp_log;
  2031. rhp_edges_in_layout -> rhp_sp_next;
  2032. rhp_empty_best_crossings_order [ shape=box ];
  2033. rhp_empty_best_crossings_order -> rhp_free;
  2034. rhp_empty_best_crossings_order -> rhp_log;
  2035. rhp_empty_sp_between_layers [ shape=box ];
  2036. rhp_empty_sp_between_layers -> rhp_free;
  2037. rhp_empty_sp_between_layers -> rhp_log;
  2038. rhp_empty_sp_between_layers -> rhp_sp_next;
  2039. rhp_empty_sp_layers [ shape=box ];
  2040. rhp_empty_sp_layers -> rhp_free;
  2041. rhp_empty_sp_layers -> rhp_log;
  2042. rhp_empty_sp_layers -> rhp_sp_lookup;
  2043. rhp_empty_sp_master_edge_list [ shape=box ];
  2044. rhp_empty_sp_master_edge_list -> rhp_log;
  2045. rhp_empty_sp_master_node_list [ shape=box ];
  2046. rhp_empty_sp_master_node_list -> rhp_free;
  2047. rhp_empty_sp_master_node_list -> rhp_log;
  2048. rhp_empty_sp_master_node_list -> rhp_sp_next;
  2049. rhp_free [ shape=box ];
  2050. rhp_free -> myfree;
  2051. rhp_free -> rhp_log;
  2052. rhp_init [ shape=box ];
  2053. rhp_init -> rhp_deinit;
  2054. rhp_init -> rhp_log;
  2055. rhp_init -> rhp_sp_new;
  2056. rhp_initcrossings [ shape=box ];
  2057. rhp_initcrossings -> rhp_log;
  2058. rhp_initcrossings -> rhp_makeinterlayer;
  2059. rhp_initcrossings -> rhp_sp_insert;
  2060. rhp_initial_crossings [ shape=box ];
  2061. rhp_initial_crossings -> rhp_allocateadjacencylists;
  2062. rhp_initial_crossings -> rhp_allocatelayers;
  2063. rhp_initial_crossings -> rhp_countisolatednodes;
  2064. rhp_initial_crossings -> rhp_initcrossings;
  2065. rhp_initial_crossings -> rhp_log;
  2066. rhp_initial_crossings -> rhp_numberofcrossings;
  2067. rhp_initial_crossings -> rhp_updateallcrossings;
  2068. rhp_insert_and_count_inversions_down [ shape=box ];
  2069. rhp_insert_and_count_inversions_down -> rhp_log;
  2070. rhp_layersort [ shape=box ];
  2071. rhp_layersort -> rhp_log;
  2072. rhp_layersort -> rhp_sp_lookup;
  2073. rhp_layersort -> rhp_updatenodepositions;
  2074. rhp_layout [ shape=box ];
  2075. rhp_layout -> rhp_barycenter;
  2076. rhp_layout -> rhp_initial_crossings;
  2077. rhp_layout -> rhp_log;
  2078. rhp_layout -> rhp_order_init;
  2079. rhp_layout -> rhp_sorted_nodelist;
  2080. rhp_layout_callback [ shape=box ];
  2081. rhp_layout_callback -> rhp_log;
  2082. rhp_log [ shape=box ];
  2083. rhp_makeinterlayer [ shape=box ];
  2084. rhp_makeinterlayer -> rhp_count_down_edges;
  2085. rhp_makeinterlayer -> rhp_log;
  2086. rhp_makeinterlayer -> rhp_malloc;
  2087. rhp_malloc [ shape=box ];
  2088. rhp_malloc -> mymalloc;
  2089. rhp_malloc -> rhp_log;
  2090. rhp_node_foreach [ shape=box ];
  2091. rhp_node_foreach -> rhp_log;
  2092. rhp_node_foreach -> rhp_sp_next;
  2093. rhp_node_get_data [ shape=box ];
  2094. rhp_node_get_data -> rhp_log;
  2095. rhp_node_get_data -> rhp_sp_lookup;
  2096. rhp_node_get_level [ shape=box ];
  2097. rhp_node_get_level -> rhp_log;
  2098. rhp_node_get_level -> rhp_sp_lookup;
  2099. rhp_node_get_position [ shape=box ];
  2100. rhp_node_get_position -> rhp_log;
  2101. rhp_node_get_position -> rhp_sp_lookup;
  2102. rhp_node_weight [ shape=box ];
  2103. rhp_node_weight -> rhp_log;
  2104. rhp_nodes_in_layout [ shape=box ];
  2105. rhp_nodes_in_layout -> rhp_log;
  2106. rhp_nodes_in_layout -> rhp_sp_next;
  2107. rhp_nodes_in_level [ shape=box ];
  2108. rhp_nodes_in_level -> rhp_log;
  2109. rhp_nodes_in_level -> rhp_sp_lookup;
  2110. rhp_numberofcrossings [ shape=box ];
  2111. rhp_numberofcrossings -> rhp_log;
  2112. rhp_numberofcrossings -> rhp_sp_lookup;
  2113. rhp_order_init [ shape=box ];
  2114. rhp_order_init -> rhp_log;
  2115. rhp_order_init -> rhp_malloc;
  2116. rhp_order_init -> rhp_save_order;
  2117. rhp_order_init -> rhp_sp_lookup;
  2118. rhp_restore_order [ shape=box ];
  2119. rhp_restore_order -> rhp_log;
  2120. rhp_restore_order -> rhp_sp_lookup;
  2121. rhp_save_order [ shape=box ];
  2122. rhp_save_order -> rhp_log;
  2123. rhp_save_order -> rhp_sp_lookup;
  2124. rhp_sortbydownnodeposition [ shape=box ];
  2125. rhp_sorted_nodelist [ shape=box ];
  2126. rhp_sorted_nodelist -> rhp_log;
  2127. rhp_sorted_nodelist -> rhp_malloc;
  2128. rhp_sorted_nodelist -> rhp_sp_insert;
  2129. rhp_sorted_nodelist -> rhp_sp_lookup;
  2130. rhp_sorted_nodelist -> rhp_sp_new;
  2131. rhp_sorted_nodelist -> rhp_sp_next;
  2132. rhp_sp_delete [ shape=box ];
  2133. rhp_sp_delete -> rhp_free;
  2134. rhp_sp_delete -> rhp_tree_delete_helper;
  2135. rhp_sp_insert [ shape=box ];
  2136. rhp_sp_insert -> rhp_free;
  2137. rhp_sp_insert -> rhp_log;
  2138. rhp_sp_insert -> rhp_malloc;
  2139. rhp_sp_insert -> rhp_sp_sp;
  2140. rhp_sp_lookup [ shape=box ];
  2141. rhp_sp_lookup -> rhp_log;
  2142. rhp_sp_lookup -> rhp_sp_sp;
  2143. rhp_sp_new [ shape=box ];
  2144. rhp_sp_new -> rhp_malloc;
  2145. rhp_sp_next [ shape=box ];
  2146. rhp_sp_next -> rhp_sp_sp;
  2147. rhp_sp_sp [ shape=box ];
  2148. rhp_sp_sp -> rhp_log;
  2149. rhp_terminate [ shape=box ];
  2150. rhp_terminate -> rhp_log;
  2151. rhp_terminate -> rhp_numberofcrossings;
  2152. rhp_terminate -> rhp_restore_order;
  2153. rhp_terminate -> rhp_save_order;
  2154. rhp_tree_delete_helper [ shape=box ];
  2155. rhp_tree_delete_helper -> rhp_free;
  2156. rhp_tree_delete_helper -> rhp_tree_delete_helper;
  2157. rhp_updateallcrossings [ shape=box ];
  2158. rhp_updateallcrossings -> rhp_log;
  2159. rhp_updateallcrossings -> rhp_sp_lookup;
  2160. rhp_updateallcrossings -> rhp_updateallpositions;
  2161. rhp_updateallcrossings -> rhp_updatecrossingsbetweenlayers;
  2162. rhp_updateallpositions [ shape=box ];
  2163. rhp_updateallpositions -> rhp_log;
  2164. rhp_updateallpositions -> rhp_updatenodepositions;
  2165. rhp_updatecrossingsbetweenlayers [ shape=box ];
  2166. rhp_updatecrossingsbetweenlayers -> rhp_add_edges_to_array;
  2167. rhp_updatecrossingsbetweenlayers -> rhp_count_inversions_down;
  2168. rhp_updatecrossingsbetweenlayers -> rhp_log;
  2169. rhp_updatecrossingsbetweenlayers -> rhp_sortbydownnodeposition;
  2170. rhp_updatecrossingsbetweenlayers -> rhp_sp_lookup;
  2171. rhp_updatecrossingsforlayer [ shape=box ];
  2172. rhp_updatecrossingsforlayer -> rhp_updatecrossingsbetweenlayers;
  2173. rhp_updatecrossingsforlayer -> rhp_updatenodepositions;
  2174. rhp_updatenodepositions [ shape=box ];
  2175. rhp_updatenodepositions -> rhp_log;
  2176. rhp_updatenodepositions -> rhp_sp_lookup;
  2177. rlcheck [ shape=box ];
  2178. rlcheck -> rlcheck;
  2179. rlcopy [ shape=box ];
  2180. rlcopy -> dp_calloc;
  2181. rlcopy -> rlcopy;
  2182. rlcopy -> uniqstr;
  2183. row_barycenter [ shape=box ];
  2184. row_barycenter -> mget;
  2185. set_bfslevel [ shape=box ];
  2186. set_bfslevel -> bfsinsertq;
  2187. set_bfslevel -> bfsremoveq;
  2188. set_bfslevel -> dp_calloc;
  2189. set_bfslevel -> dp_free;
  2190. set_bfslevel -> uniqnode2;
  2191. set_level [ shape=box ];
  2192. set_level -> set_level;
  2193. set_level2 [ shape=box ];
  2194. set_level2 -> set_level2;
  2195. set_tlevel0 [ shape=box ];
  2196. set_tlevel0 -> set_tlevel0;
  2197. setbit [ shape=box ];
  2198. shorteredges [ shape=box ];
  2199. shorteredges -> shorteredges_r;
  2200. shorteredges -> unrev;
  2201. shorteredges_r [ shape=box ];
  2202. shorteredges_r -> shorteredges_r;
  2203. show_about [ shape=box ];
  2204. show_about -> dp_calloc;
  2205. show_about -> dp_free;
  2206. sort [ shape=box ];
  2207. sort_levellist [ shape=box ];
  2208. sp_addsg_r [ shape=box ];
  2209. sp_addsg_r -> dp_calloc;
  2210. sp_addsg_r -> sp_addsg_r;
  2211. sp_addsg_r -> uniqgraph;
  2212. sp_crsg_r [ shape=box ];
  2213. sp_crsg_r -> create_sg;
  2214. sp_crsg_r -> sp_crsg_r;
  2215. sp_crsg_r -> uniqstr;
  2216. splay_tree_compare_case_strings [ shape=box ];
  2217. splay_tree_compare_strings [ shape=box ];
  2218. splay_tree_delete [ shape=box ];
  2219. splay_tree_delete -> dp_calloc;
  2220. splay_tree_delete -> dp_free;
  2221. splay_tree_delete -> splay_tree_remove;
  2222. splay_tree_delete -> splay_tree_successor;
  2223. splay_tree_foreach [ shape=box ];
  2224. splay_tree_foreach -> splay_tree_successor;
  2225. splay_tree_free_key [ shape=box ];
  2226. splay_tree_free_key -> dp_free;
  2227. splay_tree_free_value [ shape=box ];
  2228. splay_tree_free_value -> dp_free;
  2229. splay_tree_insert [ shape=box ];
  2230. splay_tree_insert -> dp_calloc;
  2231. splay_tree_insert -> splay_tree_lookup;
  2232. splay_tree_lookup [ shape=box ];
  2233. splay_tree_new [ shape=box ];
  2234. splay_tree_new -> dp_calloc;
  2235. splay_tree_remove [ shape=box ];
  2236. splay_tree_remove -> dp_free;
  2237. splay_tree_remove -> splay_tree_lookup;
  2238. splay_tree_successor [ shape=box ];
  2239. splitedges [ shape=box ];
  2240. splitedges -> add_new_dummyedge;
  2241. splitedges -> add_new_dummynode;
  2242. splitedges -> del_edge;
  2243. splitedges -> uniqnode2;
  2244. state_grow [ shape=box ];
  2245. state_grow -> memory_realloc;
  2246. state_push [ shape=box ];
  2247. state_push -> state_grow;
  2248. static_maingtk_textsizes [ shape=box ];
  2249. static_maingtk_textsizes -> static_maingtk_textsizes1htmln;
  2250. static_maingtk_textsizes -> static_maingtk_textsizes1n;
  2251. static_maingtk_textsizes -> unesc;
  2252. static_maingtk_textsizes -> uniqstr;
  2253. static_maingtk_textsizes1eq [ shape=box ];
  2254. static_maingtk_textsizes1eq -> static_maingtk_textsizes1eq;
  2255. static_maingtk_textsizes1htmln [ shape=box ];
  2256. static_maingtk_textsizes1htmln -> dp_free;
  2257. static_maingtk_textsizes1htmln -> static_maingtk_textsizes1htmlsz;
  2258. static_maingtk_textsizes1htmlsz [ shape=box ];
  2259. static_maingtk_textsizes1htmlsz -> static_maingtk_textsizes1htmlszitems;
  2260. static_maingtk_textsizes1htmlsz -> static_maingtk_textsizes1htmlsztables;
  2261. static_maingtk_textsizes1htmlsz1item [ shape=box ];
  2262. static_maingtk_textsizes1htmlsz1item -> dp_calloc;
  2263. static_maingtk_textsizes1htmlsz1item -> uniqstr;
  2264. static_maingtk_textsizes1htmlsz1table [ shape=box ];
  2265. static_maingtk_textsizes1htmlsz1table -> dp_calloc;
  2266. static_maingtk_textsizes1htmlsz1table -> dp_free;
  2267. static_maingtk_textsizes1htmlsz1table -> static_maingtk_textsizes1htmlsz1item;
  2268. static_maingtk_textsizes1htmlsz1table -> static_maingtk_textsizes1htmlsz1table;
  2269. static_maingtk_textsizes1htmlszitems [ shape=box ];
  2270. static_maingtk_textsizes1htmlszitems -> dp_calloc;
  2271. static_maingtk_textsizes1htmlszitems -> dp_free;
  2272. static_maingtk_textsizes1htmlszitems -> static_maingtk_textsizes1htmlsz1item;
  2273. static_maingtk_textsizes1htmlsztables [ shape=box ];
  2274. static_maingtk_textsizes1htmlsztables -> dp_calloc;
  2275. static_maingtk_textsizes1htmlsztables -> dp_free;
  2276. static_maingtk_textsizes1htmlsztables -> static_maingtk_textsizes1htmlsz1table;
  2277. static_maingtk_textsizes1n [ shape=box ];
  2278. static_maingtk_textsizes1n -> dp_free;
  2279. static_maingtk_textsizes1n -> static_maingtk_textsizes1eq;
  2280. static_maingtk_textsizes1n -> static_maingtk_textsizes1rl;
  2281. static_maingtk_textsizes1n -> static_maingtk_textsizes1sz;
  2282. static_maingtk_textsizes1n -> static_maingtk_textsizes2rl;
  2283. static_maingtk_textsizes1rl [ shape=box ];
  2284. static_maingtk_textsizes1rl -> dp_calloc;
  2285. static_maingtk_textsizes1rl -> dp_free;
  2286. static_maingtk_textsizes1rl -> static_maingtk_textsizes1rl;
  2287. static_maingtk_textsizes1rl -> uniqstr;
  2288. static_maingtk_textsizes1sz [ shape=box ];
  2289. static_maingtk_textsizes1sz -> dp_free;
  2290. static_maingtk_textsizes1sz -> static_maingtk_textsizes1sz;
  2291. static_maingtk_textsizes2rl [ shape=box ];
  2292. static_maingtk_textsizes2rl -> static_maingtk_textsizes2rl;
  2293. store_new_positions [ shape=box ];
  2294. store_new_positions -> su_find_node_with_number;
  2295. su_find_node_with_number [ shape=box ];
  2296. su_find_node_with_number -> uniqnode2;
  2297. testbit [ shape=box ];
  2298. top_level_window_main_quit [ shape=box ];
  2299. top_level_window_main_quit -> do_clear_all;
  2300. top_level_window_main_quit -> dp_free;
  2301. twovertcross [ shape=box ];
  2302. twovertcross -> posat;
  2303. uncycle [ shape=box ];
  2304. uncycle -> clear_stlist_all;
  2305. uncycle -> decycle3;
  2306. uncycle -> make_stlist;
  2307. unesc [ shape=box ];
  2308. unesc -> dp_calloc;
  2309. unesc -> dp_free;
  2310. unesc -> uniqstr;
  2311. uniqgraph [ shape=box ];
  2312. uniqgraph -> splay_tree_lookup;
  2313. uniqgraph -> splay_tree_new;
  2314. uniqgraph_add [ shape=box ];
  2315. uniqgraph_add -> splay_tree_insert;
  2316. uniqgraph_add -> splay_tree_lookup;
  2317. uniqgraph_add -> splay_tree_new;
  2318. uniqnode [ shape=box ];
  2319. uniqnode -> splay_tree_lookup;
  2320. uniqnode2 [ shape=box ];
  2321. uniqnode2 -> splay_tree_lookup;
  2322. uniqnode_add [ shape=box ];
  2323. uniqnode_add -> splay_tree_insert;
  2324. uniqnode_add -> splay_tree_lookup;
  2325. uniqnode_add -> splay_tree_new;
  2326. uniqnode_add2 [ shape=box ];
  2327. uniqnode_add2 -> splay_tree_insert;
  2328. uniqnode_add2 -> splay_tree_lookup;
  2329. uniqnode_add2 -> splay_tree_new;
  2330. uniqnodeid [ shape=box ];
  2331. uniqnodeid -> splay_tree_lookup;
  2332. uniqstr [ shape=box ];
  2333. uniqstr -> dp_calloc;
  2334. uniqstr -> splay_tree_insert;
  2335. uniqstr -> splay_tree_lookup;
  2336. uniqstr -> splay_tree_new;
  2337. unrev [ shape=box ];
  2338. unrev -> clear_stlist_all;
  2339. unrev -> make_stlist;
  2340. update_status_text [ shape=box ];
  2341. update_status_text_cross [ shape=box ];
  2342. update_status_text_cross -> update_status_text;
  2343. upper_barycenter [ shape=box ];
  2344. vcg_clear_uniqstr [ shape=box ];
  2345. vcg_clear_uniqstr -> splay_tree_delete;
  2346. vcg_create_buffer [ shape=box ];
  2347. vcg_create_buffer -> vcg_init_buffer;
  2348. vcg_create_buffer -> vcgalloc;
  2349. vcg_create_buffer -> vcgfree;
  2350. vcg_delete_buffer [ shape=box ];
  2351. vcg_delete_buffer -> vcgfree;
  2352. vcg_flush_buffer [ shape=box ];
  2353. vcg_init_buffer [ shape=box ];
  2354. vcg_init_buffer -> vcg_flush_buffer;
  2355. vcg_lex_clear [ shape=box ];
  2356. vcg_lex_clear -> vcglex_destroy;
  2357. vcg_scan_buffer [ shape=box ];
  2358. vcg_scan_buffer -> vcg_switch_to_buffer;
  2359. vcg_scan_buffer -> vcgalloc;
  2360. vcg_scan_bytes [ shape=box ];
  2361. vcg_scan_bytes -> vcg_scan_buffer;
  2362. vcg_scan_bytes -> vcgalloc;
  2363. vcg_scan_bytes -> vcgfree;
  2364. vcg_scan_string [ shape=box ];
  2365. vcg_scan_string -> vcg_scan_bytes;
  2366. vcg_switch_to_buffer [ shape=box ];
  2367. vcg_switch_to_buffer -> vcgensure_buffer_stack;
  2368. vcg_uniqstr [ shape=box ];
  2369. vcg_uniqstr -> dp_calloc;
  2370. vcg_uniqstr -> splay_tree_insert;
  2371. vcg_uniqstr -> splay_tree_lookup;
  2372. vcg_uniqstr -> splay_tree_new;
  2373. vcgalloc [ shape=box ];
  2374. vcgedge [ shape=box ];
  2375. vcgedge -> dp_calloc;
  2376. vcgedge -> vcglex;
  2377. vcgedge -> vcguniqnode;
  2378. vcgensure_buffer_stack [ shape=box ];
  2379. vcgensure_buffer_stack -> vcgalloc;
  2380. vcgensure_buffer_stack -> vcgrealloc;
  2381. vcgfree [ shape=box ];
  2382. vcggraphtitle [ shape=box ];
  2383. vcggraphtitle -> vcglex;
  2384. vcglex [ shape=box ];
  2385. vcglex -> dp_calloc;
  2386. vcglex -> dp_free;
  2387. vcglex -> vcg_create_buffer;
  2388. vcglex -> vcg_uniqstr;
  2389. vcglex -> vcgensure_buffer_stack;
  2390. vcglex -> vcgrestart;
  2391. vcglex -> yy_get_next_buffer;
  2392. vcglex_destroy [ shape=box ];
  2393. vcglex_destroy -> vcg_delete_buffer;
  2394. vcglex_destroy -> vcgfree;
  2395. vcglex_destroy -> vcgpop_buffer_state;
  2396. vcgnode [ shape=box ];
  2397. vcgnode -> dp_calloc;
  2398. vcgnode -> vcglex;
  2399. vcgnode -> vcguniqnode_add;
  2400. vcgparse [ shape=box ];
  2401. vcgparse -> chkedges;
  2402. vcgparse -> copyall;
  2403. vcgparse -> vcgedge;
  2404. vcgparse -> vcggraphtitle;
  2405. vcgparse -> vcglex;
  2406. vcgparse -> vcgnode;
  2407. vcgparse -> vcgparse_clear;
  2408. vcgparse_clear [ shape=box ];
  2409. vcgparse_clear -> clear_vcguniqnode;
  2410. vcgparse_clear -> vcg_clear_uniqstr;
  2411. vcgparse_clear -> vcg_lex_clear;
  2412. vcgparse_clear -> vel_clear;
  2413. vcgparse_clear -> vnl_clear;
  2414. vcgpop_buffer_state [ shape=box ];
  2415. vcgpop_buffer_state -> vcg_delete_buffer;
  2416. vcgpush_buffer_state [ shape=box ];
  2417. vcgpush_buffer_state -> vcgensure_buffer_stack;
  2418. vcgrealloc [ shape=box ];
  2419. vcgrestart [ shape=box ];
  2420. vcgrestart -> vcg_create_buffer;
  2421. vcgrestart -> vcg_init_buffer;
  2422. vcgrestart -> vcgensure_buffer_stack;
  2423. vcguniqnode [ shape=box ];
  2424. vcguniqnode -> splay_tree_lookup;
  2425. vcguniqnode_add [ shape=box ];
  2426. vcguniqnode_add -> splay_tree_insert;
  2427. vcguniqnode_add -> splay_tree_lookup;
  2428. vcguniqnode_add -> splay_tree_new;
  2429. vel_clear [ shape=box ];
  2430. vel_clear -> dp_free;
  2431. vnl_clear [ shape=box ];
  2432. vnl_clear -> dp_free;
  2433. wcstoumax [ shape=box ];
  2434. wcstoumax -> __attribute__;
  2435. xspin_changed [ shape=box ];
  2436. xspin_changed -> edgeconnections;
  2437. xspin_changed -> finalxy;
  2438. xspin_changed -> improve_positions;
  2439. xspin_changed -> update_status_text;
  2440. ylevels [ shape=box ];
  2441. ylevels -> add_singlenode;
  2442. ylevels -> dp_calloc;
  2443. ylevels -> nscompass;
  2444. ylevels -> set_bfslevel;
  2445. ylevels -> set_level;
  2446. ylevels -> set_level2;
  2447. ylevels -> set_tlevel0;
  2448. yspin_changed [ shape=box ];
  2449. yspin_changed -> edgeconnections;
  2450. yspin_changed -> finalxy;
  2451. yspin_changed -> improve_positions;
  2452. yspin_changed -> update_status_text;
  2453. yyFail [ shape=box ];
  2454. yyFail -> hlyerror;
  2455. yyFail -> yyerror;
  2456. yyMemoryExhausted [ shape=box ];
  2457. yy_create_buffer [ shape=box ];
  2458. yy_create_buffer -> yy_init_buffer;
  2459. yy_create_buffer -> yyalloc;
  2460. yy_create_buffer -> yyfree;
  2461. yy_delete_buffer [ shape=box ];
  2462. yy_delete_buffer -> yyfree;
  2463. yy_flush_buffer [ shape=box ];
  2464. yy_get_next_buffer [ shape=box ];
  2465. yy_get_next_buffer -> hlrealloc;
  2466. yy_get_next_buffer -> hlrestart;
  2467. yy_get_next_buffer -> vcgrealloc;
  2468. yy_get_next_buffer -> vcgrestart;
  2469. yy_get_next_buffer -> yyrealloc;
  2470. yy_get_next_buffer -> yyrestart;
  2471. yy_init_buffer [ shape=box ];
  2472. yy_init_buffer -> yy_flush_buffer;
  2473. yy_reduce_print [ shape=box ];
  2474. yy_reduce_print -> yy_symbol_print;
  2475. yy_scan_buffer [ shape=box ];
  2476. yy_scan_buffer -> yy_switch_to_buffer;
  2477. yy_scan_buffer -> yyalloc;
  2478. yy_scan_bytes [ shape=box ];
  2479. yy_scan_bytes -> yy_scan_buffer;
  2480. yy_scan_bytes -> yyalloc;
  2481. yy_scan_bytes -> yyfree;
  2482. yy_scan_string [ shape=box ];
  2483. yy_scan_string -> yy_scan_bytes;
  2484. yy_switch_to_buffer [ shape=box ];
  2485. yy_switch_to_buffer -> yyensure_buffer_stack;
  2486. yy_symbol_print [ shape=box ];
  2487. yy_yypstack [ shape=box ];
  2488. yy_yypstack -> yy_yypstack;
  2489. yyaddDeferredAction [ shape=box ];
  2490. yyaddDeferredAction -> yyexpandGLRStack;
  2491. yyalloc [ shape=box ];
  2492. yydestroyGLRState [ shape=box ];
  2493. yydestroyGLRState -> yy_symbol_print;
  2494. yydestroyGLRState -> yydestroyGLRState;
  2495. yydestroyGLRState -> yydestruct;
  2496. yydestruct [ shape=box ];
  2497. yydestruct -> yy_symbol_print;
  2498. yydoAction [ shape=box ];
  2499. yydoAction -> yy_reduce_print;
  2500. yydoAction -> yyuserAction;
  2501. yyensure_buffer_stack [ shape=box ];
  2502. yyensure_buffer_stack -> yyalloc;
  2503. yyensure_buffer_stack -> yyrealloc;
  2504. yyerror [ shape=box ];
  2505. yyexpandGLRStack [ shape=box ];
  2506. yyexpandGLRStack -> yyMemoryExhausted;
  2507. yyfill [ shape=box ];
  2508. yyfree [ shape=box ];
  2509. yyfreeGLRStack [ shape=box ];
  2510. yyfreeGLRStack -> yyfreeStateSet;
  2511. yyfreeStateSet [ shape=box ];
  2512. yygetLRActions [ shape=box ];
  2513. yygetToken [ shape=box ];
  2514. yygetToken -> hlylex;
  2515. yygetToken -> yy_symbol_print;
  2516. yygetToken -> yylex;
  2517. yyglrReduce [ shape=box ];
  2518. yyglrReduce -> yy_symbol_print;
  2519. yyglrReduce -> yyaddDeferredAction;
  2520. yyglrReduce -> yydoAction;
  2521. yyglrReduce -> yyglrShift;
  2522. yyglrReduce -> yyglrShiftDefer;
  2523. yyglrShift [ shape=box ];
  2524. yyglrShift -> yyexpandGLRStack;
  2525. yyglrShiftDefer [ shape=box ];
  2526. yyglrShiftDefer -> yyaddDeferredAction;
  2527. yyidenticalOptions [ shape=box ];
  2528. yyinitGLRStack [ shape=box ];
  2529. yyinitGLRStack -> yyinitStateSet;
  2530. yyinitStateSet [ shape=box ];
  2531. yylex [ shape=box ];
  2532. yylex -> dp_calloc;
  2533. yylex -> dp_ccat;
  2534. yylex -> dp_check_c_comment;
  2535. yylex -> dp_free;
  2536. yylex -> dp_uniqstr;
  2537. yylex -> yy_create_buffer;
  2538. yylex -> yy_get_next_buffer;
  2539. yylex -> yyensure_buffer_stack;
  2540. yylex -> yyrestart;
  2541. yylex_destroy [ shape=box ];
  2542. yylex_destroy -> yy_delete_buffer;
  2543. yylex_destroy -> yyfree;
  2544. yylex_destroy -> yypop_buffer_state;
  2545. yymergeOptionSets [ shape=box ];
  2546. yyparse [ shape=box ];
  2547. yyparse -> yyFail;
  2548. yyparse -> yy_symbol_print;
  2549. yyparse -> yydestroyGLRState;
  2550. yyparse -> yydestruct;
  2551. yyparse -> yyerror;
  2552. yyparse -> yyfreeGLRStack;
  2553. yyparse -> yygetLRActions;
  2554. yyparse -> yygetToken;
  2555. yyparse -> yyglrReduce;
  2556. yyparse -> yyglrShift;
  2557. yyparse -> yyinitGLRStack;
  2558. yyparse -> yyprocessOneStack;
  2559. yyparse -> yyrecoverSyntaxError;
  2560. yyparse -> yyremoveDeletes;
  2561. yyparse -> yyreportSyntaxError;
  2562. yyparse -> yyresolveStack;
  2563. yyparse -> yyundeleteLastStack;
  2564. yypdumpstack [ shape=box ];
  2565. yypop_buffer_state [ shape=box ];
  2566. yypop_buffer_state -> yy_delete_buffer;
  2567. yyprocessOneStack [ shape=box ];
  2568. yyprocessOneStack -> yygetLRActions;
  2569. yyprocessOneStack -> yygetToken;
  2570. yyprocessOneStack -> yyglrReduce;
  2571. yyprocessOneStack -> yyprocessOneStack;
  2572. yyprocessOneStack -> yysplitStack;
  2573. yypstack [ shape=box ];
  2574. yypstack -> yypstates;
  2575. yypstates [ shape=box ];
  2576. yypstates -> yy_yypstack;
  2577. yypush_buffer_state [ shape=box ];
  2578. yypush_buffer_state -> yyensure_buffer_stack;
  2579. yyrealloc [ shape=box ];
  2580. yyrecoverSyntaxError [ shape=box ];
  2581. yyrecoverSyntaxError -> yyFail;
  2582. yyrecoverSyntaxError -> yy_symbol_print;
  2583. yyrecoverSyntaxError -> yydestroyGLRState;
  2584. yyrecoverSyntaxError -> yydestruct;
  2585. yyrecoverSyntaxError -> yygetToken;
  2586. yyrecoverSyntaxError -> yyglrShift;
  2587. yyrecoverSyntaxError -> yyremoveDeletes;
  2588. yyremoveDeletes [ shape=box ];
  2589. yyreportAmbiguity [ shape=box ];
  2590. yyreportAmbiguity -> hlyerror;
  2591. yyreportAmbiguity -> yyerror;
  2592. yyreportAmbiguity -> yyreportTree;
  2593. yyreportSyntaxError [ shape=box ];
  2594. yyreportSyntaxError -> hlyerror;
  2595. yyreportSyntaxError -> yyMemoryExhausted;
  2596. yyreportSyntaxError -> yyerror;
  2597. yyreportSyntaxError -> yytnamerr;
  2598. yyreportTree [ shape=box ];
  2599. yyreportTree -> yyreportTree;
  2600. yyresolveAction [ shape=box ];
  2601. yyresolveAction -> yydestroyGLRState;
  2602. yyresolveAction -> yyresolveStates;
  2603. yyresolveAction -> yyuserAction;
  2604. yyresolveStack [ shape=box ];
  2605. yyresolveStack -> yyresolveStates;
  2606. yyresolveStates [ shape=box ];
  2607. yyresolveStates -> yyresolveStates;
  2608. yyresolveStates -> yyresolveValue;
  2609. yyresolveValue [ shape=box ];
  2610. yyresolveValue -> yydestruct;
  2611. yyresolveValue -> yyidenticalOptions;
  2612. yyresolveValue -> yymergeOptionSets;
  2613. yyresolveValue -> yyreportAmbiguity;
  2614. yyresolveValue -> yyresolveAction;
  2615. yyrestart [ shape=box ];
  2616. yyrestart -> yy_create_buffer;
  2617. yyrestart -> yy_init_buffer;
  2618. yyrestart -> yyensure_buffer_stack;
  2619. yysplitStack [ shape=box ];
  2620. yysplitStack -> yyMemoryExhausted;
  2621. yytnamerr [ shape=box ];
  2622. yyundeleteLastStack [ shape=box ];
  2623. yyuserAction [ shape=box ];
  2624. yyuserAction -> __attribute__;
  2625. yyuserAction -> dp_aset;
  2626. yyuserAction -> dp_ccat;
  2627. yyuserAction -> dp_chkerr;
  2628. yyuserAction -> dp_cke;
  2629. yyuserAction -> dp_clrep;
  2630. yyuserAction -> dp_ende;
  2631. yyuserAction -> dp_endss;
  2632. yyuserAction -> dp_free;
  2633. yyuserAction -> dp_ine;
  2634. yyuserAction -> dp_mknid;
  2635. yyuserAction -> dp_mknode0;
  2636. yyuserAction -> dp_namedsubg;
  2637. yyuserAction -> dp_newe;
  2638. yyuserAction -> dp_sg;
  2639. yyuserAction -> dp_starte1;
  2640. yyuserAction -> dp_starte2;
  2641. yyuserAction -> dphl_attr_huh;
  2642. yyuserAction -> dphl_chk_align;
  2643. yyuserAction -> dphl_chk_balign;
  2644. yyuserAction -> dphl_chk_bgcolor;
  2645. yyuserAction -> dphl_chk_border;
  2646. yyuserAction -> dphl_chk_cellborder;
  2647. yyuserAction -> dphl_chk_cellpadding;
  2648. yyuserAction -> dphl_chk_cellspacing;
  2649. yyuserAction -> dphl_chk_color;
  2650. yyuserAction -> dphl_chk_colspan;
  2651. yyuserAction -> dphl_chk_columns;
  2652. yyuserAction -> dphl_chk_err;
  2653. yyuserAction -> dphl_chk_face;
  2654. yyuserAction -> dphl_chk_fixedsize;
  2655. yyuserAction -> dphl_chk_gradientangle;
  2656. yyuserAction -> dphl_chk_height;
  2657. yyuserAction -> dphl_chk_href;
  2658. yyuserAction -> dphl_chk_id;
  2659. yyuserAction -> dphl_chk_pointsize;
  2660. yyuserAction -> dphl_chk_port;
  2661. yyuserAction -> dphl_chk_rows;
  2662. yyuserAction -> dphl_chk_rowspan;
  2663. yyuserAction -> dphl_chk_scale;
  2664. yyuserAction -> dphl_chk_sides;
  2665. yyuserAction -> dphl_chk_src;
  2666. yyuserAction -> dphl_chk_style;
  2667. yyuserAction -> dphl_chk_target;
  2668. yyuserAction -> dphl_chk_title;
  2669. yyuserAction -> dphl_chk_valign;
  2670. yyuserAction -> dphl_chk_width;
  2671. yyuserAction -> dphl_data;
  2672. yyuserAction -> dphl_ebr;
  2673. yyuserAction -> dphl_efont;
  2674. yyuserAction -> dphl_eimg;
  2675. yyuserAction -> dphl_etable;
  2676. yyuserAction -> dphl_etd;
  2677. yyuserAction -> dphl_etr;
  2678. yyuserAction -> dphl_rbr;
  2679. yyuserAction -> dphl_rfont;
  2680. yyuserAction -> dphl_rhr;
  2681. yyuserAction -> dphl_rimg;
  2682. yyuserAction -> dphl_rsub;
  2683. yyuserAction -> dphl_rsup;
  2684. yyuserAction -> dphl_rtable;
  2685. yyuserAction -> dphl_rtd;
  2686. yyuserAction -> dphl_rtr;
  2687. yyuserAction -> dphl_rvr;
  2688. yyuserAction -> dphl_tabledata;
  2689. yyuserAction -> yyfill;
  2690. }