Subversion Repository Public Repository

artic

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
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
obj/local/armeabi-v7a/objs/ModelAdapter/ViewDrawNotifier_Android.o: \
 jni/ViewDrawNotifier_Android.cpp jni/ViewDrawNotifier.h \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/vector \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/native_window.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/rect.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/stdint.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/_types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/_types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/strings.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/cdefs.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/cdefs_elf.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/api-level.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/posix_types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/stddef.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/compiler.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/posix_types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/kernel.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/sysmacros.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/log.h \
 jni/../../../../Dependencies/un/Include/unthread.h \
 jni/../../../../Dependencies/un/Include/unconfig.h \
 jni/../../../../Dependencies/un/Include/unpre.h \
 jni/../../../../Dependencies/boost/Include/boost/thread.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/thread.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/platform.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/user.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/select_compiler_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/compiler/gcc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/select_stdlib_config.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstddef \
 jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/utility.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/utility \
 jni/../../../../Dependencies/boost/Include/boost/config/stdlib/libstdcpp3.hpp \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/unistd.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/select.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/time.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/time.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/signal.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/limits.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/limits.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/limits.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/internal_types.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/limits.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/syslimits.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/page.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/string.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/malloc.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/signal.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm-generic/signal.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/sigcontext.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/siginfo.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm-generic/siginfo.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/sysconf.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/capability.h \
 /usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/pathconf.h \
 jni/../../../../Dependencies/boost/Include/boost/config/select_platform_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/platform/linux.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstdlib \
 jni/../../../../Dependencies/boost/Include/boost/config/posix_features.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/suffix.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/requires_threads.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/thread_data.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/workaround.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/auto_link.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/exceptions.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/string \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/stdexcept \
 jni/../../../../Dependencies/boost/Include/boost/system/system_error.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cassert \
 jni/../../../../Dependencies/boost/Include/boost/system/error_code.hpp \
 jni/../../../../Dependencies/boost/Include/boost/system/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/system/api_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/cstdint.hpp \
 jni/../../../../Dependencies/boost/Include/boost/assert.hpp \
 jni/../../../../Dependencies/boost/Include/boost/operators.hpp \
 jni/../../../../Dependencies/boost/Include/boost/iterator.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/iterator \
 jni/../../../../Dependencies/boost/Include/boost/noncopyable.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/enable_if.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/functional \
 jni/../../../../Dependencies/boost/Include/boost/cerrno.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cerrno \
 jni/../../../../Dependencies/boost/Include/boost/config/abi_prefix.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/abi_suffix.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/locks.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/move.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_convertible.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/intrinsics.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_same.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/bool_trait_def.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/template_arity_spec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/int.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/int_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/adl_barrier.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/adl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/msvc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/intel.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/gcc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/workaround.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/nttp_decl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/nttp.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/integral_wrapper.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c_tag.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/static_constant.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/static_cast.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/cat.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/config/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/template_arity_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/preprocessor.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/comma_if.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/comma_if.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/if.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/iif.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/bool.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/empty.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/comma.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repeat.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/repeat.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/debug/error.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/auto_rec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/eat.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/inc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/inc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/lambda.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/ttp.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/ctps.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/overload_resolution.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/integral_constant.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/bool.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/bool_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/lambda_support.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/bool_trait_undef.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_lvalue_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_rvalue_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/ice.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/yes_no_type.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_or.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_and.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_not.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_eq.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_volatile.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/cv_traits_impl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_array.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/add_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/type_trait_def.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/type_trait_undef.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_arithmetic.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_integral.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_float.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_void.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_abstract.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/add_rvalue_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_reference.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/broken_compiler_spec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_cv.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/decay.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_function.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/false_result.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/is_function_ptr_helper.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_bounds.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/add_pointer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/eval_if.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/if.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/value_wknd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/integral.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/eti.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na_spec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/lambda_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/void_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/lambda_arity_param.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/arity.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/dtp.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/enum.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/limits/arity.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/and.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/bitand.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/identity.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/identity.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/empty.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/add.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/dec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/while.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/fold_left.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/detail/fold_left.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/expr_iif.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/adt.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/is_binary.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/check.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/compl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/fold_right.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/detail/fold_right.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/reverse.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/detail/while.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/elem.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/overload.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/variadic/size.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/rem.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/variadic/elem.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/sub.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/identity.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/delete.hpp \
 jni/../../../../Dependencies/boost/Include/boost/move/move.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/algorithm \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/memory \
 jni/../../../../Dependencies/boost/Include/boost/thread/thread_time.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_clock.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/c_time.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/ctime \
 jni/../../../../Dependencies/boost/Include/boost/throw_exception.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/compiler_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/locale_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/shared_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/shared_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/memory.hpp \
 jni/../../../../Dependencies/boost/Include/boost/checked_delete.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/shared_count.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/bad_weak_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_base.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_has_sync.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_base_spin.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/sp_typeinfo.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock_pool.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/yield_k.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_impl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_convertible.hpp \
 jni/../../../../Dependencies/boost/Include/boost/memory_order.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/operator_bool.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/microsec_time_clock.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/filetime_functions.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_types.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/ptime.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_system.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/limits.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/cmath.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_duration.hpp \
 jni/../../../../Dependencies/boost/Include/boost/static_assert.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_defs.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/special_defs.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_resolution_traits.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/int_adapter.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/gregorian_types.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/year_month_day.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/period.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_calendar.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_weekday.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/constrained_value.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_base_of.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_base_and_derived.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_class.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_defs.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_day_of_year.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian_calendar.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian_calendar.ipp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_ymd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_day.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_year.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_month.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/map \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_duration.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_duration.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_duration_types.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_duration_types.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_date.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/adjust_functors.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/wrapping_int.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_generators.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/sstream \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_clock_device.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/date_iterator.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_system_split.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_system_counted.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/date_duration_operators.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_duration.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/time_period.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/time_iterator.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/dst_rules.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/time_point.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/duration.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/detail/static_assert.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/climits \
 jni/../../../../Dependencies/boost/Include/boost/mpl/logical.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/or.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/use_preprocessed.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/nested_type_wknd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/include_preprocessed.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/compiler.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/stringize.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessed/gcc/or.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/and.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessed/gcc/and.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/not.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/ratio.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/config.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/abs.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/sign.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/gcd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/largest_int.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/dependent_nttp.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/lcm.hpp \
 jni/../../../../Dependencies/boost/Include/boost/integer_traits.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/ratio_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/ratio/detail/overflow_helpers.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/common_type.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/declval.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_floating_point.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_unsigned.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_enum.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/detail/is_evenly_divisible_by.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/iostream \
 jni/../../../../Dependencies/boost/Include/boost/thread/mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/xtime.hpp \
 jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/conversion.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstring \
 jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/conversion.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/timespec.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/system_clocks.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/detail/system.hpp \
 jni/../../../../Dependencies/boost/Include/boost/version.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/clock_string.hpp \
 jni/../../../../Dependencies/boost/Include/boost/chrono/ceil.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/condition_variable_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/cv_status.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/scoped_enum_emulation.hpp \
 jni/../../../../Dependencies/boost/Include/boost/enable_shared_from_this.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/enable_shared_from_this.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/weak_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/optional.hpp \
 jni/../../../../Dependencies/boost/Include/boost/optional/optional.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/alignment_of.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/size_t_trait_def.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/size_t.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/size_t_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/size_t_trait_undef.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/has_nothrow_constructor.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_constructor.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_pod.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_scalar.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_pointer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_member_pointer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_member_function_pointer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/type_with_alignment.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/for_each_i.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/for.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/detail/for.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/to_list.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/transform.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/append.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/reference_content.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/has_nothrow_copy.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_copy.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mpl/void.hpp \
 jni/../../../../Dependencies/boost/Include/boost/none.hpp \
 jni/../../../../Dependencies/boost/Include/boost/none_t.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/swap.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/addressof.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/compare_pointees.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/in_place_factory.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/detail/in_place_factory_prefix.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/paren.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/iterate.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/elem.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/data.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/size.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/slot.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/detail/def.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_binary_params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_trailing_params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/iter/forward1.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/bounds/lower1.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/detail/shared.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/bounds/upper1.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/detail/in_place_factory_suffix.hpp \
 jni/../../../../Dependencies/boost/Include/boost/optional/optional_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_heap_alloc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/thread_heap_alloc.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/list \
 jni/../../../../Dependencies/boost/Include/boost/ref.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/bind.hpp \
 jni/../../../../Dependencies/boost/Include/boost/mem_fn.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn.hpp \
 jni/../../../../Dependencies/boost/Include/boost/get_pointer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn_template.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn_cc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/is_placeholder.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/arg.hpp \
 jni/../../../../Dependencies/boost/Include/boost/visit_each.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/storage.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/bind_template.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/bind_cc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/bind_mf_cc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/bind_mf2_cc.hpp \
 jni/../../../../Dependencies/boost/Include/boost/bind/placeholders.hpp \
 jni/../../../../Dependencies/boost/Include/boost/io/ios_state.hpp \
 jni/../../../../Dependencies/boost/Include/boost/io_fwd.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/locale \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/hash.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/hash_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/hash_float.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/float_functions.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/limits.hpp \
 jni/../../../../Dependencies/boost/Include/boost/integer/static_log2.hpp \
 jni/../../../../Dependencies/boost/Include/boost/integer_fwd.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/typeindex \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/extensions.hpp \
 jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/container_fwd_0x.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/container_fwd.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/deque \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/set \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/bitset \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/complex \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/array \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/repeat_from_to.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_interruption.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_group.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/shared_mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/shared_mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/condition_variable.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/condition_variable.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/v2/thread.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/once.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/once.hpp \
 jni/../../../../Dependencies/boost/Include/boost/detail/no_exceptions_support.hpp \
 /usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/csignal \
 jni/../../../../Dependencies/boost/Include/boost/thread/recursive_mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/pthread/recursive_mutex.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/tss.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/barrier.hpp \
 jni/../../../../Dependencies/boost/Include/boost/thread/future.hpp \
 jni/../../../../Dependencies/boost/Include/boost/exception_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/exception/detail/exception_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/scoped_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/scoped_ptr.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_fundamental.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/iterate.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/detail/prologue.hpp \
 jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/functional.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/function_base.hpp \
 jni/../../../../Dependencies/boost/Include/boost/integer.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_destructor.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/composite_traits.hpp \
 jni/../../../../Dependencies/boost/Include/boost/type_traits/is_union.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function_equal.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/function_fwd.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/enum.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/enum_params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/detail/function_iterate.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/detail/maybe_include.hpp \
 jni/../../../../Dependencies/boost/Include/boost/function/function_template.hpp \
 jni/../../../../Dependencies/boost/Include/boost/scoped_array.hpp \
 jni/../../../../Dependencies/boost/Include/boost/smart_ptr/scoped_array.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/result_of.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_shifted_params.hpp \
 jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/intercept.hpp \
 jni/../../../../Dependencies/boost/Include/boost/utility/detail/result_of_iterate.hpp \
 jni/../../../../Dependencies/un/Include/unmutex.h

