summaryrefslogtreecommitdiff
path: root/globals_p.html
blob: 8c42fe9caa94980a5a25a03114d099bda2516b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>navit: Globals</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
  $(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td id="projectalign" style="padding-left: 0.5em;">
   <div id="projectname">navit
   &#160;<span id="projectnumber">0.5.3-trunk</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
  initMenu('',true,false,'search.php','Search');
  $(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('globals_p.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0" 
        name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="contents">
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>

<h3><a id="index_p"></a>- p -</h3><ul>
<li>p
: <a class="el" href="mg_8h.html#aaf29c41f2020649a36c2820ffa06119a">mg.h</a>
, <a class="el" href="tree_8c.html#a31aee918cc8b0f0e71b62d0441b0c74a">tree.c</a>
</li>
<li>P
: <a class="el" href="geod__for_8c.html#a8019aa9167c19c810aefa4cd5c0b0ab5">geod_for.c</a>
</li>
<li>padding_changed_callback()
: <a class="el" href="graphics__android_8c.html#ac444dca4568f829c36efb7125a558854">graphics_android.c</a>
</li>
<li>paintOverlays()
: <a class="el" href="QNavitQuick_8cpp.html#a3e27cc033e73ffddfb4a04c0ec989fe3">QNavitQuick.cpp</a>
, <a class="el" href="QNavitWidget_8cpp.html#a3e27cc033e73ffddfb4a04c0ec989fe3">QNavitWidget.cpp</a>
</li>
<li>param_add_dec()
: <a class="el" href="param_8h.html#a4f18f8584df443e5b4448db83910d597">param.h</a>
, <a class="el" href="param_8c.html#a4f18f8584df443e5b4448db83910d597">param.c</a>
</li>
<li>param_add_hex()
: <a class="el" href="param_8c.html#aca6297dc4b2231b9ade912493d5007e8">param.c</a>
, <a class="el" href="param_8h.html#aca6297dc4b2231b9ade912493d5007e8">param.h</a>
</li>
<li>param_add_hex_sig()
: <a class="el" href="param_8c.html#a5ba2bb393c39942facea0865c9e6322f">param.c</a>
, <a class="el" href="param_8h.html#a5ba2bb393c39942facea0865c9e6322f">param.h</a>
</li>
<li>param_add_string()
: <a class="el" href="param_8c.html#a56c696db2922a51f86c5fba46a8375cf">param.c</a>
, <a class="el" href="param_8h.html#a56c696db2922a51f86c5fba46a8375cf">param.h</a>
</li>
<li>parent
: <a class="el" href="gpx2navit__txt_8h.html#a075a573833b43bae7ce3088bd7365de5">gpx2navit_txt.h</a>
</li>
<li>parse_array()
: <a class="el" href="cJSON_8c.html#a7729444034bb1c16924478e4806023af">cJSON.c</a>
</li>
<li>parse_color_values()
: <a class="el" href="xpm2bmp_8c.html#a858f1915fb9017f5f83d5e0975bf4b39">xpm2bmp.c</a>
</li>
<li>parse_dbg_level()
: <a class="el" href="debug_8c.html#aaa8f23c0b24005dc922f64070cad60a3">debug.c</a>
</li>
<li>parse_file()
: <a class="el" href="xmlconfig_8c.html#a9de8347241db6908beeefca1c0c9c0b7">xmlconfig.c</a>
</li>
<li>parse_filter()
: <a class="el" href="filter_8c.html#a4ad7f2b4c31f5ebaa9cbb74d49ca16b9">filter.c</a>
</li>
<li>parse_filters()
: <a class="el" href="filter_8c.html#a745488396c47c0da35be64945cd50f4e">filter.c</a>
</li>
<li>parse_for_systematic_comparison()
: <a class="el" href="util_8c.html#af3b0dd00913c35a29e7c8e316f613709">util.c</a>
</li>
<li>parse_line()
: <a class="el" href="garmin__img_8c.html#a53b743f4b817210b18458ee1e607b5b9">garmin_img.c</a>
, <a class="el" href="textfile_8c.html#ad4762caeddf09623eeed9e315589d701">textfile.c</a>
</li>
<li>parse_line_values()
: <a class="el" href="xpm2bmp_8c.html#a7f61fd98ef07746b9dd3de3b35d9ce5b">xpm2bmp.c</a>
</li>
<li>parse_member()
: <a class="el" href="osm__xml_8c.html#ad6d4c1c613b190b0e817ac2cbe8bdda4">osm_xml.c</a>
</li>
<li>parse_nd()
: <a class="el" href="osm__xml_8c.html#a4f4ba21bfebe48ecf5d36eca919235db">osm_xml.c</a>
</li>
<li>parse_node()
: <a class="el" href="osm__xml_8c.html#a819711c1412395433d88e38558bb61d8">osm_xml.c</a>
, <a class="el" href="xmlconfig_8c.html#ae378c00c35dd6b9bcdf690bc5385a630">xmlconfig.c</a>
</li>
<li>parse_node_text()
: <a class="el" href="xmlconfig_8c.html#adea6ff320e569af1a06b71198191c219">xmlconfig.c</a>
</li>
<li>parse_number()
: <a class="el" href="cJSON_8c.html#a77cf18cc6fa5c35cb069532cb978ddee">cJSON.c</a>
</li>
<li>parse_object()
: <a class="el" href="cJSON_8c.html#aae5de4fb5317314153a9791567380768">cJSON.c</a>
</li>
<li>parse_option()
: <a class="el" href="maptool_8c.html#ade40f66edac4fc4c13a21785ddbf7d8c">maptool.c</a>
</li>
<li>parse_pixel_line_values()
: <a class="el" href="xpm2bmp_8c.html#ad195a582e2dc3e94bfb3d9a27d97cc3e">xpm2bmp.c</a>
</li>
<li>parse_relation()
: <a class="el" href="osm__xml_8c.html#a77eefeea6644ee04a38ce38b531d41b4">osm_xml.c</a>
</li>
<li>parse_relation_member_string()
: <a class="el" href="osm_8c.html#a7309101aafecb830704b6b345f5d99ae">osm.c</a>
</li>
<li>parse_state
: <a class="el" href="util_8c.html#a8daa300d570259681d375158ecd5233e">util.c</a>
</li>
<li>parse_state_alpha
: <a class="el" href="util_8c.html#a8daa300d570259681d375158ecd5233eab440dfb530e5d40f2336781a6a0baee4">util.c</a>
</li>
<li>parse_state_numeric
: <a class="el" href="util_8c.html#a8daa300d570259681d375158ecd5233ea4da7f298c17a18dffbec9ee24b1b6c3e">util.c</a>
</li>
<li>parse_state_whitespace
: <a class="el" href="util_8c.html#a8daa300d570259681d375158ecd5233ea47c619250b60b0597fc22b5188cec8a9">util.c</a>
</li>
<li>parse_string()
: <a class="el" href="cJSON_8c.html#ae928a03f612fd8ab2e9152dee6a1035d">cJSON.c</a>
</li>
<li>parse_tag()
: <a class="el" href="osm__xml_8c.html#aba6131110413e80e3d52c1124d40ccec">osm_xml.c</a>
</li>
<li>parse_value()
: <a class="el" href="cJSON_8c.html#aa9d7542467e921558b62ea2dbd4b9c60">cJSON.c</a>
</li>
<li>parse_way()
: <a class="el" href="osm__xml_8c.html#aa3165b5eaeb2d3d4968974d678803215">osm_xml.c</a>
</li>
<li>parse_xkbd_args()
: <a class="el" href="destination_8c.html#addde9006790c194b938e6274e683b40d">destination.c</a>
</li>
<li>parsed_item_destroy()
: <a class="el" href="traffic_8c.html#a39f929403012780781092d988aa0e365">traffic.c</a>
</li>
<li>parsedata
: <a class="el" href="gpx2navit__txt_8h.html#afb3300060e1d1729a586c44d131a274d">gpx2navit_txt.h</a>
</li>
<li>parseMain()
: <a class="el" href="gpx2navit__txt_8h.html#ac80ec0656f515c93abf717b20f96c018">gpx2navit_txt.h</a>
, <a class="el" href="parser_8c.html#ad1797dba0bb6a67f52378a33f992db49">parser.c</a>
</li>
<li>part
: <a class="el" href="garmin__img_8c.html#a9fccd4c2db421341de357d5c2939a303">garmin_img.c</a>
</li>
<li>path_home
: <a class="el" href="speak_8c.html#a7fd80a33306a015428e9d039cc100e28">speak.c</a>
</li>
<li>PATH_MAX
: <a class="el" href="file_8h.html#ae688d728e1acdfe5988c7db45d6f0166">file.h</a>
</li>
<li>pathattr
: <a class="el" href="gpx2navit__txt_8h.html#a1ec047271b341162781a27e9ea608e51">gpx2navit_txt.h</a>
</li>
<li>pcoord_destroy_py()
: <a class="el" href="pcoord_8c.html#a0d5896988dd908b8631c736e5a17df5b">pcoord.c</a>
</li>
<li>pcoord_encode()
: <a class="el" href="binding__dbus_8c.html#a1ba2e7992ea80c64977a55b1ca8ab7f4">binding_dbus.c</a>
</li>
<li>pcoord_format_absolute()
: <a class="el" href="group__coord.html#ga326225758916c1a62619761e5319e3d6">coord.c</a>
, <a class="el" href="group__coord.html#ga326225758916c1a62619761e5319e3d6">coord.h</a>
</li>
<li>pcoord_format_degree_short()
: <a class="el" href="group__coord.html#ga519c10d47cd6b29afc805d8fbb2ccb8d">coord.c</a>
, <a class="el" href="group__coord.html#ga519c10d47cd6b29afc805d8fbb2ccb8d">coord.h</a>
</li>
<li>pcoord_func()
: <a class="el" href="pcoord_8c.html#addda55a27d0544b444ff40adc35e26c8">pcoord.c</a>
</li>
<li>pcoord_get_from_message()
: <a class="el" href="binding__dbus_8c.html#a9aedd7fd9d261196018280d5d1bbc7c1">binding_dbus.c</a>
</li>
<li>pcoord_getattr_py()
: <a class="el" href="pcoord_8c.html#a0a4d1a34526e0fa45d731cd0d900ae35">pcoord.c</a>
</li>
<li>pcoord_methods
: <a class="el" href="pcoord_8c.html#af2769378c858102b26b988ffaee3354e">pcoord.c</a>
</li>
<li>pcoord_parse()
: <a class="el" href="group__coord.html#ga61bdcf26825ab8b41cfcf1a035800a75">coord.c</a>
, <a class="el" href="group__coord.html#ga61bdcf26825ab8b41cfcf1a035800a75">coord.h</a>
</li>
<li>pcoord_py()
: <a class="el" href="common_8h.html#a7ad67bc2decc59dc3c5ef23ed5645fff">common.h</a>
, <a class="el" href="pcoord_8c.html#a7ad67bc2decc59dc3c5ef23ed5645fff">pcoord.c</a>
</li>
<li>pcoord_py_get()
: <a class="el" href="common_8h.html#a0932e385c56f1fc1b721fe3f3a4b283d">common.h</a>
, <a class="el" href="pcoord_8c.html#a0932e385c56f1fc1b721fe3f3a4b283d">pcoord.c</a>
</li>
<li>pcoord_Type
: <a class="el" href="common_8h.html#a770ddde01fbc685d1e5d2790159142f2">common.h</a>
, <a class="el" href="pcoord_8c.html#a770ddde01fbc685d1e5d2790159142f2">pcoord.c</a>
</li>
<li>pedestrian_cmd_pedestrian_rocket()
: <a class="el" href="pedestrian_8c.html#a68e6d8c355a151e53b0a586ab086b057">pedestrian.c</a>
</li>
<li>pedestrian_data
: <a class="el" href="pedestrian_8c.html#a2e9c9651abfdf24280bbaeb58c99513f">pedestrian.c</a>
</li>
<li>pedestrian_draw_arrow()
: <a class="el" href="pedestrian_8c.html#ab25f7b6b19cd1b569d413d72109d1fad">pedestrian.c</a>
</li>
<li>pedestrian_draw_arrows()
: <a class="el" href="pedestrian_8c.html#a6252c53cced4156ca778f7c704946da9">pedestrian.c</a>
</li>
<li>pedestrian_graphics_postdraw()
: <a class="el" href="pedestrian_8c.html#a1de72c3aef0edfbdd6617170ce702cb4">pedestrian.c</a>
</li>
<li>pedestrian_graphics_resize()
: <a class="el" href="pedestrian_8c.html#a35cd89af28e42c5808893744f5df371a">pedestrian.c</a>
</li>
<li>pedestrian_log()
: <a class="el" href="pedestrian_8c.html#af293c20c18865c97304cdc38a8c9adab">pedestrian.c</a>
</li>
<li>pedestrian_navit()
: <a class="el" href="pedestrian_8c.html#a73c4e4baadd0f7bf2aa8da88292bf1e1">pedestrian.c</a>
</li>
<li>pedestrian_navit_init()
: <a class="el" href="pedestrian_8c.html#a8da9aad3ef0a3ecc8615987664fbd1f3">pedestrian.c</a>
</li>
<li>pedestrian_read_tilt()
: <a class="el" href="pedestrian_8c.html#a872887ad755b516c4c700bd2dfee3bde">pedestrian.c</a>
</li>
<li>pedestrian_rocket_idle()
: <a class="el" href="pedestrian_8c.html#a6bbce47dea7d18e9c64f0d01ff4a4902">pedestrian.c</a>
</li>
<li>pedestrian_setup_tilt()
: <a class="el" href="pedestrian_8c.html#a56cb180e5cbeac09fbfff845c15c2134">pedestrian.c</a>
</li>
<li>pedestrian_write_tilt()
: <a class="el" href="pedestrian_8c.html#ab1bc732e0439f4c6dae4210874a4ac31">pedestrian.c</a>
</li>
<li>pedestrian_write_tilt_timer()
: <a class="el" href="pedestrian_8c.html#a7d3572f3efa85dbda24049ab3f6aa944">pedestrian.c</a>
</li>
<li>PENALTY_OFFROAD
: <a class="el" href="traffic_8c.html#a174fc69c61a3f6b38f151d4da608f96c">traffic.c</a>
</li>
<li>PENALTY_POINT_MATCH
: <a class="el" href="traffic_8c.html#a38f9d6bc9d7344f35313c7fd572479da">traffic.c</a>
</li>
<li>PENALTY_SEGMENT_MATCH
: <a class="el" href="traffic_8c.html#a7acd6f3dbe5fcce035ee5ae44f7a304d">traffic.c</a>
</li>
<li>PFN_BthGetMode
: <a class="el" href="group__vehicle-wince.html#ga170eb041f9b180a25846384fb43f5326">vehicle_wince.c</a>
</li>
<li>PFN_BthSetMode
: <a class="el" href="group__vehicle-wince.html#ga8f123bfe3dcef9770d8e3abce18593a9">vehicle_wince.c</a>
</li>
<li>phase
: <a class="el" href="maptool_8c.html#accf3aec63bc20b3c99ab4881cb07c05b">maptool.c</a>
</li>
<li>phase1_coord_max
: <a class="el" href="maptool_2misc_8c.html#a7d9fa52024247b89b3a96a4cb6f1c4df">misc.c</a>
</li>
<li>phase1_map()
: <a class="el" href="maptool_8h.html#af614abb9152680903a876b5f8cc7480a">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#af614abb9152680903a876b5f8cc7480a">misc.c</a>
</li>
<li>phase34()
: <a class="el" href="maptool_2misc_8c.html#a4c0c980a13f1a0ca57dc0bcdb944a664">misc.c</a>
</li>
<li>phase34_process_file()
: <a class="el" href="maptool_2misc_8c.html#a94710339565517dc0ab71f348fafec91">misc.c</a>
</li>
<li>phase34_process_file_range()
: <a class="el" href="maptool_2misc_8c.html#a2f71c1ba13c9bd8ae3ea2a556f2b1587">misc.c</a>
</li>
<li>phase4()
: <a class="el" href="maptool_8h.html#a6e459d2bfddda6739ebf3af029da9c32">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#a6e459d2bfddda6739ebf3af029da9c32">misc.c</a>
</li>
<li>phase5()
: <a class="el" href="maptool_8h.html#aaef1c37df5d04310744771488dad81b9">maptool.h</a>
, <a class="el" href="maptool_2misc_8c.html#aaef1c37df5d04310744771488dad81b9">misc.c</a>
</li>
<li>phi1
: <a class="el" href="geodesic_8h.html#a019bb01bc561dea51918b776e9fa4535">geodesic.h</a>
</li>
<li>phi2
: <a class="el" href="geodesic_8h.html#a89061c1c874aa5624d8cb064b97e24c9">geodesic.h</a>
</li>
<li>phoneme_callback
: <a class="el" href="speak_8c.html#a03dc471f956fa22c474842433cbb1866">speak.c</a>
</li>
<li>phrase_route_calc()
: <a class="el" href="phrase_8c.html#af70bccf993ad02ef4e608fab5ccc43b5">phrase.c</a>
, <a class="el" href="phrase_8h.html#af70bccf993ad02ef4e608fab5ccc43b5">phrase.h</a>
</li>
<li>phrase_route_calculated()
: <a class="el" href="phrase_8c.html#ac63e7a7d330a30d49bf568a896442e3e">phrase.c</a>
, <a class="el" href="phrase_8h.html#ac63e7a7d330a30d49bf568a896442e3e">phrase.h</a>
</li>
<li>PI
: <a class="el" href="sunriset_8h.html#a598a3330b3c21701223ee0ca14316eca">sunriset.h</a>
</li>
<li>PIXEL_FORMAT
: <a class="el" href="graphics__opengl_8c.html#a0f466a358b5bf0e338fb6ee72f1e1011">graphics_opengl.c</a>
</li>
<li>pls
: <a class="el" href="group__plugins.html#gaf28872dd09ce8421446eb23f4be48438">plugin.c</a>
</li>
<li>PLUGIN_C
: <a class="el" href="plugin_8c.html#ae04899e8445b1557f0a83c1d2c3847bc">plugin.c</a>
</li>
<li>plugin_call_init()
: <a class="el" href="group__plugins.html#ga82f7feb9e3bb4cb8bf4de87e8113b28e">plugin.c</a>
, <a class="el" href="group__plugins.html#ga82f7feb9e3bb4cb8bf4de87e8113b28e">plugin.h</a>
</li>
<li>plugin_category
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532">plugin.h</a>
</li>
<li>PLUGIN_CATEGORY
: <a class="el" href="plugin_8h.html#a3b24ddfbf5b0453e71dface61c3ada39">plugin.h</a>
</li>
<li>plugin_category_event
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a68f4b65161acd7b1dbc58ad005b61b6b">plugin.h</a>
</li>
<li>plugin_category_font
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a3705add07c21ee50547080ec30645bfc">plugin.h</a>
</li>
<li>plugin_category_graphics
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a61064c70f60e5c2e88d1f177020b6df6">plugin.h</a>
</li>
<li>plugin_category_gui
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a81ded041a6b9958ce940135f5f803de0">plugin.h</a>
</li>
<li>plugin_category_last
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532abd2ef77b0ec920c3c4023771e5cfe176">plugin.h</a>
</li>
<li>plugin_category_map
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532adc2da9839a5c145d30dfd5f638f79cbb">plugin.h</a>
</li>
<li>plugin_category_osd
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a2bf6d493a2fcd966d5a2effb8a56cd35">plugin.h</a>
</li>
<li>plugin_category_speech
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a370d1a4d8618f8f20bcac91ac11f4e27">plugin.h</a>
</li>
<li>plugin_category_traffic
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a170df75692203b64071a8aee91920e58">plugin.h</a>
</li>
<li>plugin_category_vehicle
: <a class="el" href="plugin_8h.html#aaf2fec10fd7066df587b216658491532a417af489b0bc116cc2e9c8494f484b09">plugin.h</a>
</li>
<li>plugin_deinit()
: <a class="el" href="osso_8c.html#a8a02dc8581cd4267536b00829347230d">osso.c</a>
</li>
<li>PLUGIN_DESCRIPTION
: <a class="el" href="browserplugin_8c.html#a02783773d3c73e1e9f63c1181d39e93a">browserplugin.c</a>
</li>
<li>plugin_destroy()
: <a class="el" href="group__plugins.html#gafc5b0a4338dad8856b34b29895a6e737">plugin.c</a>
, <a class="el" href="group__plugins.html#gafc5b0a4338dad8856b34b29895a6e737">plugin.h</a>
</li>
<li>PLUGIN_FUNC1
: <a class="el" href="plugin_8h.html#a10d46f9607007f0f1618352a0952ac88">plugin.h</a>
</li>
<li>PLUGIN_FUNC3
: <a class="el" href="plugin_8h.html#a8912cbf255b3c615a08c9c6283f33d66">plugin.h</a>
</li>
<li>PLUGIN_FUNC4
: <a class="el" href="plugin_8h.html#aa295519398a5f294d261a152ee757718">plugin.h</a>
</li>
<li>plugin_get_active()
: <a class="el" href="group__plugins.html#gabed5f2c35cf99b78d26116f415394b00">plugin.c</a>
, <a class="el" href="group__plugins.html#gabed5f2c35cf99b78d26116f415394b00">plugin.h</a>
</li>
<li>plugin_get_category()
: <a class="el" href="group__plugins.html#ga701f281e06dd1782a7cb86301b82128a">plugin.c</a>
, <a class="el" href="group__plugins.html#ga701f281e06dd1782a7cb86301b82128a">plugin.h</a>
</li>
<li>plugin_get_name()
: <a class="el" href="group__plugins.html#ga24464c75a8865fd8cd94ed9d021ab48e">plugin.c</a>
, <a class="el" href="group__plugins.html#ga24464c75a8865fd8cd94ed9d021ab48e">plugin.h</a>
</li>
<li>plugin_init
: <a class="el" href="plugin_8h.html#a19f69f75502fe229ad256d5f485c352e">plugin.h</a>
, <a class="el" href="osso_8c.html#ga1eaae939034896b436dffbf5e93c0da1">osso.c</a>
, <a class="el" href="binding__dbus_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_dbus.c</a>
, <a class="el" href="binding__python_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_python.c</a>
, <a class="el" href="binding__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">binding_win32.c</a>
, <a class="el" href="font__freetype_8c.html#a1eaae939034896b436dffbf5e93c0da1">font_freetype.c</a>
, <a class="el" href="graphics__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_android.c</a>
, <a class="el" href="graphics__cocoa_8m.html#a1eaae939034896b436dffbf5e93c0da1">graphics_cocoa.m</a>
, <a class="el" href="graphics__egl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_egl.c</a>
, <a class="el" href="graphics__gd_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_gd.c</a>
, <a class="el" href="graphics__gtk__drawing__area_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_gtk_drawing_area.c</a>
, <a class="el" href="graphics__null_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_null.c</a>
, <a class="el" href="graphics__opengl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_opengl.c</a>
, <a class="el" href="graphics__qt5_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">graphics_qt5.cpp</a>
, <a class="el" href="graphics__qt__qpainter_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">graphics_qt_qpainter.cpp</a>
, <a class="el" href="graphics__sdl_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_sdl.c</a>
, <a class="el" href="graphics__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">graphics_win32.c</a>
, <a class="el" href="gui__gtk__window_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_gtk_window.c</a>
, <a class="el" href="gui__internal_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_internal.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">gui_internal_priv.h</a>
, <a class="el" href="gui__qml_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">gui_qml.cpp</a>
, <a class="el" href="gui__qt5__qml_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">gui_qt5_qml.cpp</a>
, <a class="el" href="gui__win32_8c.html#a1eaae939034896b436dffbf5e93c0da1">gui_win32.c</a>
, <a class="el" href="binfile_8c.html#a1eaae939034896b436dffbf5e93c0da1">binfile.c</a>
, <a class="el" href="csv_8c.html#a1eaae939034896b436dffbf5e93c0da1">csv.c</a>
, <a class="el" href="filter_8c.html#a1eaae939034896b436dffbf5e93c0da1">filter.c</a>
, <a class="el" href="garmin_8c.html#a1eaae939034896b436dffbf5e93c0da1">garmin.c</a>
, <a class="el" href="garmin__img_8c.html#a1eaae939034896b436dffbf5e93c0da1">garmin_img.c</a>
, <a class="el" href="map_2mg_2map_8c.html#a1eaae939034896b436dffbf5e93c0da1">map.c</a>
, <a class="el" href="shapefile_8c.html#a1eaae939034896b436dffbf5e93c0da1">shapefile.c</a>
, <a class="el" href="textfile_8c.html#a1eaae939034896b436dffbf5e93c0da1">textfile.c</a>
, <a class="el" href="osd__core_8c.html#a1eaae939034896b436dffbf5e93c0da1">osd_core.c</a>
, <a class="el" href="j1850_8c.html#a1eaae939034896b436dffbf5e93c0da1">j1850.c</a>
, <a class="el" href="pedestrian_8c.html#a1eaae939034896b436dffbf5e93c0da1">pedestrian.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">plugin.h</a>
, <a class="el" href="speech__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_android.c</a>
, <a class="el" href="speech__cmdline_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_cmdline.c</a>
, <a class="el" href="speech__dbus_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_dbus.c</a>
, <a class="el" href="speak_8c.html#a1eaae939034896b436dffbf5e93c0da1">speak.c</a>
, <a class="el" href="speech__iphone_8m.html#a1eaae939034896b436dffbf5e93c0da1">speech_iphone.m</a>
, <a class="el" href="qt5__espeak_8cpp.html#a1eaae939034896b436dffbf5e93c0da1">qt5_espeak.cpp</a>
, <a class="el" href="speech__speech__dispatcher_8c.html#a1eaae939034896b436dffbf5e93c0da1">speech_speech_dispatcher.c</a>
, <a class="el" href="traffic__dummy_8c.html#a1eaae939034896b436dffbf5e93c0da1">traffic_dummy.c</a>
, <a class="el" href="traffic__null_8c.html#a1eaae939034896b436dffbf5e93c0da1">traffic_null.c</a>
, <a class="el" href="traffic__traff__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">traffic_traff_android.c</a>
, <a class="el" href="vehicle__android_8c.html#a1eaae939034896b436dffbf5e93c0da1">vehicle_android.c</a>
, <a class="el" href="vehicle__demo_8c.html#a1eaae939034896b436dffbf5e93c0da1">vehicle_demo.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_file.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_pipe.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_serial.c</a>
, <a class="el" href="group__vehicle-file.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_socket.c</a>
, <a class="el" href="group__vehicle-gpsd.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gpsd.c</a>
, <a class="el" href="group__vehicle-gpsd-dbus.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gpsd_dbus.c</a>
, <a class="el" href="group__vehicle-gypsy.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_gypsy.c</a>
, <a class="el" href="group__vehicle-iphone.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_iphone.c</a>
, <a class="el" href="group__vehicle-null.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_null.c</a>
, <a class="el" href="group__vehicle-qt5.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_qt5.cpp</a>
, <a class="el" href="group__vehicle-webos.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_webos.c</a>
, <a class="el" href="group__vehicle-wince.html#ga1eaae939034896b436dffbf5e93c0da1">vehicle_wince.c</a>
</li>
<li>plugin_load()
: <a class="el" href="group__plugins.html#ga13c8e90a535267c5e3204797595b9ed5">plugin.c</a>
, <a class="el" href="group__plugins.html#ga13c8e90a535267c5e3204797595b9ed5">plugin.h</a>
</li>
<li>plugin_module_cat
: <a class="el" href="plugin_8h.html#ad888c2599192a99d7310178c396cec6f">plugin.h</a>
</li>
<li>plugin_module_cat2
: <a class="el" href="plugin_8h.html#af83b45e2ac34539b67742516b4d16546">plugin.h</a>
</li>
<li>plugin_module_cat3
: <a class="el" href="plugin_8h.html#a0f3715b35225c25b670bb9d763af0751">plugin.h</a>
</li>
<li>PLUGIN_NAME
: <a class="el" href="browserplugin_8c.html#a0acf7475326cdcd31d690b72033de33a">browserplugin.c</a>
</li>
<li>plugin_new()
: <a class="el" href="group__plugins.html#ga4b58f7c17849d07d37964c136e731008">plugin.c</a>
, <a class="el" href="group__plugins.html#ga4b58f7c17849d07d37964c136e731008">plugin.h</a>
</li>
<li>plugin_new_from_path()
: <a class="el" href="group__plugins.html#gad94588a6c78dc7e7add1d29f60a8e192">plugin.c</a>
</li>
<li>PLUGIN_PROTO
: <a class="el" href="plugin_8h.html#a66000197dde75ea681645659dec1f3a7">plugin.h</a>
</li>
<li>plugin_set_active()
: <a class="el" href="group__plugins.html#ga9adccb89a7f4ad7bd46ad22b14fa0588">plugin.c</a>
, <a class="el" href="group__plugins.html#ga9adccb89a7f4ad7bd46ad22b14fa0588">plugin.h</a>
</li>
<li>plugin_set_lazy()
: <a class="el" href="group__plugins.html#gabe372cf2cc6efa95f3e3222e8bd5acd9">plugin.c</a>
, <a class="el" href="group__plugins.html#gabe372cf2cc6efa95f3e3222e8bd5acd9">plugin.h</a>
</li>
<li>plugin_set_ondemand()
: <a class="el" href="group__plugins.html#gaa074a3ab18b1fc6ff6ce18bd5f956388">plugin.c</a>
</li>
<li>plugin_unload()
: <a class="el" href="group__plugins.html#ga9e1aeae5081d2538162ec8154adc2c7d">plugin.h</a>
, <a class="el" href="group__plugins.html#ga9e1aeae5081d2538162ec8154adc2c7d">plugin.c</a>
</li>
<li>PLUGIN_VERSION
: <a class="el" href="browserplugin_8c.html#afccad64028fb6c9ac2923be268a89efb">browserplugin.c</a>
</li>
<li>plugins
: <a class="el" href="maptool_8c.html#a2b5b9d3eb40253fc279afc80f504c3a5">maptool.c</a>
</li>
<li>plugins_destroy()
: <a class="el" href="group__plugins.html#gafa2ed379c854b20ec13846d3abf36a73">plugin.h</a>
, <a class="el" href="group__plugins.html#gafa2ed379c854b20ec13846d3abf36a73">plugin.c</a>
</li>
<li>plugins_init()
: <a class="el" href="group__plugins.html#ga5c62f9df06a33d24aac62672053e0a73">plugin.c</a>
, <a class="el" href="group__plugins.html#ga5c62f9df06a33d24aac62672053e0a73">plugin.h</a>
</li>
<li>plugins_new()
: <a class="el" href="group__plugins.html#gadf79082b8c3560d4058b0c64fc72981f">plugin.h</a>
, <a class="el" href="group__plugins.html#gadf79082b8c3560d4058b0c64fc72981f">plugin.c</a>
</li>
<li>pngdecode()
: <a class="el" href="graphics__win32_8c.html#ac69f474d11a94ac72e085dd3faed5f26">graphics_win32.c</a>
</li>
<li>pngrender()
: <a class="el" href="graphics__win32_8c.html#a3d8381aa8558377e18e472efd627c639">graphics_win32.c</a>
</li>
<li>pngscale()
: <a class="el" href="graphics__win32_8c.html#ab39620e12b996c343aa7ab32d2f7f6e2">graphics_win32.c</a>
</li>
<li>poi_index
: <a class="el" href="garmin__img_8c.html#a1723985567b21e5cfb3e4488659d0379">garmin_img.c</a>
</li>
<li>poi_properties
: <a class="el" href="garmin__img_8c.html#ab5e55c8484d99c1cc55dfbd59902b09b">garmin_img.c</a>
</li>
<li>poi_search_action()
: <a class="el" href="gui__gtk__action_8c.html#aa28a868cd813e5bd82cc9cccb8befc63">gui_gtk_action.c</a>
</li>
<li>poi_types
: <a class="el" href="garmin__img_8c.html#aed123f6c0d2d9a4882ab433978dcfe7a">garmin_img.c</a>
</li>
<li>point_attr_get()
: <a class="el" href="garmin_8c.html#a5407866e83dd835698f6cffb4d0ee2ec">garmin.c</a>
</li>
<li>point_coord_get()
: <a class="el" href="garmin_8c.html#ae3e08aa7a5c51b543f9e79e3fc7b654a">garmin.c</a>
</li>
<li>point_get_from_message()
: <a class="el" href="binding__dbus_8c.html#a01b5a43a3b03238fd9bebe5ee7437bfb">binding_dbus.c</a>
</li>
<li>PointOfInterest
: <a class="el" href="ngqpoint_8h.html#ab85b18a34fce0dfc4f1c63142bc889a4aa4ee8b7b703a13592dc2bb0b06cdfa02">ngqpoint.h</a>
</li>
<li>poly_attr_get()
: <a class="el" href="poly_8c.html#acce886d92074efcc72cc79532f2b4833">poly.c</a>
</li>
<li>poly_attr_rewind()
: <a class="el" href="poly_8c.html#a1a455769ed9574caf9e60eb260cef988">poly.c</a>
</li>
<li>poly_coord_get()
: <a class="el" href="garmin_8c.html#a2ed722b56be77b02d23146619bae4903">garmin.c</a>
, <a class="el" href="poly_8c.html#a2ed722b56be77b02d23146619bae4903">poly.c</a>
</li>
<li>poly_coord_rewind()
: <a class="el" href="poly_8c.html#af6a1814da36d0d0d28f75d8b408ac9e8">poly.c</a>
</li>
<li>poly_get()
: <a class="el" href="mg_8h.html#a0b4f6aed0b770731b731e07828f75a2a">mg.h</a>
, <a class="el" href="poly_8c.html#a0b4f6aed0b770731b731e07828f75a2a">poly.c</a>
</li>
<li>poly_get_byid()
: <a class="el" href="mg_8h.html#a3fe4e6633924780a3ae7a774732bfcbe">mg.h</a>
, <a class="el" href="poly_8c.html#a3fe4e6633924780a3ae7a774732bfcbe">poly.c</a>
</li>
<li>poly_get_data()
: <a class="el" href="poly_8c.html#a5778a87be02abab0147eefc9bd2a7d8a">poly.c</a>
</li>
<li>poly_intersection()
: <a class="el" href="graphics_8c.html#aae5b20946f5f500c7003a981618d6702">graphics.c</a>
</li>
<li>poly_meth
: <a class="el" href="poly_8c.html#a17cc361260d2e6cc789208b37356a5ad">poly.c</a>
</li>
<li>poly_ranges
: <a class="el" href="map_2mg_2map_8c.html#a5d8f79d03208a71a3b542fb445d263e0">map.c</a>
</li>
<li>polygon_new()
: <a class="el" href="layout_8c.html#a5e46226d681ad8ccb360c2f7907ff1de">layout.c</a>
, <a class="el" href="layout_8h.html#a5e46226d681ad8ccb360c2f7907ff1de">layout.h</a>
</li>
<li>polyline_new()
: <a class="el" href="layout_8h.html#ad2ff1b8bedb0da0bdc4dadc6cf611a19">layout.h</a>
, <a class="el" href="layout_8c.html#ad2ff1b8bedb0da0bdc4dadc6cf611a19">layout.c</a>
</li>
<li>pop_tile()
: <a class="el" href="binfile_8c.html#a2f4d7453ee35d0192c364fc80f71c0d8">binfile.c</a>
</li>
<li>popup()
: <a class="el" href="popup_8c.html#a3d7a909a7f21ca807a96913fb19483db">popup.c</a>
, <a class="el" href="popup_8h.html#a3d7a909a7f21ca807a96913fb19483db">popup.h</a>
</li>
<li>popup_activate()
: <a class="el" href="gui__win32_8c.html#a9755eb439692a97c8b68721020890b40">gui_win32.c</a>
, <a class="el" href="gui__gtk__action_8c.html#a9755eb439692a97c8b68721020890b40">gui_gtk_action.c</a>
</li>
<li>popup_deactivate()
: <a class="el" href="gui__gtk__action_8c.html#a260d1cbd2bf134223b0472debdf155f5">gui_gtk_action.c</a>
, <a class="el" href="gui__win32_8c.html#ac28919c7982ea78f3f6e8cd33c8c2451">gui_win32.c</a>
</li>
<li>popup_display()
: <a class="el" href="popup_8c.html#a31a02701201e0dfe6c7b85331268a7d3">popup.c</a>
</li>
<li>popup_item_dump()
: <a class="el" href="popup_8c.html#ad3f43c5450a12a4c15090a4c66689ebf">popup.c</a>
</li>
<li>POPUP_MENU_OFFSET
: <a class="el" href="graphics__win32_8h.html#aa619410a3ecf21cdb67bde8bc30bdae3">graphics_win32.h</a>
</li>
<li>popup_printf
: <a class="el" href="popup_8c.html#a5f0271a8fabf0861f4cea6d175947fd5">popup.c</a>
</li>
<li>popup_printf_cb()
: <a class="el" href="popup_8c.html#a41ab898f955cf61922c28a3d6d00979c">popup.c</a>
</li>
<li>popup_set_bookmark()
: <a class="el" href="popup_8c.html#a1a2187c0bd9ab9a2216bc3e3ab0fbcb6">popup.c</a>
</li>
<li>popup_set_destination()
: <a class="el" href="popup_8c.html#aa92e1ddd0959ca989f2844b3bd64f4e7">popup.c</a>
</li>
<li>popup_set_position()
: <a class="el" href="popup_8c.html#a26f8fb90edd10daefc29af18d04b9cf1">popup.c</a>
</li>
<li>popup_set_visitbefore()
: <a class="el" href="popup_8c.html#a291bb98e55f053436dd1322b56ac0e76">popup.c</a>
, <a class="el" href="popup_8h.html#a291bb98e55f053436dd1322b56ac0e76">popup.h</a>
</li>
<li>popup_show_attr_val()
: <a class="el" href="popup_8c.html#a57e39817b9b798ba9e11cda23e6a6931">popup.c</a>
</li>
<li>popup_show_attrs()
: <a class="el" href="popup_8c.html#a2295e0d8a9a9aa33078db4aaef60dc6a">popup.c</a>
</li>
<li>popup_show_item()
: <a class="el" href="popup_8c.html#a210ae1cb75af3dc657ea19dcb06f7541">popup.c</a>
</li>
<li>popup_show_visitbefore()
: <a class="el" href="popup_8c.html#a6558eabbba6c0eb7eb298c7bf416fcd7">popup.c</a>
</li>
<li>popup_traffic_distortion()
: <a class="el" href="popup_8c.html#ad0252613bfa45161e30eeec2f53f1737">popup.c</a>
</li>
<li>popup_traffic_distortion_blocked()
: <a class="el" href="popup_8c.html#aba44d0589f40190570fba467ea27dce4">popup.c</a>
</li>
<li>popup_traffic_distortion_delay()
: <a class="el" href="popup_8c.html#a85555d6775dc3150b383398703e709b8">popup.c</a>
</li>
<li>popup_traffic_distortion_speed()
: <a class="el" href="popup_8c.html#a33bf8cb30b4cfb8441709d128ec9eda5">popup.c</a>
</li>
<li>Position
: <a class="el" href="ngqpoint_8h.html#ab85b18a34fce0dfc4f1c63142bc889a4a0ca2444163688098d8e674e31fb11397">ngqpoint.h</a>
</li>
<li>possible_keys_incremental_search
: <a class="el" href="gui__internal__search_8c.html#ae18bf060ccae932e6e5db6de6665e922">gui_internal_search.c</a>
</li>
<li>POST_SHIFT
: <a class="el" href="transform_8c.html#a142f183c856d187544d5beb8db7b564f">transform.c</a>
</li>
<li>postal_match()
: <a class="el" href="search_8c.html#a21740eadbd56344d704ee6d93c415708">search.c</a>
</li>
<li>postal_str()
: <a class="el" href="gui__internal__search_8c.html#a55e6a400a09eb5a026bfa47d433450c7">gui_internal_search.c</a>
, <a class="el" href="android_8c.html#a55e6a400a09eb5a026bfa47d433450c7">android.c</a>
</li>
<li>print
: <a class="el" href="osm__o5m_8c.html#ae87c9065eb23621da3b62c32c1d11b31">osm_o5m.c</a>
</li>
<li>print_array()
: <a class="el" href="cJSON_8c.html#af1dcc8f2114d998599b506cd5e0645a1">cJSON.c</a>
</li>
<li>print_escaped()
: <a class="el" href="osm__o5m_8c.html#ada1481925f4f72212ddd41eaba684ad3">osm_o5m.c</a>
</li>
<li>print_header()
: <a class="el" href="gentypes_8c.html#a983e12ff365733e2dca1e1b3c02d7b53">gentypes.c</a>
</li>
<li>print_number()
: <a class="el" href="cJSON_8c.html#a4fc475762462c174842e2940e0ac8d1f">cJSON.c</a>
</li>
<li>print_object()
: <a class="el" href="cJSON_8c.html#a10a65e36abb6735ff0ef961cd29265f8">cJSON.c</a>
</li>
<li>print_string()
: <a class="el" href="cJSON_8c.html#ab58ff3cd83c7831086b492600d13de0b">cJSON.c</a>
</li>
<li>print_string_ptr()
: <a class="el" href="cJSON_8c.html#a2e747d7e6ffe6f7e995fb90a96188bb4">cJSON.c</a>
</li>
<li>print_usage()
: <a class="el" href="start__real_8c.html#a0edd37fe65f6a8b1e530370f6e6402f3">start_real.c</a>
, <a class="el" href="tell__navit_8c.html#aa1187b70998f73cdb598833d6afaa30a">tell_navit.c</a>
</li>
<li>print_value()
: <a class="el" href="cJSON_8c.html#a402d2d8f268c8cc8e6654063adf1807d">cJSON.c</a>
</li>
<li>printIdentifier()
: <a class="el" href="browserplugin_8c.html#a9e53846f8ab22cacd00922a4f8a2dc7e">browserplugin.c</a>
</li>
<li>process_associated_street_member()
: <a class="el" href="osm_8c.html#a672943ead98d5865d019e8344976aeb9">osm.c</a>
</li>
<li>process_associated_streets()
: <a class="el" href="maptool_8h.html#a7202c6f323289fda53d87bc84061d2a2">maptool.h</a>
, <a class="el" href="osm_8c.html#a7202c6f323289fda53d87bc84061d2a2">osm.c</a>
</li>
<li>process_associated_streets_setup()
: <a class="el" href="osm_8c.html#a250b01a8963f4ca0127a95867a05f733">osm.c</a>
</li>
<li>process_binfile()
: <a class="el" href="maptool_2misc_8c.html#a68bc069e595445eaa9e7c1b3e865b2a1">misc.c</a>
, <a class="el" href="maptool_8h.html#a68bc069e595445eaa9e7c1b3e865b2a1">maptool.h</a>
</li>
<li>process_boundaries()
: <a class="el" href="maptool_8h.html#a233753bae1c51636dc514023ccced00b">maptool.h</a>
, <a class="el" href="boundaries_8c.html#a233753bae1c51636dc514023ccced00b">boundaries.c</a>
</li>
<li>process_boundaries_finish()
: <a class="el" href="boundaries_8c.html#a59ef7544d54f6bd5d7b4d5829b073e81">boundaries.c</a>
</li>
<li>process_boundaries_insert()
: <a class="el" href="boundaries_8c.html#afba16ca37193c6a2fb87ac3fc0d6816c">boundaries.c</a>
</li>
<li>process_boundaries_member()
: <a class="el" href="boundaries_8c.html#afeeba2e81f26a0eae1b860cc13295bae">boundaries.c</a>
</li>
<li>process_boundaries_setup()
: <a class="el" href="boundaries_8c.html#a921eb971be65d0dd53fce43af5cf1be5">boundaries.c</a>
</li>
<li>process_coastlines()
: <a class="el" href="maptool_8h.html#a6d0089b6f5965db6c41ecd7e131b3a67">maptool.h</a>
, <a class="el" href="coastline_8c.html#a6d0089b6f5965db6c41ecd7e131b3a67">coastline.c</a>
</li>
<li>process_dense()
: <a class="el" href="osm__protobuf_8c.html#a2b65c9efea2e62430b5864e518b1c302">osm_protobuf.c</a>
</li>
<li>process_fields()
: <a class="el" href="shapefile_8c.html#a9c0d4c3b7009a0586386a1f984d151f4">shapefile.c</a>
</li>
<li>process_house_number_interpolation_member()
: <a class="el" href="osm_8c.html#ab84786451c446b715e09609861d452b6">osm.c</a>
</li>
<li>process_house_number_interpolations()
: <a class="el" href="maptool_8h.html#a9d91b709ccd9b8b7a220046966c9ebbd">maptool.h</a>
, <a class="el" href="osm_8c.html#a9d91b709ccd9b8b7a220046966c9ebbd">osm.c</a>
</li>
<li>process_house_number_interpolations_setup()
: <a class="el" href="osm_8c.html#aa3f820c336ce3c6775f4f5b5430a2f20">osm.c</a>
</li>
<li>PROCESS_MESSAGES_NO_DUMP_STORE
: <a class="el" href="traffic_8c.html#accb3eb8cd182e0c566dd2f68a88aeefe">traffic.c</a>
</li>
<li>PROCESS_MESSAGES_PURGE_EXPIRED
: <a class="el" href="traffic_8c.html#a63a03cf75eb29bd21e530b2905aa89c6">traffic.c</a>
</li>
<li>process_multipolygons()
: <a class="el" href="osm_8c.html#a465f04a52855b018d626356754e2ed7f">osm.c</a>
, <a class="el" href="maptool_8h.html#a465f04a52855b018d626356754e2ed7f">maptool.h</a>
</li>
<li>process_multipolygons_find_loop()
: <a class="el" href="osm_8c.html#a26a451e8fb759bf5ff60501ab674e766">osm.c</a>
</li>
<li>process_multipolygons_find_loops()
: <a class="el" href="maptool_8h.html#a6e327c96c6f2e2bf2599fe6053b07dae">maptool.h</a>
, <a class="el" href="osm_8c.html#a6e327c96c6f2e2bf2599fe6053b07dae">osm.c</a>
</li>
<li>process_multipolygons_find_match()
: <a class="el" href="osm_8c.html#ab516a151116393c2cca54a1f8b012393">osm.c</a>
</li>
<li>process_multipolygons_finish()
: <a class="el" href="osm_8c.html#a9b4ab02256442cd8eea8b908a4cbafef">osm.c</a>
</li>
<li>process_multipolygons_loop_count()
: <a class="el" href="maptool_8h.html#a3d7535f8096229a1bb355ad7402499c5">maptool.h</a>
, <a class="el" href="osm_8c.html#a3d7535f8096229a1bb355ad7402499c5">osm.c</a>
</li>
<li>process_multipolygons_loop_dump()
: <a class="el" href="maptool_8h.html#a7a9f920e28957bca0778c2a79c17b85e">maptool.h</a>
, <a class="el" href="osm_8c.html#a7a9f920e28957bca0778c2a79c17b85e">osm.c</a>
</li>
<li>process_multipolygons_member()
: <a class="el" href="osm_8c.html#abdb08c61db1b7f5a45199dac9c83495f">osm.c</a>
</li>
<li>process_multipolygons_setup()
: <a class="el" href="osm_8c.html#afd05ad0ece13c84b1533b24d8c4fa613">osm.c</a>
</li>
<li>process_multipolygons_setup_one()
: <a class="el" href="osm_8c.html#af5343664000da23c0890365caae416f1">osm.c</a>
</li>
<li>process_multipolygons_setup_worker()
: <a class="el" href="osm_8c.html#a0716c7cf2905eb6514dce355b1ee29d2">osm.c</a>
</li>
<li>process_osmdata()
: <a class="el" href="osm__protobuf_8c.html#a9c91141f3fa09ea725ff8d234289a3f9">osm_protobuf.c</a>
</li>
<li>process_osmheader()
: <a class="el" href="osm__protobuf_8c.html#a646c06f8402032029b0f46b49769e494">osm_protobuf.c</a>
</li>
<li>process_relation()
: <a class="el" href="osm__protobuf_8c.html#a48c6e0de74a8a25d89bb0e35901f7445">osm_protobuf.c</a>
</li>
<li>process_slice()
: <a class="el" href="maptool_2misc_8c.html#acfbdcfa0633f0742dff80d0f98eaddbd">misc.c</a>
</li>
<li>process_tag()
: <a class="el" href="osm__protobuf_8c.html#abd261421fb0139c2522c6adda9445a0d">osm_protobuf.c</a>
</li>
<li>process_triangles()
: <a class="el" href="graphics__egl_8c.html#af1a67ef8e88c3688f32a4fc7de7f7efd">graphics_egl.c</a>
</li>
<li>process_turn_restrictions()
: <a class="el" href="osm_8c.html#a28d8c95e9b24f364eaf3e0918cbd620a">osm.c</a>
, <a class="el" href="maptool_8h.html#a28d8c95e9b24f364eaf3e0918cbd620a">maptool.h</a>
</li>
<li>process_turn_restrictions_dump_coord()
: <a class="el" href="osm_8c.html#af92cd6f414b118cd441edc0b02b5642d">osm.c</a>
</li>
<li>process_turn_restrictions_finish()
: <a class="el" href="osm_8c.html#ae65247890e81595e3d7f30d3287224e1">osm.c</a>
</li>
<li>process_turn_restrictions_fromto()
: <a class="el" href="osm_8c.html#aa955c39e1b51c60cc22b3dd3cdf8f16b">osm.c</a>
</li>
<li>process_turn_restrictions_member()
: <a class="el" href="osm_8c.html#abe54ab0e70bb350e9429ac5f4377c39d">osm.c</a>
</li>
<li>process_turn_restrictions_old()
: <a class="el" href="maptool_8h.html#ac146cefd76197cb3e7ac9e6e549e8bdc">maptool.h</a>
</li>
<li>process_turn_restrictions_setup()
: <a class="el" href="osm_8c.html#a23734d6ed4806decc80e1a1e0c188f96">osm.c</a>
</li>
<li>process_turn_restrictions_setup_one()
: <a class="el" href="osm_8c.html#a0c228c5d781eabcd4a959efa95625972">osm.c</a>
</li>
<li>process_turn_restrictions_setup_worker()
: <a class="el" href="osm_8c.html#a1baf1d127cf24d8ee5aa2634747e3037">osm.c</a>
</li>
<li>process_way()
: <a class="el" href="osm__protobuf_8c.html#a908239a7edafe07a82215dad3d5849d6">osm_protobuf.c</a>
</li>
<li>process_way2poi()
: <a class="el" href="maptool_8h.html#ab2e84ec5b3a40013eaff1a50f8bf67a6">maptool.h</a>
, <a class="el" href="osm_8c.html#ab2e84ec5b3a40013eaff1a50f8bf67a6">osm.c</a>
</li>
<li>processed_nodes
: <a class="el" href="maptool_8c.html#ae6055f00942b80bb96addf39b1f28c88">maptool.c</a>
, <a class="el" href="maptool_8h.html#ae6055f00942b80bb96addf39b1f28c88">maptool.h</a>
</li>
<li>processed_nodes_out
: <a class="el" href="maptool_8c.html#acd0e44a0367677e71c438f5d26899225">maptool.c</a>
, <a class="el" href="maptool_8h.html#acd0e44a0367677e71c438f5d26899225">maptool.h</a>
</li>
<li>processed_relations
: <a class="el" href="maptool_8h.html#a38d375c2d3b60cdb921d11bb4de929d6">maptool.h</a>
, <a class="el" href="maptool_8c.html#a38d375c2d3b60cdb921d11bb4de929d6">maptool.c</a>
</li>
<li>processed_tiles
: <a class="el" href="maptool_8h.html#af56803ae7b05d59108fe2ca0288c8a25">maptool.h</a>
, <a class="el" href="maptool_8c.html#af56803ae7b05d59108fe2ca0288c8a25">maptool.c</a>
</li>
<li>processed_ways
: <a class="el" href="maptool_8h.html#a52fab99336a5b9134dd8edf8e0e8cb12">maptool.h</a>
, <a class="el" href="maptool_8c.html#a52fab99336a5b9134dd8edf8e0e8cb12">maptool.c</a>
</li>
<li>ProcessNormalKeys()
: <a class="el" href="graphics__opengl_8c.html#ab61ac9e8576ae36059e7d035ddec3056">graphics_opengl.c</a>
</li>
<li>ProcessSpecialKeys()
: <a class="el" href="graphics__opengl_8c.html#ad5a97b880b7d917061395066ef5b3b64">graphics_opengl.c</a>
</li>
<li>profile
: <a class="el" href="profile_8h.html#a7135a9f7aaa8602a6e2cc1d9ab3c1573">profile.h</a>
</li>
<li>PROFILE_LEVEL_MAX
: <a class="el" href="profile_8c.html#afa3d4c231a1b238d81d2966b340db5b3">profile.c</a>
</li>
<li>profile_module
: <a class="el" href="profile_8h.html#a51a854e236ea7856b8ffcf8b20a7d7cc">profile.h</a>
</li>
<li>profile_option_destroy()
: <a class="el" href="profile__option_8c.html#a4e678dd69081170c1cc94c45ce4a3a9f">profile_option.c</a>
</li>
<li>profile_option_func
: <a class="el" href="profile__option_8c.html#a39059376b14589da5f97c9e60a8b2c3b">profile_option.c</a>
</li>
<li>profile_option_new()
: <a class="el" href="profile__option_8c.html#afcb4663abd91dc9e70edc8b86aa14399">profile_option.c</a>
</li>
<li>profile_str1
: <a class="el" href="profile_8h.html#a5ca09e02025f492aae2019ffccabb0b6">profile.h</a>
</li>
<li>profile_str2
: <a class="el" href="profile_8h.html#ae7d0205eae61719c157056eda01d9bf7">profile.h</a>
</li>
<li>profile_timer()
: <a class="el" href="profile_8c.html#aa76650cead3782aa2905f4a573598d6a">profile.c</a>
, <a class="el" href="profile_8h.html#aa76650cead3782aa2905f4a573598d6a">profile.h</a>
</li>
<li>PROG
: <a class="el" href="gpx2navit__txt_8h.html#a60a12235056da679c8976cec1faa66e2">gpx2navit_txt.h</a>
</li>
<li>progress_memory()
: <a class="el" href="maptool_8c.html#a7476defba2c89bd0b93a38201df2151b">maptool.c</a>
</li>
<li>progress_time()
: <a class="el" href="maptool_8c.html#ad3bd185beace3592c3db41326c5c8af3">maptool.c</a>
</li>
<li>projection
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1">projection.h</a>
</li>
<li>projection_from_name()
: <a class="el" href="projection_8c.html#a3978616304a97908438c12bb16106a21">projection.c</a>
, <a class="el" href="projection_8h.html#ab88b4aae7ee305476bf3ac7faebe8019">projection.h</a>
</li>
<li>projection_garmin
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a99f0a3921f9fc25126cb6de94f21832b">projection.h</a>
</li>
<li>projection_mg
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a9cbc062a5d78cd25a4ffbf49619f0064">projection.h</a>
</li>
<li>projection_names
: <a class="el" href="projection_8c.html#a17bcac5e1747423be4bb87dcca5efacd">projection.c</a>
</li>
<li>projection_none
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a02133eae2b9a5a58ec1bbf3072cdac0e">projection.h</a>
</li>
<li>projection_screen
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1a7fac95e85079a3f4fec97458ce877db0">projection.h</a>
</li>
<li>projection_to_name()
: <a class="el" href="projection_8h.html#ab6bea86ce7e97569e9eedba942a880a2">projection.h</a>
, <a class="el" href="projection_8c.html#ab6bea86ce7e97569e9eedba942a880a2">projection.c</a>
</li>
<li>projection_utm
: <a class="el" href="projection_8h.html#a380c9c985eef434d23f9a7b95a52cbc1aa9a76e9e7fd7f6f52f907149c2bfef3e">projection.h</a>
</li>
<li>push_modified_item()
: <a class="el" href="binfile_8c.html#a558ac79a2d15404ad81c41ee91710e1a">binfile.c</a>
</li>
<li>push_tile()
: <a class="el" href="binfile_8c.html#aa4ea5396c93882e4bc1354232b1cea72">binfile.c</a>
</li>
<li>push_zipfile_tile()
: <a class="el" href="binfile_8c.html#ab58a75ae4d6374a93b531d0bb8b9546a">binfile.c</a>
</li>
<li>push_zipfile_tile_do()
: <a class="el" href="binfile_8c.html#a0d3b2dd9ccb6ef61780f07c0e8400cdf">binfile.c</a>
</li>
<li>PVIDEO_POWER_MANAGEMENT
: <a class="el" href="ceglue_8c.html#a4a5ef961165ede9d8f1518c19fa31a43">ceglue.c</a>
</li>
<li>PVIDEO_POWER_STATE
: <a class="el" href="ceglue_8c.html#af402c2e3bd0db67a97dc41796134081c">ceglue.c</a>
</li>
<li>PXPM2BMP
: <a class="el" href="xpm2bmp_8h.html#a9d78bf2be289d46d73a8439048420be6">xpm2bmp.h</a>
</li>
<li>PXPMCOLORENTRY
: <a class="el" href="xpm2bmp_8h.html#a7389567a28c012a50b0e3baa00a96958">xpm2bmp.h</a>
</li>
<li>python_object_from_attr()
: <a class="el" href="binding__python_8c.html#a321a9dadab68f7de5852bc9d93404e67">binding_python.c</a>
, <a class="el" href="common_8h.html#a321a9dadab68f7de5852bc9d93404e67">common.h</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="footer">Generated by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
  </ul>
</div>
</body>
</html>