jni/ViewDrawNotifier.h:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/vector:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/native_window.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/rect.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/stdint.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/_types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/_types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/strings.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/cdefs.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/cdefs_elf.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/api-level.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/posix_types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/stddef.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/compiler.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/posix_types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/kernel.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/sysmacros.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/android/log.h:

jni/../../../../Dependencies/un/Include/unthread.h:

jni/../../../../Dependencies/un/Include/unconfig.h:

jni/../../../../Dependencies/un/Include/unpre.h:

jni/../../../../Dependencies/boost/Include/boost/thread.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/thread.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/platform.hpp:

jni/../../../../Dependencies/boost/Include/boost/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/user.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/select_compiler_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/compiler/gcc.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/select_stdlib_config.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstddef:

jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/utility.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/utility:

jni/../../../../Dependencies/boost/Include/boost/config/stdlib/libstdcpp3.hpp:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/unistd.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/select.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/time.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/time.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/signal.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/limits.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/limits.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/limits.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/internal_types.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/machine/limits.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/syslimits.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/page.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/string.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/malloc.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/signal.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm-generic/signal.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/sigcontext.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm/siginfo.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/asm-generic/siginfo.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/sys/sysconf.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/linux/capability.h:

/usr/local/Cellar/android-ndk/r8d/platforms/android-9/arch-arm/usr/include/pathconf.h:

jni/../../../../Dependencies/boost/Include/boost/config/select_platform_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/platform/linux.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstdlib:

jni/../../../../Dependencies/boost/Include/boost/config/posix_features.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/suffix.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/requires_threads.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/thread_data.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/workaround.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/auto_link.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/exceptions.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/string:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/stdexcept:

jni/../../../../Dependencies/boost/Include/boost/system/system_error.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cassert:

jni/../../../../Dependencies/boost/Include/boost/system/error_code.hpp:

jni/../../../../Dependencies/boost/Include/boost/system/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/system/api_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/cstdint.hpp:

jni/../../../../Dependencies/boost/Include/boost/assert.hpp:

jni/../../../../Dependencies/boost/Include/boost/operators.hpp:

jni/../../../../Dependencies/boost/Include/boost/iterator.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/iterator:

jni/../../../../Dependencies/boost/Include/boost/noncopyable.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/enable_if.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/functional:

jni/../../../../Dependencies/boost/Include/boost/cerrno.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cerrno:

jni/../../../../Dependencies/boost/Include/boost/config/abi_prefix.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/abi_suffix.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/locks.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/move.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_convertible.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/intrinsics.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_same.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/bool_trait_def.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/template_arity_spec.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/int.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/int_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/adl_barrier.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/adl.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/msvc.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/intel.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/gcc.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/workaround.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/nttp_decl.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/nttp.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/integral_wrapper.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c_tag.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/static_constant.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/static_cast.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/cat.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/config/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/template_arity_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/params.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/preprocessor.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/comma_if.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/comma_if.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/if.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/iif.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/bool.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/empty.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/comma.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repeat.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/repeat.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/debug/error.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/auto_rec.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/eat.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/inc.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/inc.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/lambda.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/ttp.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/ctps.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/overload_resolution.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/integral_constant.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/bool.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/bool_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/integral_c_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/lambda_support.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/bool_trait_undef.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_lvalue_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_rvalue_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/ice.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/yes_no_type.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_or.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_and.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_not.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/ice_eq.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_volatile.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/cv_traits_impl.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_array.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/add_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/type_trait_def.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/type_trait_undef.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_arithmetic.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_integral.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_float.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_void.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_abstract.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/add_rvalue_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_reference.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/broken_compiler_spec.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_cv.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/decay.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_function.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/false_result.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/is_function_ptr_helper.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/remove_bounds.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/add_pointer.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/eval_if.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/if.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/value_wknd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/integral.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/eti.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na_spec.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/lambda_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/void_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/na_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/lambda_arity_param.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/arity.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/dtp.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/enum.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessor/def_params_tail.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/limits/arity.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/and.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/bitand.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/identity.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/identity.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/empty.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/add.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/dec.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/while.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/fold_left.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/detail/fold_left.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/expr_iif.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/adt.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/is_binary.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/detail/check.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/logical/compl.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/fold_right.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/detail/fold_right.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/reverse.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/control/detail/while.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/elem.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/overload.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/variadic/size.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/rem.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/variadic/elem.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/arithmetic/sub.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/identity.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/delete.hpp:

jni/../../../../Dependencies/boost/Include/boost/move/move.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/algorithm:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/memory:

jni/../../../../Dependencies/boost/Include/boost/thread/thread_time.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_clock.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/c_time.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/ctime:

jni/../../../../Dependencies/boost/Include/boost/throw_exception.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/compiler_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/locale_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/shared_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/shared_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/memory.hpp:

jni/../../../../Dependencies/boost/Include/boost/checked_delete.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/shared_count.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/bad_weak_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_base.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_has_sync.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_base_spin.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/sp_typeinfo.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock_pool.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/yield_k.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_counted_impl.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/sp_convertible.hpp:

jni/../../../../Dependencies/boost/Include/boost/memory_order.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/detail/operator_bool.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/microsec_time_clock.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/filetime_functions.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_types.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/ptime.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_system.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_config.hpp:

jni/../../../../Dependencies/boost/Include/boost/limits.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/cmath.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_duration.hpp:

jni/../../../../Dependencies/boost/Include/boost/static_assert.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_defs.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/special_defs.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_resolution_traits.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/int_adapter.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/gregorian_types.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/year_month_day.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/period.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_calendar.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_weekday.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/constrained_value.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_base_of.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_base_and_derived.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_class.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_defs.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_day_of_year.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian_calendar.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian_calendar.ipp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_ymd.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_day.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_year.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_month.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/map:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_duration.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_duration.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_duration_types.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_duration_types.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/greg_date.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/adjust_functors.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/wrapping_int.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_generators.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/sstream:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_clock_device.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/date_iterator.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_system_split.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_system_counted.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/date_duration_operators.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/posix_time_duration.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/time_period.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/time_iterator.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/dst_rules.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/time_point.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/duration.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/detail/static_assert.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/climits:

jni/../../../../Dependencies/boost/Include/boost/mpl/logical.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/or.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/use_preprocessed.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/nested_type_wknd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/include_preprocessed.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/compiler.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/stringize.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessed/gcc/or.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/and.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/preprocessed/gcc/and.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/not.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/ratio.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/config.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/abs.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/sign.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/gcd.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/largest_int.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/aux_/config/dependent_nttp.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/detail/mpl/lcm.hpp:

jni/../../../../Dependencies/boost/Include/boost/integer_traits.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/ratio_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/ratio/detail/overflow_helpers.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/common_type.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/declval.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_floating_point.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_unsigned.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_enum.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/detail/is_evenly_divisible_by.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/iostream:

jni/../../../../Dependencies/boost/Include/boost/thread/mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/xtime.hpp:

jni/../../../../Dependencies/boost/Include/boost/date_time/posix_time/conversion.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/cstring:

jni/../../../../Dependencies/boost/Include/boost/date_time/gregorian/conversion.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/timespec.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/system_clocks.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/detail/system.hpp:

jni/../../../../Dependencies/boost/Include/boost/version.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/clock_string.hpp:

jni/../../../../Dependencies/boost/Include/boost/chrono/ceil.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/condition_variable_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/cv_status.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/scoped_enum_emulation.hpp:

jni/../../../../Dependencies/boost/Include/boost/enable_shared_from_this.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/enable_shared_from_this.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/weak_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/optional.hpp:

jni/../../../../Dependencies/boost/Include/boost/optional/optional.hpp:

jni/../../../../Dependencies/boost/Include/boost/type.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/alignment_of.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/size_t_trait_def.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/size_t.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/size_t_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/size_t_trait_undef.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/has_nothrow_constructor.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_constructor.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_pod.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_scalar.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_pointer.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_member_pointer.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_member_function_pointer.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/type_with_alignment.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/for_each_i.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/for.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/detail/for.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/tuple/to_list.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/transform.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/list/append.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/reference_content.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/has_nothrow_copy.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_copy.hpp:

jni/../../../../Dependencies/boost/Include/boost/mpl/void.hpp:

jni/../../../../Dependencies/boost/Include/boost/none.hpp:

jni/../../../../Dependencies/boost/Include/boost/none_t.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/swap.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/addressof.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/compare_pointees.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/in_place_factory.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/detail/in_place_factory_prefix.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/punctuation/paren.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/iterate.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/elem.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/data.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/array/size.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/slot.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/detail/def.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_params.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_binary_params.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_trailing_params.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/iter/forward1.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/bounds/lower1.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/slot/detail/shared.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/iteration/detail/bounds/upper1.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/detail/in_place_factory_suffix.hpp:

jni/../../../../Dependencies/boost/Include/boost/optional/optional_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_heap_alloc.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/thread_heap_alloc.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/list:

jni/../../../../Dependencies/boost/Include/boost/ref.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/bind.hpp:

jni/../../../../Dependencies/boost/Include/boost/mem_fn.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn.hpp:

jni/../../../../Dependencies/boost/Include/boost/get_pointer.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn_template.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/mem_fn_cc.hpp:

jni/../../../../Dependencies/boost/Include/boost/is_placeholder.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/arg.hpp:

jni/../../../../Dependencies/boost/Include/boost/visit_each.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/storage.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/bind_template.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/bind_cc.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/bind_mf_cc.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/bind_mf2_cc.hpp:

jni/../../../../Dependencies/boost/Include/boost/bind/placeholders.hpp:

jni/../../../../Dependencies/boost/Include/boost/io/ios_state.hpp:

jni/../../../../Dependencies/boost/Include/boost/io_fwd.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/locale:

jni/../../../../Dependencies/boost/Include/boost/functional/hash.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/hash.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/hash_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/hash_float.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/float_functions.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/limits.hpp:

jni/../../../../Dependencies/boost/Include/boost/integer/static_log2.hpp:

jni/../../../../Dependencies/boost/Include/boost/integer_fwd.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/typeindex:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/extensions.hpp:

jni/../../../../Dependencies/boost/Include/boost/functional/hash/detail/container_fwd_0x.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/container_fwd.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/deque:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/set:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/bitset:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/complex:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/array:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/repeat_from_to.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_interruption.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/detail/thread_group.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/shared_mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/shared_mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/condition_variable.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/condition_variable.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/v2/thread.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/once.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/once.hpp:

jni/../../../../Dependencies/boost/Include/boost/detail/no_exceptions_support.hpp:

/usr/local/Cellar/android-ndk/r8d/sources/cxx-stl/gnu-libstdc++/4.6/include/csignal:

jni/../../../../Dependencies/boost/Include/boost/thread/recursive_mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/pthread/recursive_mutex.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/tss.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/barrier.hpp:

jni/../../../../Dependencies/boost/Include/boost/thread/future.hpp:

jni/../../../../Dependencies/boost/Include/boost/exception_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/exception/detail/exception_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/scoped_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/scoped_ptr.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_fundamental.hpp:

jni/../../../../Dependencies/boost/Include/boost/function.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/iterate.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/detail/prologue.hpp:

jni/../../../../Dependencies/boost/Include/boost/config/no_tr1/functional.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/function_base.hpp:

jni/../../../../Dependencies/boost/Include/boost/integer.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/has_trivial_destructor.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/composite_traits.hpp:

jni/../../../../Dependencies/boost/Include/boost/type_traits/is_union.hpp:

jni/../../../../Dependencies/boost/Include/boost/function_equal.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/function_fwd.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/enum.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/enum_params.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/detail/function_iterate.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/detail/maybe_include.hpp:

jni/../../../../Dependencies/boost/Include/boost/function/function_template.hpp:

jni/../../../../Dependencies/boost/Include/boost/scoped_array.hpp:

jni/../../../../Dependencies/boost/Include/boost/smart_ptr/scoped_array.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/result_of.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/repetition/enum_shifted_params.hpp:

jni/../../../../Dependencies/boost/Include/boost/preprocessor/facilities/intercept.hpp:

jni/../../../../Dependencies/boost/Include/boost/utility/detail/result_of_iterate.hpp:

jni/../../../../Dependencies/un/Include/unmutex.h:

Commits for artic/ARTIC/obj/local/armeabi-v7a/objs/ModelAdapter/ViewDrawNotifier_Android.o.d

Diff revisions: vs.
Revision Author Commited Message
3 CESAR-AIJU picture CESAR-AIJU Tue 01 Mar, 2016 17:50:10 +0000

Subiendo Proyecto Artic