From 0345245e860375a32c9a437c4a9d9cae807134e9 Mon Sep 17 00:00:00 2001 From: Shashank Date: Mon, 29 May 2017 12:40:26 +0530 Subject: CMSCOPE changed --- modules/completion/.libs/libscicompletion-algo.a | Bin 0 -> 1957592 bytes modules/completion/.libs/libscicompletion-algo.la | 1 + modules/completion/.libs/libscicompletion.la | 1 + modules/completion/.libs/libscicompletion.lai | 41 + modules/completion/.libs/libscicompletion.so | 1 + modules/completion/.libs/libscicompletion.so.5 | 1 + modules/completion/.libs/libscicompletion.so.5.5.2 | Bin 0 -> 792872 bytes modules/completion/Makefile | 1803 ++++++++++++++++++++ modules/completion/Makefile.am | 129 ++ modules/completion/Makefile.in | 1803 ++++++++++++++++++++ modules/completion/build.xml | 20 + ...iCompletionWindow$CompletionItemListModel.class | Bin 0 -> 1334 bytes .../completion/AbstractSciCompletionWindow.class | Bin 0 -> 6361 bytes .../org/scilab/modules/completion/Completion.class | Bin 0 -> 1318 bytes .../scilab/modules/completion/CompletionJNI.class | Bin 0 -> 1559 bytes modules/completion/completion.iss | 50 + modules/completion/etc/completion.quit | 10 + modules/completion/etc/completion.start | 9 + modules/completion/includes/completeLine.h | 33 + modules/completion/includes/completion.h | 91 + modules/completion/includes/dynlib_completion.h | 29 + modules/completion/includes/getCommonPart.h | 31 + modules/completion/includes/getPartLine.h | 33 + modules/completion/includes/getfields.h | 34 + modules/completion/includes/getfieldsdictionary.h | 26 + modules/completion/includes/getmacrosdictionary.h | 23 + modules/completion/includes/gw_completion.h | 24 + .../jar/org.scilab.modules.completion.jar | Bin 0 -> 6608 bytes modules/completion/libscicompletion-algo.la | 41 + modules/completion/libscicompletion.la | 41 + modules/completion/license.txt | 11 + modules/completion/locales/ca_ES.po | 71 + modules/completion/locales/completion.pot | 95 ++ modules/completion/locales/cs_CZ.po | 63 + modules/completion/locales/de_DE.po | 68 + modules/completion/locales/es_ES.po | 70 + modules/completion/locales/fr_FR.po | 72 + modules/completion/locales/it_IT.po | 74 + modules/completion/locales/ja_JP.po | 65 + modules/completion/locales/pl_PL.po | 72 + modules/completion/locales/pt_BR.po | 71 + modules/completion/locales/ru_RU.po | 65 + modules/completion/locales/uk_UA.po | 73 + modules/completion/locales/zh_CN.po | 62 + modules/completion/locales/zh_TW.po | 62 + modules/completion/macros/buildmacros.bat | 1 + modules/completion/macros/buildmacros.sce | 15 + modules/completion/macros/cleanmacros.bat | 3 + modules/completion/sci_gateway/c/.deps/.dirstamp | 0 .../c/.deps/libscicompletion_la-gw_completion.Plo | 275 +++ .../c/.deps/libscicompletion_la-sci_completion.Plo | 240 +++ modules/completion/sci_gateway/c/.dirstamp | 0 .../c/.libs/libscicompletion_la-gw_completion.o | Bin 0 -> 6232 bytes .../c/.libs/libscicompletion_la-sci_completion.o | Bin 0 -> 27136 bytes modules/completion/sci_gateway/c/gw_completion.c | 36 + .../c/libscicompletion_la-gw_completion.lo | 12 + .../c/libscicompletion_la-sci_completion.lo | 12 + modules/completion/sci_gateway/c/sci_completion.c | 239 +++ .../completion/sci_gateway/completion_gateway.xml | 33 + modules/completion/src/c/.deps/.dirstamp | 0 .../libscicompletion_algo_la-completeLine.Plo | 144 ++ ...cicompletion_algo_la-completeLine_wrap_java.Plo | 101 ++ .../.deps/libscicompletion_algo_la-completion.Plo | 143 ++ ...libscicompletion_algo_la-completion_generic.Plo | 108 ++ ...bscicompletion_algo_la-completion_wrap_java.Plo | 105 ++ .../libscicompletion_algo_la-getCommonPart.Plo | 161 ++ .../.deps/libscicompletion_algo_la-getPartLine.Plo | 161 ++ ...ibscicompletion_algo_la-getfieldsdictionary.Plo | 296 ++++ ...libscicompletion_algo_la-getfilesdictionary.Plo | 159 ++ ...ibscicompletion_algo_la-getmacrosdictionary.Plo | 93 + .../libscicompletion_algo_la-toolsdictionary.Plo | 106 ++ modules/completion/src/c/.dirstamp | 0 .../.libs/libscicompletion_algo_la-completeLine.o | Bin 0 -> 19736 bytes ...bscicompletion_algo_la-completeLine_wrap_java.o | Bin 0 -> 5920 bytes .../c/.libs/libscicompletion_algo_la-completion.o | Bin 0 -> 27696 bytes .../libscicompletion_algo_la-completion_generic.o | Bin 0 -> 6192 bytes ...libscicompletion_algo_la-completion_wrap_java.o | Bin 0 -> 9024 bytes .../.libs/libscicompletion_algo_la-getCommonPart.o | Bin 0 -> 8632 bytes .../c/.libs/libscicompletion_algo_la-getPartLine.o | Bin 0 -> 10744 bytes .../libscicompletion_algo_la-getfieldsdictionary.o | Bin 0 -> 13696 bytes .../libscicompletion_algo_la-getfilesdictionary.o | Bin 0 -> 21792 bytes .../libscicompletion_algo_la-getmacrosdictionary.o | Bin 0 -> 3952 bytes .../libscicompletion_algo_la-toolsdictionary.o | Bin 0 -> 9224 bytes modules/completion/src/c/DllmainCompletion.c | 32 + modules/completion/src/c/Scilab_windows_Import.def | 5 + modules/completion/src/c/completeLine.c | 284 +++ modules/completion/src/c/completeLine_wrap_java.c | 39 + modules/completion/src/c/completeLine_wrap_java.h | 22 + modules/completion/src/c/completion.c | 401 +++++ modules/completion/src/c/completion.rc | 97 ++ modules/completion/src/c/completion.vcxproj | 313 ++++ .../completion/src/c/completion.vcxproj.filters | 219 +++ modules/completion/src/c/completion_generic.c | 54 + modules/completion/src/c/completion_generic.h | 27 + modules/completion/src/c/completion_wrap_java.c | 101 ++ modules/completion/src/c/completion_wrap_java.h | 77 + modules/completion/src/c/core_Import.def | 22 + modules/completion/src/c/getCommonPart.c | 97 ++ modules/completion/src/c/getPartLine.c | 154 ++ modules/completion/src/c/getfieldsdictionary.c | 136 ++ modules/completion/src/c/getfilesdictionary.c | 207 +++ modules/completion/src/c/getfilesdictionary.h | 28 + modules/completion/src/c/getmacrosdictionary.c | 21 + .../src/c/libscicompletion_algo_la-completeLine.lo | 12 + ...scicompletion_algo_la-completeLine_wrap_java.lo | 12 + .../src/c/libscicompletion_algo_la-completion.lo | 12 + .../libscicompletion_algo_la-completion_generic.lo | 12 + ...ibscicompletion_algo_la-completion_wrap_java.lo | 12 + .../c/libscicompletion_algo_la-getCommonPart.lo | 12 + .../src/c/libscicompletion_algo_la-getPartLine.lo | 12 + ...libscicompletion_algo_la-getfieldsdictionary.lo | 12 + .../libscicompletion_algo_la-getfilesdictionary.lo | 12 + ...libscicompletion_algo_la-getmacrosdictionary.lo | 12 + .../c/libscicompletion_algo_la-toolsdictionary.lo | 12 + modules/completion/src/c/toolsdictionary.c | 113 ++ modules/completion/src/c/toolsdictionary.h | 65 + modules/completion/src/cpp/.deps/.dirstamp | 0 .../libscicompletion_algo_la-EOFieldsGetter.Plo | 584 +++++++ .../libscicompletion_algo_la-FieldsManager.Plo | 556 ++++++ ...libscicompletion_algo_la-HandleFieldsGetter.Plo | 290 ++++ ...libscicompletion_algo_la-StructFieldsGetter.Plo | 445 +++++ ...completion_algo_la-UnknownMlistFieldsGetter.Plo | 445 +++++ ...ibscicompletion_algo_la-XMLAttrFieldsGetter.Plo | 678 ++++++++ ...libscicompletion_algo_la-XMLDocFieldsGetter.Plo | 681 ++++++++ ...ibscicompletion_algo_la-XMLElemFieldsGetter.Plo | 686 ++++++++ .../libscicompletion_algo_la-XMLFieldsGetter.Plo | 690 ++++++++ ...ibscicompletion_algo_la-XMLListFieldsGetter.Plo | 678 ++++++++ .../libscicompletion_algo_la-XMLNsFieldsGetter.Plo | 678 ++++++++ ...libscicompletion_algo_la-XMLSetFieldsGetter.Plo | 678 ++++++++ .../.deps/libscicompletion_algo_la-getfields.Plo | 308 ++++ modules/completion/src/cpp/.dirstamp | 0 .../libscicompletion_algo_la-EOFieldsGetter.o | Bin 0 -> 218632 bytes .../.libs/libscicompletion_algo_la-FieldsManager.o | Bin 0 -> 374336 bytes .../libscicompletion_algo_la-HandleFieldsGetter.o | Bin 0 -> 82536 bytes .../libscicompletion_algo_la-StructFieldsGetter.o | Bin 0 -> 90216 bytes ...cicompletion_algo_la-UnknownMlistFieldsGetter.o | Bin 0 -> 89984 bytes .../libscicompletion_algo_la-XMLAttrFieldsGetter.o | Bin 0 -> 113720 bytes .../libscicompletion_algo_la-XMLDocFieldsGetter.o | Bin 0 -> 115288 bytes .../libscicompletion_algo_la-XMLElemFieldsGetter.o | Bin 0 -> 115392 bytes .../libscicompletion_algo_la-XMLFieldsGetter.o | Bin 0 -> 115016 bytes .../libscicompletion_algo_la-XMLListFieldsGetter.o | Bin 0 -> 111848 bytes .../libscicompletion_algo_la-XMLNsFieldsGetter.o | Bin 0 -> 112080 bytes .../libscicompletion_algo_la-XMLSetFieldsGetter.o | Bin 0 -> 111832 bytes .../cpp/.libs/libscicompletion_algo_la-getfields.o | Bin 0 -> 84176 bytes modules/completion/src/cpp/EOFieldsGetter.cpp | 59 + modules/completion/src/cpp/EOFieldsGetter.hxx | 63 + modules/completion/src/cpp/FieldsGetter.hxx | 48 + modules/completion/src/cpp/FieldsManager.cpp | 142 ++ modules/completion/src/cpp/FieldsManager.hxx | 60 + modules/completion/src/cpp/HandleFieldsGetter.cpp | 29 + modules/completion/src/cpp/HandleFieldsGetter.hxx | 53 + modules/completion/src/cpp/StructFieldsGetter.cpp | 106 ++ modules/completion/src/cpp/StructFieldsGetter.hxx | 53 + .../src/cpp/UnknownMlistFieldsGetter.cpp | 103 ++ .../src/cpp/UnknownMlistFieldsGetter.hxx | 52 + modules/completion/src/cpp/XMLAttrFieldsGetter.cpp | 60 + modules/completion/src/cpp/XMLAttrFieldsGetter.hxx | 54 + modules/completion/src/cpp/XMLDocFieldsGetter.cpp | 57 + modules/completion/src/cpp/XMLDocFieldsGetter.hxx | 55 + modules/completion/src/cpp/XMLElemFieldsGetter.cpp | 76 + modules/completion/src/cpp/XMLElemFieldsGetter.hxx | 56 + modules/completion/src/cpp/XMLFieldsGetter.cpp | 43 + modules/completion/src/cpp/XMLFieldsGetter.hxx | 77 + modules/completion/src/cpp/XMLListFieldsGetter.cpp | 51 + modules/completion/src/cpp/XMLListFieldsGetter.hxx | 56 + modules/completion/src/cpp/XMLNsFieldsGetter.cpp | 51 + modules/completion/src/cpp/XMLNsFieldsGetter.hxx | 56 + modules/completion/src/cpp/XMLSetFieldsGetter.cpp | 51 + modules/completion/src/cpp/XMLSetFieldsGetter.hxx | 56 + modules/completion/src/cpp/getfields.cpp | 46 + .../cpp/libscicompletion_algo_la-EOFieldsGetter.lo | 12 + .../cpp/libscicompletion_algo_la-FieldsManager.lo | 12 + .../libscicompletion_algo_la-HandleFieldsGetter.lo | 12 + .../libscicompletion_algo_la-StructFieldsGetter.lo | 12 + ...icompletion_algo_la-UnknownMlistFieldsGetter.lo | 12 + ...libscicompletion_algo_la-XMLAttrFieldsGetter.lo | 12 + .../libscicompletion_algo_la-XMLDocFieldsGetter.lo | 12 + ...libscicompletion_algo_la-XMLElemFieldsGetter.lo | 12 + .../libscicompletion_algo_la-XMLFieldsGetter.lo | 12 + ...libscicompletion_algo_la-XMLListFieldsGetter.lo | 12 + .../libscicompletion_algo_la-XMLNsFieldsGetter.lo | 12 + .../libscicompletion_algo_la-XMLSetFieldsGetter.lo | 12 + .../src/cpp/libscicompletion_algo_la-getfields.lo | 12 + .../completion/AbstractSciCompletionWindow.java | 447 +++++ .../org/scilab/modules/completion/Completion.java | 149 ++ .../scilab/modules/completion/CompletionJNI.java | 53 + modules/completion/src/jni/.deps/.dirstamp | 0 .../libscicompletion_algo_la-Completion_wrap.Plo | 147 ++ modules/completion/src/jni/.dirstamp | 0 .../libscicompletion_algo_la-Completion_wrap.o | Bin 0 -> 70136 bytes modules/completion/src/jni/Completion.i | 205 +++ modules/completion/src/jni/Completion_wrap.c | 683 ++++++++ .../libscicompletion_algo_la-Completion_wrap.lo | 12 + modules/completion/src/nocompletion/nocompletion.c | 22 + .../completion/src/nocompletion/nocompletion.rc | 97 ++ .../src/nocompletion/nocompletion.vcxproj | 199 +++ .../src/nocompletion/nocompletion.vcxproj.filters | 38 + .../tests/nonreg_tests/bug_10982.dia.ref | 45 + .../completion/tests/nonreg_tests/bug_10982.tst | 53 + .../tests/nonreg_tests/bug_12393.dia.ref | 28 + .../completion/tests/nonreg_tests/bug_12393.tst | 30 + .../completion/tests/nonreg_tests/bug_2848.dia.ref | 44 + modules/completion/tests/nonreg_tests/bug_2848.tst | 56 + .../completion/tests/nonreg_tests/bug_3051.dia.ref | 35 + modules/completion/tests/nonreg_tests/bug_3051.tst | 45 + .../completion/tests/nonreg_tests/bug_3297.dia.ref | 27 + modules/completion/tests/nonreg_tests/bug_3297.tst | 35 + .../completion/tests/nonreg_tests/bug_3306.dia.ref | 38 + modules/completion/tests/nonreg_tests/bug_3306.tst | 53 + .../completion/tests/nonreg_tests/bug_3398.dia.ref | 27 + modules/completion/tests/nonreg_tests/bug_3398.tst | 35 + .../completion/tests/nonreg_tests/bug_3399.dia.ref | 23 + modules/completion/tests/nonreg_tests/bug_3399.tst | 28 + .../completion/tests/nonreg_tests/bug_3681.dia.ref | 15 + modules/completion/tests/nonreg_tests/bug_3681.tst | 18 + .../completion/tests/nonreg_tests/bug_3757.dia.ref | 23 + modules/completion/tests/nonreg_tests/bug_3757.tst | 28 + .../completion/tests/nonreg_tests/bug_4039.dia.ref | 32 + modules/completion/tests/nonreg_tests/bug_4039.tst | 39 + .../completion/tests/nonreg_tests/bug_4067.dia.ref | 40 + modules/completion/tests/nonreg_tests/bug_4067.tst | 47 + .../completion/tests/nonreg_tests/bug_4095.dia.ref | 51 + modules/completion/tests/nonreg_tests/bug_4095.tst | 63 + .../completion/tests/nonreg_tests/bug_4263.dia.ref | 22 + modules/completion/tests/nonreg_tests/bug_4263.tst | 26 + .../completion/tests/nonreg_tests/bug_4315.dia.ref | 19 + modules/completion/tests/nonreg_tests/bug_4315.tst | 24 + .../completion/tests/nonreg_tests/bug_4332.dia.ref | 28 + modules/completion/tests/nonreg_tests/bug_4332.tst | 34 + .../completion/tests/nonreg_tests/bug_4365.dia.ref | 47 + modules/completion/tests/nonreg_tests/bug_4365.tst | 60 + .../completion/tests/nonreg_tests/bug_4421.dia.ref | 28 + modules/completion/tests/nonreg_tests/bug_4421.tst | 33 + .../completion/tests/nonreg_tests/bug_4438.dia.ref | 23 + modules/completion/tests/nonreg_tests/bug_4438.tst | 28 + .../completion/tests/nonreg_tests/bug_4626.dia.ref | 17 + modules/completion/tests/nonreg_tests/bug_4626.tst | 20 + .../completion/tests/nonreg_tests/bug_4737.dia.ref | 31 + modules/completion/tests/nonreg_tests/bug_4737.tst | 36 + .../completion/tests/nonreg_tests/bug_4838.dia.ref | 24 + modules/completion/tests/nonreg_tests/bug_4838.tst | 29 + .../completion/tests/nonreg_tests/bug_5105.dia.ref | 24 + modules/completion/tests/nonreg_tests/bug_5105.tst | 29 + .../completion/tests/nonreg_tests/bug_6320.dia.ref | 19 + modules/completion/tests/nonreg_tests/bug_6320.tst | 24 + .../completion/tests/nonreg_tests/bug_6739.dia.ref | 30 + modules/completion/tests/nonreg_tests/bug_6739.tst | 36 + .../completion/tests/nonreg_tests/bug_6751.dia.ref | 37 + modules/completion/tests/nonreg_tests/bug_6751.tst | 46 + .../completion/tests/nonreg_tests/bug_7123.dia.ref | 44 + modules/completion/tests/nonreg_tests/bug_7123.tst | 56 + .../completion/tests/nonreg_tests/bug_9300.dia.ref | 34 + modules/completion/tests/nonreg_tests/bug_9300.tst | 41 + .../completion/tests/nonreg_tests/bug_9755.dia.ref | 30 + modules/completion/tests/nonreg_tests/bug_9755.tst | 33 + .../tests/unit_tests/completeline.dia.ref | 80 + .../completion/tests/unit_tests/completeline.tst | 106 ++ .../completion/tests/unit_tests/completion.dia.ref | 146 ++ modules/completion/tests/unit_tests/completion.tst | 199 +++ .../tests/unit_tests/getcommonpart.dia.ref | 30 + .../completion/tests/unit_tests/getcommonpart.tst | 39 + .../completion/tests/unit_tests/getfields.dia.ref | 21 + modules/completion/tests/unit_tests/getfields.tst | 26 + .../tests/unit_tests/getfilepartlevel.dia.ref | 32 + .../tests/unit_tests/getfilepartlevel.tst | 44 + .../tests/unit_tests/getpartlevel.dia.ref | 22 + .../completion/tests/unit_tests/getpartlevel.tst | 28 + .../tests/utilities/build_primitives.sce | 66 + .../completion/tests/utilities/sci_completeline.c | 191 +++ .../completion/tests/utilities/sci_getcommonpart.c | 70 + modules/completion/tests/utilities/sci_getfields.c | 93 + .../tests/utilities/sci_getfilepartlevel.c | 69 + .../completion/tests/utilities/sci_getpartlevel.c | 69 + 273 files changed, 24877 insertions(+) create mode 100755 modules/completion/.libs/libscicompletion-algo.a create mode 120000 modules/completion/.libs/libscicompletion-algo.la create mode 120000 modules/completion/.libs/libscicompletion.la create mode 100755 modules/completion/.libs/libscicompletion.lai create mode 120000 modules/completion/.libs/libscicompletion.so create mode 120000 modules/completion/.libs/libscicompletion.so.5 create mode 100755 modules/completion/.libs/libscicompletion.so.5.5.2 create mode 100755 modules/completion/Makefile create mode 100755 modules/completion/Makefile.am create mode 100755 modules/completion/Makefile.in create mode 100755 modules/completion/build.xml create mode 100755 modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow$CompletionItemListModel.class create mode 100755 modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow.class create mode 100755 modules/completion/build/classes/org/scilab/modules/completion/Completion.class create mode 100755 modules/completion/build/classes/org/scilab/modules/completion/CompletionJNI.class create mode 100755 modules/completion/completion.iss create mode 100755 modules/completion/etc/completion.quit create mode 100755 modules/completion/etc/completion.start create mode 100755 modules/completion/includes/completeLine.h create mode 100755 modules/completion/includes/completion.h create mode 100755 modules/completion/includes/dynlib_completion.h create mode 100755 modules/completion/includes/getCommonPart.h create mode 100755 modules/completion/includes/getPartLine.h create mode 100755 modules/completion/includes/getfields.h create mode 100755 modules/completion/includes/getfieldsdictionary.h create mode 100755 modules/completion/includes/getmacrosdictionary.h create mode 100755 modules/completion/includes/gw_completion.h create mode 100755 modules/completion/jar/org.scilab.modules.completion.jar create mode 100755 modules/completion/libscicompletion-algo.la create mode 100755 modules/completion/libscicompletion.la create mode 100755 modules/completion/license.txt create mode 100755 modules/completion/locales/ca_ES.po create mode 100755 modules/completion/locales/completion.pot create mode 100755 modules/completion/locales/cs_CZ.po create mode 100755 modules/completion/locales/de_DE.po create mode 100755 modules/completion/locales/es_ES.po create mode 100755 modules/completion/locales/fr_FR.po create mode 100755 modules/completion/locales/it_IT.po create mode 100755 modules/completion/locales/ja_JP.po create mode 100755 modules/completion/locales/pl_PL.po create mode 100755 modules/completion/locales/pt_BR.po create mode 100755 modules/completion/locales/ru_RU.po create mode 100755 modules/completion/locales/uk_UA.po create mode 100755 modules/completion/locales/zh_CN.po create mode 100755 modules/completion/locales/zh_TW.po create mode 100755 modules/completion/macros/buildmacros.bat create mode 100755 modules/completion/macros/buildmacros.sce create mode 100755 modules/completion/macros/cleanmacros.bat create mode 100755 modules/completion/sci_gateway/c/.deps/.dirstamp create mode 100755 modules/completion/sci_gateway/c/.deps/libscicompletion_la-gw_completion.Plo create mode 100755 modules/completion/sci_gateway/c/.deps/libscicompletion_la-sci_completion.Plo create mode 100755 modules/completion/sci_gateway/c/.dirstamp create mode 100755 modules/completion/sci_gateway/c/.libs/libscicompletion_la-gw_completion.o create mode 100755 modules/completion/sci_gateway/c/.libs/libscicompletion_la-sci_completion.o create mode 100755 modules/completion/sci_gateway/c/gw_completion.c create mode 100755 modules/completion/sci_gateway/c/libscicompletion_la-gw_completion.lo create mode 100755 modules/completion/sci_gateway/c/libscicompletion_la-sci_completion.lo create mode 100755 modules/completion/sci_gateway/c/sci_completion.c create mode 100755 modules/completion/sci_gateway/completion_gateway.xml create mode 100755 modules/completion/src/c/.deps/.dirstamp create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine_wrap_java.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-completion.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-completion_generic.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-completion_wrap_java.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-getCommonPart.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-getPartLine.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-getfieldsdictionary.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-getfilesdictionary.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-getmacrosdictionary.Plo create mode 100755 modules/completion/src/c/.deps/libscicompletion_algo_la-toolsdictionary.Plo create mode 100755 modules/completion/src/c/.dirstamp create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine_wrap_java.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-completion.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-completion_generic.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-completion_wrap_java.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-getCommonPart.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-getPartLine.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-getfieldsdictionary.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-getfilesdictionary.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-getmacrosdictionary.o create mode 100755 modules/completion/src/c/.libs/libscicompletion_algo_la-toolsdictionary.o create mode 100755 modules/completion/src/c/DllmainCompletion.c create mode 100755 modules/completion/src/c/Scilab_windows_Import.def create mode 100755 modules/completion/src/c/completeLine.c create mode 100755 modules/completion/src/c/completeLine_wrap_java.c create mode 100755 modules/completion/src/c/completeLine_wrap_java.h create mode 100755 modules/completion/src/c/completion.c create mode 100755 modules/completion/src/c/completion.rc create mode 100755 modules/completion/src/c/completion.vcxproj create mode 100755 modules/completion/src/c/completion.vcxproj.filters create mode 100755 modules/completion/src/c/completion_generic.c create mode 100755 modules/completion/src/c/completion_generic.h create mode 100755 modules/completion/src/c/completion_wrap_java.c create mode 100755 modules/completion/src/c/completion_wrap_java.h create mode 100755 modules/completion/src/c/core_Import.def create mode 100755 modules/completion/src/c/getCommonPart.c create mode 100755 modules/completion/src/c/getPartLine.c create mode 100755 modules/completion/src/c/getfieldsdictionary.c create mode 100755 modules/completion/src/c/getfilesdictionary.c create mode 100755 modules/completion/src/c/getfilesdictionary.h create mode 100755 modules/completion/src/c/getmacrosdictionary.c create mode 100755 modules/completion/src/c/libscicompletion_algo_la-completeLine.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-completeLine_wrap_java.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-completion.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-completion_generic.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-completion_wrap_java.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-getCommonPart.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-getPartLine.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-getfieldsdictionary.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-getfilesdictionary.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-getmacrosdictionary.lo create mode 100755 modules/completion/src/c/libscicompletion_algo_la-toolsdictionary.lo create mode 100755 modules/completion/src/c/toolsdictionary.c create mode 100755 modules/completion/src/c/toolsdictionary.h create mode 100755 modules/completion/src/cpp/.deps/.dirstamp create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-EOFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-FieldsManager.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-HandleFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-StructFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLDocFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLElemFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLListFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLNsFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLSetFieldsGetter.Plo create mode 100755 modules/completion/src/cpp/.deps/libscicompletion_algo_la-getfields.Plo create mode 100755 modules/completion/src/cpp/.dirstamp create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-EOFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-FieldsManager.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-HandleFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-StructFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-UnknownMlistFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLAttrFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLDocFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLElemFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLListFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLNsFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLSetFieldsGetter.o create mode 100755 modules/completion/src/cpp/.libs/libscicompletion_algo_la-getfields.o create mode 100755 modules/completion/src/cpp/EOFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/EOFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/FieldsGetter.hxx create mode 100755 modules/completion/src/cpp/FieldsManager.cpp create mode 100755 modules/completion/src/cpp/FieldsManager.hxx create mode 100755 modules/completion/src/cpp/HandleFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/HandleFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/StructFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/StructFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/UnknownMlistFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/UnknownMlistFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLAttrFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLAttrFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLDocFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLDocFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLElemFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLElemFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLListFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLListFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLNsFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLNsFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/XMLSetFieldsGetter.cpp create mode 100755 modules/completion/src/cpp/XMLSetFieldsGetter.hxx create mode 100755 modules/completion/src/cpp/getfields.cpp create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-FieldsManager.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo create mode 100755 modules/completion/src/cpp/libscicompletion_algo_la-getfields.lo create mode 100755 modules/completion/src/java/org/scilab/modules/completion/AbstractSciCompletionWindow.java create mode 100755 modules/completion/src/java/org/scilab/modules/completion/Completion.java create mode 100755 modules/completion/src/java/org/scilab/modules/completion/CompletionJNI.java create mode 100755 modules/completion/src/jni/.deps/.dirstamp create mode 100755 modules/completion/src/jni/.deps/libscicompletion_algo_la-Completion_wrap.Plo create mode 100755 modules/completion/src/jni/.dirstamp create mode 100755 modules/completion/src/jni/.libs/libscicompletion_algo_la-Completion_wrap.o create mode 100755 modules/completion/src/jni/Completion.i create mode 100755 modules/completion/src/jni/Completion_wrap.c create mode 100755 modules/completion/src/jni/libscicompletion_algo_la-Completion_wrap.lo create mode 100755 modules/completion/src/nocompletion/nocompletion.c create mode 100755 modules/completion/src/nocompletion/nocompletion.rc create mode 100755 modules/completion/src/nocompletion/nocompletion.vcxproj create mode 100755 modules/completion/src/nocompletion/nocompletion.vcxproj.filters create mode 100755 modules/completion/tests/nonreg_tests/bug_10982.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_10982.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_12393.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_12393.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_2848.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_2848.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3051.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3051.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3297.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3297.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3306.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3306.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3398.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3398.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3399.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3399.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3681.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3681.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_3757.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_3757.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4039.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4039.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4067.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4067.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4095.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4095.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4263.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4263.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4315.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4315.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4332.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4332.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4365.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4365.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4421.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4421.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4438.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4438.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4626.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4626.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4737.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4737.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_4838.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_4838.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_5105.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_5105.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_6320.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_6320.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_6739.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_6739.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_6751.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_6751.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_7123.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_7123.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_9300.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_9300.tst create mode 100755 modules/completion/tests/nonreg_tests/bug_9755.dia.ref create mode 100755 modules/completion/tests/nonreg_tests/bug_9755.tst create mode 100755 modules/completion/tests/unit_tests/completeline.dia.ref create mode 100755 modules/completion/tests/unit_tests/completeline.tst create mode 100755 modules/completion/tests/unit_tests/completion.dia.ref create mode 100755 modules/completion/tests/unit_tests/completion.tst create mode 100755 modules/completion/tests/unit_tests/getcommonpart.dia.ref create mode 100755 modules/completion/tests/unit_tests/getcommonpart.tst create mode 100755 modules/completion/tests/unit_tests/getfields.dia.ref create mode 100755 modules/completion/tests/unit_tests/getfields.tst create mode 100755 modules/completion/tests/unit_tests/getfilepartlevel.dia.ref create mode 100755 modules/completion/tests/unit_tests/getfilepartlevel.tst create mode 100755 modules/completion/tests/unit_tests/getpartlevel.dia.ref create mode 100755 modules/completion/tests/unit_tests/getpartlevel.tst create mode 100755 modules/completion/tests/utilities/build_primitives.sce create mode 100755 modules/completion/tests/utilities/sci_completeline.c create mode 100755 modules/completion/tests/utilities/sci_getcommonpart.c create mode 100755 modules/completion/tests/utilities/sci_getfields.c create mode 100755 modules/completion/tests/utilities/sci_getfilepartlevel.c create mode 100755 modules/completion/tests/utilities/sci_getpartlevel.c (limited to 'modules/completion') diff --git a/modules/completion/.libs/libscicompletion-algo.a b/modules/completion/.libs/libscicompletion-algo.a new file mode 100755 index 000000000..f3ffc46b1 Binary files /dev/null and b/modules/completion/.libs/libscicompletion-algo.a differ diff --git a/modules/completion/.libs/libscicompletion-algo.la b/modules/completion/.libs/libscicompletion-algo.la new file mode 120000 index 000000000..2341ce8c4 --- /dev/null +++ b/modules/completion/.libs/libscicompletion-algo.la @@ -0,0 +1 @@ +../libscicompletion-algo.la \ No newline at end of file diff --git a/modules/completion/.libs/libscicompletion.la b/modules/completion/.libs/libscicompletion.la new file mode 120000 index 000000000..aef43db83 --- /dev/null +++ b/modules/completion/.libs/libscicompletion.la @@ -0,0 +1 @@ +../libscicompletion.la \ No newline at end of file diff --git a/modules/completion/.libs/libscicompletion.lai b/modules/completion/.libs/libscicompletion.lai new file mode 100755 index 000000000..405440e54 --- /dev/null +++ b/modules/completion/.libs/libscicompletion.lai @@ -0,0 +1,41 @@ +# libscicompletion.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libscicompletion.so.5' + +# Names of this library. +library_names='libscicompletion.so.5.5.2 libscicompletion.so.5 libscicompletion.so' + +# The name of the static archive. +old_library='' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lpthread -ldl -lcurses -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libscicompletion. +current=10 +age=5 +revision=2 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/local/lib/scilab' diff --git a/modules/completion/.libs/libscicompletion.so b/modules/completion/.libs/libscicompletion.so new file mode 120000 index 000000000..3f3d8c158 --- /dev/null +++ b/modules/completion/.libs/libscicompletion.so @@ -0,0 +1 @@ +libscicompletion.so.5.5.2 \ No newline at end of file diff --git a/modules/completion/.libs/libscicompletion.so.5 b/modules/completion/.libs/libscicompletion.so.5 new file mode 120000 index 000000000..3f3d8c158 --- /dev/null +++ b/modules/completion/.libs/libscicompletion.so.5 @@ -0,0 +1 @@ +libscicompletion.so.5.5.2 \ No newline at end of file diff --git a/modules/completion/.libs/libscicompletion.so.5.5.2 b/modules/completion/.libs/libscicompletion.so.5.5.2 new file mode 100755 index 000000000..f38b3718b Binary files /dev/null and b/modules/completion/.libs/libscicompletion.so.5.5.2 differ diff --git a/modules/completion/Makefile b/modules/completion/Makefile new file mode 100755 index 000000000..32e9e5c89 --- /dev/null +++ b/modules/completion/Makefile @@ -0,0 +1,1803 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# modules/completion/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2007 - INRIA - Sylvestre LEDRU +# +# This file must be used under the terms of the CeCILL. +# This source file is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at +# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU +# Copyright (C) 2008 - INRIA - Pierre MARECHAL +# +# This file must be used under the terms of the CeCILL. +# This source file is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at +# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +# + +########## +### Makefile included stuff +### Target, variable, suffixes which are supposed to be useful in every makefile.am +########## + + + + +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/scilab +pkgincludedir = $(includedir)/scilab +pkglibdir = $(libdir)/scilab +pkglibexecdir = $(libexecdir)/scilab +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = x86_64-unknown-linux-gnu +DIST_COMMON = $(top_srcdir)/Makefile.incl.am $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/config/mkinstalldirs \ + $(top_srcdir)/config/depcomp \ + $(libscicompletion_la_include_HEADERS) +am__append_1 = java +subdir = modules/completion +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/backtrace.m4 \ + $(top_srcdir)/m4/compiler.m4 $(top_srcdir)/m4/curl.m4 \ + $(top_srcdir)/m4/docbook.m4 $(top_srcdir)/m4/doxygen.m4 \ + $(top_srcdir)/m4/fftw.m4 $(top_srcdir)/m4/fortran.m4 \ + $(top_srcdir)/m4/giws.m4 $(top_srcdir)/m4/hdf5.m4 \ + $(top_srcdir)/m4/intel_compiler.m4 \ + $(top_srcdir)/m4/java-thirdparty.m4 $(top_srcdir)/m4/java.m4 \ + $(top_srcdir)/m4/largefile.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/libsmath.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/libxml2.m4 $(top_srcdir)/m4/ltoptions.m4 \ + $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ + $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/macosx.m4 \ + $(top_srcdir)/m4/mpi.m4 $(top_srcdir)/m4/ocaml.m4 \ + $(top_srcdir)/m4/pcre.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/relocatable.m4 $(top_srcdir)/m4/swig.m4 \ + $(top_srcdir)/m4/symlinks.m4 $(top_srcdir)/m4/tcltk.m4 \ + $(top_srcdir)/m4/umfpack.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/modules/core/includes/machine.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(pkglibdir)" \ + "$(DESTDIR)$(libscicompletion_la_etcdir)" \ + "$(DESTDIR)$(libscicompletion_la_rootdir)" \ + "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" \ + "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" \ + "$(DESTDIR)$(libscicompletion_la_includedir)" +LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkglib_LTLIBRARIES) +libscicompletion_algo_la_LIBADD = +am__libscicompletion_algo_la_SOURCES_DIST = src/jni/Completion_wrap.c \ + src/c/completion.c src/c/completion_generic.c \ + src/c/getfilesdictionary.c src/c/getmacrosdictionary.c \ + src/c/getfieldsdictionary.c src/c/toolsdictionary.c \ + src/c/completion_wrap_java.c src/c/getPartLine.c \ + src/c/getCommonPart.c src/c/completeLine.c \ + src/c/completeLine_wrap_java.c src/cpp/FieldsManager.cpp \ + src/cpp/XMLFieldsGetter.cpp src/cpp/XMLDocFieldsGetter.cpp \ + src/cpp/XMLElemFieldsGetter.cpp \ + src/cpp/XMLAttrFieldsGetter.cpp src/cpp/XMLNsFieldsGetter.cpp \ + src/cpp/XMLListFieldsGetter.cpp src/cpp/XMLSetFieldsGetter.cpp \ + src/cpp/EOFieldsGetter.cpp \ + src/cpp/UnknownMlistFieldsGetter.cpp \ + src/cpp/StructFieldsGetter.cpp src/cpp/HandleFieldsGetter.cpp \ + src/cpp/getfields.cpp +am__dirstamp = $(am__leading_dot)dirstamp +am__objects_1 = \ + src/jni/libscicompletion_algo_la-Completion_wrap.lo +am__objects_2 = src/c/libscicompletion_algo_la-completion.lo \ + src/c/libscicompletion_algo_la-completion_generic.lo \ + src/c/libscicompletion_algo_la-getfilesdictionary.lo \ + src/c/libscicompletion_algo_la-getmacrosdictionary.lo \ + src/c/libscicompletion_algo_la-getfieldsdictionary.lo \ + src/c/libscicompletion_algo_la-toolsdictionary.lo \ + src/c/libscicompletion_algo_la-completion_wrap_java.lo \ + src/c/libscicompletion_algo_la-getPartLine.lo \ + src/c/libscicompletion_algo_la-getCommonPart.lo \ + src/c/libscicompletion_algo_la-completeLine.lo \ + src/c/libscicompletion_algo_la-completeLine_wrap_java.lo +am__objects_3 = src/cpp/libscicompletion_algo_la-FieldsManager.lo \ + src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-getfields.lo +am_libscicompletion_algo_la_OBJECTS = $(am__objects_1) \ + $(am__objects_2) $(am__objects_3) +libscicompletion_algo_la_OBJECTS = \ + $(am_libscicompletion_algo_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libscicompletion_la_DEPENDENCIES = libscicompletion-algo.la +am__objects_4 = sci_gateway/c/libscicompletion_la-sci_completion.lo \ + sci_gateway/c/libscicompletion_la-gw_completion.lo +am_libscicompletion_la_OBJECTS = $(am__objects_4) +libscicompletion_la_OBJECTS = $(am_libscicompletion_la_OBJECTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir)/modules/core/includes +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_$(V)) +am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_$(V)) +am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(libscicompletion_algo_la_SOURCES) \ + $(libscicompletion_la_SOURCES) +DIST_SOURCES = $(am__libscicompletion_algo_la_SOURCES_DIST) \ + $(libscicompletion_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(libscicompletion_la_etc_DATA) \ + $(libscicompletion_la_root_DATA) \ + $(libscicompletion_la_sci_gateway_DATA) \ + $(libscicompletion_la_testutilities_DATA) +HEADERS = $(libscicompletion_la_include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/shashank/scilab-master_5.5.2/config/missing aclocal-1.14 +ALL_LINGUAS = en_US fr_FR zh_CN zh_TW ru_RU ca_ES de_DE es_ES pt_BR ja_JP it_IT uk_UA pl_PL cs_CZ +ALL_LINGUAS_DOC = en_US fr_FR pt_BR ja_JP ru_RU +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +ANT = /usr/bin/ant +ANTLR = /usr/share/java/antlr.jar +AR = ar +ARPACK_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -larpack +ASM3 = /usr/share/java/asm3-3.3.2.jar +AUTOCONF = ${SHELL} /home/shashank/scilab-master_5.5.2/config/missing autoconf +AUTOHEADER = ${SHELL} /home/shashank/scilab-master_5.5.2/config/missing autoheader +AUTOMAKE = ${SHELL} /home/shashank/scilab-master_5.5.2/config/missing automake-1.14 +AVALON_FRAMEWORK = /home/shashank/scilab-master_5.5.2/thirdparty/avalon-framework.jar +AWK = mawk +BATIK = /home/shashank/scilab-master_5.5.2/thirdparty/batik-all-1.7.jar +BLAS_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lblas +CC = gcc +CCACHE = +CCDEPMODE = depmode=gcc3 +CFLAGS = -g -O2 +CHECKSTYLE = +COBERTURA = /usr/share/java/cobertura.jar +COMMONS_BEANUTILS = +COMMONS_IO = /home/shashank/scilab-master_5.5.2/thirdparty/commons-io.jar +COMMONS_LOGGING = /home/shashank/scilab-master_5.5.2/thirdparty/commons-logging.jar +CPP = gcc -E +CPPFLAGS = +CURL_CFLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include +CURL_CONFIG = /home/shashank/scilab-master_5.5.2/usr/bin/curl-config +CURL_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lcurl -L/home/scilab/work/linux-prerequisites-sources/trunk/Dev-Tools/SE/Prerequirements/linux_x64/usr/lib -L/home/scilab/work/linux-prerequisites-sources/trunk/Dev-Tools/SE/Prerequirements/linux_x64/usr/lib -lssl -lcrypto -lrt -lz +CURL_VERSION = libcurl 7.19.7 +CXX = g++ +CXXCPP = g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = -g -O2 +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEMOTOOLS_ENABLE = yes +DEPDIR = .deps +DLLTOOL = false +DOCBOOK_ROOT = /home/shashank/scilab-master_5.5.2/thirdparty/docbook/ +DOXYGEN_BIN = +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +ECJ = /home/shashank/scilab-master_5.5.2/thirdparty/ecj.jar +EGREP = /bin/grep -E +EXEEXT = +F77 = gfortran +FFLAGS = -g -O2 +FFTW3_LIB = -L/home/shashank/scilab-master_5.5.2/usr/lib -lfftw3 +FFTW_ENABLE = yes +FGREP = /bin/grep -F +FLEXDOCK = /home/shashank/scilab-master_5.5.2/thirdparty/flexdock-1.2.4.jar +FLIBS = -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. -lpthread -ldl -lcurses -lgfortran -lm -lquadmath +FOP = /home/shashank/scilab-master_5.5.2/thirdparty/fop.jar +FREEHEP_GRAPHICS2D = /home/shashank/scilab-master_5.5.2/thirdparty/freehep-graphics2d.jar +FREEHEP_GRAPHICSIO = /home/shashank/scilab-master_5.5.2/thirdparty/freehep-graphicsio.jar +FREEHEP_GRAPHICSIO_EMF = /home/shashank/scilab-master_5.5.2/thirdparty/freehep-graphicsio-emf.jar +FREEHEP_IO = /home/shashank/scilab-master_5.5.2/thirdparty/freehep-io.jar +FREEHEP_UTIL = /home/shashank/scilab-master_5.5.2/thirdparty/freehep-util.jar +GENHTML = +GETTEXT_MACRO_VERSION = 0.19 +GIWS_BIN = +GLUEGEN2_RT = /home/shashank/scilab-master_5.5.2/thirdparty/gluegen2-rt.jar +GMSGFMT = /usr/bin/msgfmt +GMSGFMT_015 = /usr/bin/msgfmt +GRAPHICS_ENABLE = yes +GREP = /bin/grep +GUI_ENABLE = yes +HDF5_CFLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include +HDF5_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lhdf5 -lhdf5_hl +HELP_ENABLE = yes +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +INTLLIBS = +INTL_MACOSX_LIBS = +JAR = /usr/lib/jvm/java-8-openjdk-amd64/bin/jar +JAVA = /usr/lib/jvm/java-8-openjdk-amd64/bin/java +JAVAC = /usr/lib/jvm/java-8-openjdk-amd64/bin/javac +JAVAC_DEBUG = off +JAVADOC = /usr/lib/jvm/java-8-openjdk-amd64/bin/javadoc +JAVAH = /usr/lib/jvm/java-8-openjdk-amd64/bin/javah +JAVASCI_ENABLE = yes +JAVA_ENABLE = yes +JAVA_G = /usr/lib/jvm/java-8-openjdk-amd64/bin/java +JAVA_HOME = /usr/lib/jvm/java-8-openjdk-amd64 +JAVA_JNI_INCLUDE = -I/usr/lib/jvm/java-8-openjdk-amd64/include -I/usr/lib/jvm/java-8-openjdk-amd64/include/linux +JAVA_JNI_LIBS = -L/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64 -ljava -lverify -L/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server -ljvm +JDB = /usr/lib/jvm/java-8-openjdk-amd64/bin/jdb +JEUCLID_CORE = /home/shashank/scilab-master_5.5.2/thirdparty/jeuclid-core.jar +JGRAPHX = /home/shashank/scilab-master_5.5.2/thirdparty/jgraphx.jar +JHALL = /home/shashank/scilab-master_5.5.2/thirdparty/jhall.jar +JLATEXMATH = /home/shashank/scilab-master_5.5.2/thirdparty/jlatexmath-1.0.3.jar +JLATEXMATH_FOP = /home/shashank/scilab-master_5.5.2/thirdparty/jlatexmath-fop-1.0.3.jar +JOGL2 = /home/shashank/scilab-master_5.5.2/thirdparty/jogl2.jar +JROSETTA_API = /home/shashank/scilab-master_5.5.2/thirdparty/jrosetta-API.jar +JROSETTA_ENGINE = /home/shashank/scilab-master_5.5.2/thirdparty/jrosetta-engine.jar +JUNIT4 = /usr/share/java/junit4.jar +LAPACK_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -llapack +LCOV = +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = -Wl,--no-as-needed +LIBICONV = -liconv +LIBINTL = +LIBM = -lm +LIBOBJS = +LIBS = -lpthread -ldl -lcurses -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LOGGING_LEVEL = SEVERE +LOOKS = /home/shashank/scilab-master_5.5.2/thirdparty/looks-2.1.1.jar +LTLIBICONV = -liconv +LTLIBINTL = +LTLIBOBJS = +MAINT = # +MAKEINFO = ${SHELL} /home/shashank/scilab-master_5.5.2/config/missing makeinfo +MANIFEST_TOOL = : +MATIO_CFLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include +MATIO_ENABLE = yes +MATIO_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lm -lz -lmatio -lhdf5 +MKDIR_P = /bin/mkdir -p +MPI_ENABLE = no +MSGCAT = /usr/bin/msgcat +MSGFMT = /usr/bin/msgfmt +MSGFMT_015 = /usr/bin/msgfmt +MSGMERGE = /usr/bin/msgmerge +NM = nm +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OCAMLC = ocamlc +OCAMLDEP = ocamldep +OCAMLLEX = ocamllex +OCAMLOPT = ocamlopt +OCAMLYACC = ocamlyacc +OPENMPI_CC = +OPENMPI_CFLAGS = +OPENMPI_CXX = +OPENMPI_CXXFLAGS = +OPENMPI_LIBS = +OPENMP_CFLAGS = -fopenmp +OPENMP_CXXFLAGS = -fopenmp +OPENMP_ENABLE = yes +OPENMP_LIBS = -lgomp -lstdc++ +OTOOL = +OTOOL64 = +PACKAGE = scilab +PACKAGE_BUGREPORT = http://bugzilla.scilab.org/ +PACKAGE_NAME = Scilab +PACKAGE_STRING = Scilab 5 +PACKAGE_TARNAME = scilab +PACKAGE_URL = +PACKAGE_VERSION = 5 +PATH_SEPARATOR = : +PCRE_CFLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include +PCRE_CONFIG = /home/shashank/scilab-master_5.5.2/usr/bin/pcre-config +PCRE_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lpcreposix -lpcre +PCRE_VERSION = 8.35 +PKG_CONFIG = /usr/bin/pkg-config +POSUB = po +POW_LIB = +PYTHON = +RANLIB = ranlib +RELOCATABLE = no +RT_LIB = -lrt +SAXON = /home/shashank/scilab-master_5.5.2/thirdparty/saxon9he.jar +SCILAB_BINARY_VERSION = 5.5.2 +SCILAB_LIBRARY_VERSION = 5:5:2 +SCILAB_VERSION_MAINTENANCE = 2 +SCILAB_VERSION_MAJOR = 5 +SCILAB_VERSION_MINOR = 5 +SCIRENDERER = ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar +SCIRENDERER_CP = $SCILAB/modules/scirenderer/jar/scirenderer.jar +SCI_CFLAGS = -D_LARGEFILE64_SOURCE -DNDEBUG -m64 -fno-stack-protector +SCI_CXXFLAGS = -DNDEBUG -fno-stack-protector +SCI_FFLAGS = -DNDEBUG -m64 -fPIC +SCI_LDFLAGS = +SED = /bin/sed +SET_MAKE = +SET_RELOCATABLE = +SHELL = /bin/bash +SKINLF = /home/shashank/scilab-master_5.5.2/thirdparty/skinlf.jar +SPLINT = no +STRIP = strip +SWIG_BIN = +SWIG_JAVA = +SWIG_RUNTIME_LIBS_DIR = +SWIG_SCILAB = +TCLTK_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -ltk8.5 -L/home/shashank/scilab-master_5.5.2/usr/lib -ltcl8.5 -ldl +TCL_INC_PATH = -I/home/shashank/scilab-master_5.5.2/usr/include +TK_INC_PATH = -I/home/shashank/scilab-master_5.5.2/usr/include +UMFPACK_CFLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include +UMFPACK_ENABLE = yes +UMFPACK_LIB = -L/home/shashank/scilab-master_5.5.2/usr/lib -lumfpack -lamd +USE_NLS = yes +VERSION = 5 +WITH_OCAML = +WITH_TKSCI = yes +XCOS_ENABLE = yes +XGETTEXT = /usr/bin/xgettext +XGETTEXT_015 = /usr/bin/xgettext +XGETTEXT_EXTRA_OPTIONS = +XMKMF = +XMLGRAPHICS_COMMONS = /home/shashank/scilab-master_5.5.2/thirdparty/xmlgraphics-commons-1.4.jar +XML_APIS_EXT = /home/shashank/scilab-master_5.5.2/thirdparty/xml-apis-ext.jar +XML_CONFIG = /home/shashank/scilab-master_5.5.2/usr/bin/xml2-config +XML_FLAGS = -I/home/shashank/scilab-master_5.5.2/usr/include/libxml2 +XML_LIBS = -L/home/shashank/scilab-master_5.5.2/usr/lib -lxml2 -L/home/scilab/work/linux-prerequisites-sources/trunk/Dev-Tools/SE/Prerequirements/linux_x64/usr/lib -lz -lm -ldl +XML_VERSION = 2.9.1 +X_CFLAGS = +X_EXTRA_LIBS = +X_LIBS = +X_PRE_LIBS = +abs_builddir = /home/shashank/scilab-master_5.5.2/modules/completion +abs_srcdir = /home/shashank/scilab-master_5.5.2/modules/completion +abs_top_builddir = /home/shashank/scilab-master_5.5.2 +abs_top_srcdir = /home/shashank/scilab-master_5.5.2 +ac_ct_AR = ar +ac_ct_CC = gcc +ac_ct_CXX = g++ +ac_ct_DUMPBIN = +ac_ct_F77 = gfortran +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +cxx_present = yes +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-unknown-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/shashank/scilab-master_5.5.2/config/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../../ +top_builddir = ../.. +top_srcdir = ../.. + +#List of the c files +COMPLETION_JNI_SOURCES = src/jni/Completion_wrap.c +USEANT = 1 + +# List of the c files +COMPLETION_C_SOURCES = src/c/completion.c \ +src/c/completion_generic.c \ +src/c/getfilesdictionary.c \ +src/c/getmacrosdictionary.c \ +src/c/getfieldsdictionary.c \ +src/c/toolsdictionary.c \ +src/c/completion_wrap_java.c \ +src/c/getPartLine.c \ +src/c/getCommonPart.c \ +src/c/completeLine.c \ +src/c/completeLine_wrap_java.c + +COMPLETION_CXX_SOURCES = src/cpp/FieldsManager.cpp \ + src/cpp/XMLFieldsGetter.cpp \ + src/cpp/XMLDocFieldsGetter.cpp \ + src/cpp/XMLElemFieldsGetter.cpp \ + src/cpp/XMLAttrFieldsGetter.cpp \ + src/cpp/XMLNsFieldsGetter.cpp \ + src/cpp/XMLListFieldsGetter.cpp \ + src/cpp/XMLSetFieldsGetter.cpp \ + src/cpp/EOFieldsGetter.cpp \ + src/cpp/UnknownMlistFieldsGetter.cpp \ + src/cpp/StructFieldsGetter.cpp \ + src/cpp/HandleFieldsGetter.cpp \ + src/cpp/getfields.cpp + + +# List of the gateway c files +GATEWAY_C_SOURCES = sci_gateway/c/sci_completion.c \ +sci_gateway/c/gw_completion.c + + +# Includes need for the compilation +libscicompletion_la_CPPFLAGS = -I$(srcdir)/includes/ \ + -I$(srcdir)/src/c/ \ + -I$(srcdir)/src/cpp/ \ + -I$(top_srcdir)/modules/api_scilab/includes/ \ + -I$(top_srcdir)/modules/functions/includes/ \ + -I$(top_srcdir)/modules/localization/includes/ \ + -I$(top_srcdir)/modules/output_stream/includes/ \ + -I$(top_srcdir)/modules/graphics/includes/ \ + -I$(top_srcdir)/modules/fileio/includes/ \ + -I$(top_srcdir)/modules/string/includes/ \ + -I$(top_srcdir)/modules/xml/includes/ \ + -I$(top_srcdir)/modules/xml/src/cpp/ \ + -I$(top_srcdir)/modules/external_objects/includes \ + $(JAVA_JNI_INCLUDE) \ + $(XML_FLAGS) \ + $(AM_CPPFLAGS) + + +# Name of the future library (.la will be replace by .so, .a, etc regarding +# the system) +pkglib_LTLIBRARIES = libscicompletion.la +noinst_LTLIBRARIES = libscicompletion-algo.la + +# All the sources needed by libscicompletion.la +libscicompletion_algo_la_SOURCES = $(COMPLETION_JNI_SOURCES) $(COMPLETION_C_SOURCES) $(COMPLETION_CXX_SOURCES) +libscicompletion_la_SOURCES = $(GATEWAY_C_SOURCES) +libscicompletion_algo_la_CPPFLAGS = $(libscicompletion_la_CPPFLAGS) + +# For the code check (splint) +CHECK_SRC = $(COMPLETION_C_SOURCES) $(GATEWAY_C_SOURCES) +INCLUDE_FLAGS = $(libscicompletion_la_CPPFLAGS) +libscicompletion_la_LIBADD = libscicompletion-algo.la + +#### Name of the module and the path ###### +modulename = completion + +#### completion : Conf files #### +libscicompletion_la_rootdir = $(mydatadir) +libscicompletion_la_root_DATA = license.txt + +#### completion : init scripts #### +libscicompletion_la_etcdir = $(mydatadir)/etc +libscicompletion_la_etc_DATA = etc/completion.quit etc/completion.start + +#### completion : gateway declaration #### +libscicompletion_la_sci_gatewaydir = $(mydatadir)/sci_gateway +libscicompletion_la_sci_gateway_DATA = sci_gateway/completion_gateway.xml + +#### completion : include files #### +libscicompletion_la_includedir = $(pkgincludedir) +libscicompletion_la_include_HEADERS = includes/gw_completion.h \ +includes/completion.h \ +includes/getCommonPart.h \ +includes/getPartLine.h \ +includes/dynlib_completion.h \ +includes/completeLine.h + + +#### completion : test file #### +libscicompletion_la_testutilitiesdir = $(mydatadir)/tests/utilities +libscicompletion_la_testutilities_DATA = tests/utilities/build_primitives.sce \ +tests/utilities/sci_completeline.c \ +tests/utilities/sci_getcommonpart.c \ +tests/utilities/sci_getfields.c \ +tests/utilities/sci_getfilepartlevel.c \ +tests/utilities/sci_getpartlevel.c + + +#### SWIG Declaration #### +SWIG_WRAPPERS = src/jni/Completion.i +#BUILT_SOURCES = swig + +# Where all the Scilab stuff is installed (macros, help, ...) +mydatadir = $(pkgdatadir)/modules/$(modulename) + +# Set AM_* SCI detected settings +AM_CPPFLAGS = $(SCI_CPPFLAGS) +AM_CFLAGS = $(SCI_CFLAGS) +AM_CXXFLAGS = $(SCI_CXXFLAGS) +# append includes to AM_FFLAGS to manage fortran includes +AM_FFLAGS = $(SCI_FFLAGS) -I$(top_srcdir)/modules/core/includes/ + +# Tag shared libraries with the Scilab version +AM_LDFLAGS = $(SCI_LDFLAGS) -version-number $(SCILAB_LIBRARY_VERSION) + +# splint options +SPLINT_OPTIONS = -weak -booltype BOOL + +########################### JAVA ###################################### +#### We are delegating java compilation to ant... Thanks to that +#### the procedure will be the same with Microsoft Windows (C) +#### and Linux/Unix +####################################################################### +TARGETS_ALL = $(am__append_1) + +################ MACROS ###################### +# Rule to build a macro +# NOT USED AT THE MOMENT +SUFFIXES = .sci + +########### INSTALL DOCUMENTATION ################### + +# Install documentation files into the right target +# We do not use the automake mechanism (libxxxx_la_help_fr_DATA) because +# automake needs the html files to be present which is not the case when +# we are building Scilab + +# Where it should be installed +pkgdocdir = $(mydatadir) + +# What is the mask of the help source +DOCMASKXML = *.xml + +# What is the mask of the MathML sources +DOCMASKMML = *.mml + +########### INSTALL DATA ################### +# Install macros, help & demos +# Where it should be installed +pkgmacrosdir = $(mydatadir) +# Which directory we process +MACRODIRS = macros/ +# Mask of the Scilab sources macros +MACROMASK = *.sci +# Mask of the Scilab executable sources macros +MACROBUILDMASK = *.sce +# Mask of the Scilab compiled macros +MACROBINMASK = *.bin +# List of the standard directory for tests +TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java +# Where the demos should be installed +pkgdemosdir = $(mydatadir) +# List of the standard directory for demos +DEMOS_DIR = demos +# List of the standard directory for examples +EXAMPLES_DIR = examples +# Where to export JAVA archives (.jar) +JARDIR = jar/ +# JAR files mask +JARMASK = *.jar +# Chapter file +HELP_CHAPTERDIR = help/ +HELP_CHAPTERFILE = addchapter.sce +HELP_CHAPTERLANG = en_US fr_FR pt_BR +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .sci .bin .c .cpp .lo .o .obj +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(top_srcdir)/Makefile.incl.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/completion/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign modules/completion/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/Makefile.incl.am: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ + } + +uninstall-pkglibLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ + done + +clean-pkglibLTLIBRARIES: + -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) + @list='$(pkglib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } +src/jni/$(am__dirstamp): + @$(MKDIR_P) src/jni + @: > src/jni/$(am__dirstamp) +src/jni/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/jni/$(DEPDIR) + @: > src/jni/$(DEPDIR)/$(am__dirstamp) +src/jni/libscicompletion_algo_la-Completion_wrap.lo: \ + src/jni/$(am__dirstamp) src/jni/$(DEPDIR)/$(am__dirstamp) +src/c/$(am__dirstamp): + @$(MKDIR_P) src/c + @: > src/c/$(am__dirstamp) +src/c/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/c/$(DEPDIR) + @: > src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion_generic.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getfilesdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getmacrosdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getfieldsdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-toolsdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion_wrap_java.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getPartLine.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getCommonPart.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completeLine.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completeLine_wrap_java.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/cpp/$(am__dirstamp): + @$(MKDIR_P) src/cpp + @: > src/cpp/$(am__dirstamp) +src/cpp/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/cpp/$(DEPDIR) + @: > src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-FieldsManager.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-getfields.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) + +libscicompletion-algo.la: $(libscicompletion_algo_la_OBJECTS) $(libscicompletion_algo_la_DEPENDENCIES) $(EXTRA_libscicompletion_algo_la_DEPENDENCIES) + $(AM_V_CXXLD)$(CXXLINK) $(libscicompletion_algo_la_OBJECTS) $(libscicompletion_algo_la_LIBADD) $(LIBS) +sci_gateway/c/$(am__dirstamp): + @$(MKDIR_P) sci_gateway/c + @: > sci_gateway/c/$(am__dirstamp) +sci_gateway/c/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) sci_gateway/c/$(DEPDIR) + @: > sci_gateway/c/$(DEPDIR)/$(am__dirstamp) +sci_gateway/c/libscicompletion_la-sci_completion.lo: \ + sci_gateway/c/$(am__dirstamp) \ + sci_gateway/c/$(DEPDIR)/$(am__dirstamp) +sci_gateway/c/libscicompletion_la-gw_completion.lo: \ + sci_gateway/c/$(am__dirstamp) \ + sci_gateway/c/$(DEPDIR)/$(am__dirstamp) + +libscicompletion.la: $(libscicompletion_la_OBJECTS) $(libscicompletion_la_DEPENDENCIES) $(EXTRA_libscicompletion_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(pkglibdir) $(libscicompletion_la_OBJECTS) $(libscicompletion_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + -rm -f sci_gateway/c/*.$(OBJEXT) + -rm -f sci_gateway/c/*.lo + -rm -f src/c/*.$(OBJEXT) + -rm -f src/c/*.lo + -rm -f src/cpp/*.$(OBJEXT) + -rm -f src/cpp/*.lo + -rm -f src/jni/*.$(OBJEXT) + -rm -f src/jni/*.lo + +distclean-compile: + -rm -f *.tab.c + +include sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Plo +include sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Plo +include src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Plo +include src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Plo +include src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Plo + +.c.o: + $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ + $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ + $(am__mv) $$depbase.Tpo $$depbase.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ + $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ + $(am__mv) $$depbase.Tpo $$depbase.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ + $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ + $(am__mv) $$depbase.Tpo $$depbase.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +src/jni/libscicompletion_algo_la-Completion_wrap.lo: src/jni/Completion_wrap.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/jni/libscicompletion_algo_la-Completion_wrap.lo -MD -MP -MF src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Tpo -c -o src/jni/libscicompletion_algo_la-Completion_wrap.lo `test -f 'src/jni/Completion_wrap.c' || echo '$(srcdir)/'`src/jni/Completion_wrap.c + $(AM_V_at)$(am__mv) src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Tpo src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Plo +# $(AM_V_CC)source='src/jni/Completion_wrap.c' object='src/jni/libscicompletion_algo_la-Completion_wrap.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/jni/libscicompletion_algo_la-Completion_wrap.lo `test -f 'src/jni/Completion_wrap.c' || echo '$(srcdir)/'`src/jni/Completion_wrap.c + +src/c/libscicompletion_algo_la-completion.lo: src/c/completion.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Tpo -c -o src/c/libscicompletion_algo_la-completion.lo `test -f 'src/c/completion.c' || echo '$(srcdir)/'`src/c/completion.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Plo +# $(AM_V_CC)source='src/c/completion.c' object='src/c/libscicompletion_algo_la-completion.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion.lo `test -f 'src/c/completion.c' || echo '$(srcdir)/'`src/c/completion.c + +src/c/libscicompletion_algo_la-completion_generic.lo: src/c/completion_generic.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion_generic.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Tpo -c -o src/c/libscicompletion_algo_la-completion_generic.lo `test -f 'src/c/completion_generic.c' || echo '$(srcdir)/'`src/c/completion_generic.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Plo +# $(AM_V_CC)source='src/c/completion_generic.c' object='src/c/libscicompletion_algo_la-completion_generic.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion_generic.lo `test -f 'src/c/completion_generic.c' || echo '$(srcdir)/'`src/c/completion_generic.c + +src/c/libscicompletion_algo_la-getfilesdictionary.lo: src/c/getfilesdictionary.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getfilesdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getfilesdictionary.lo `test -f 'src/c/getfilesdictionary.c' || echo '$(srcdir)/'`src/c/getfilesdictionary.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Plo +# $(AM_V_CC)source='src/c/getfilesdictionary.c' object='src/c/libscicompletion_algo_la-getfilesdictionary.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getfilesdictionary.lo `test -f 'src/c/getfilesdictionary.c' || echo '$(srcdir)/'`src/c/getfilesdictionary.c + +src/c/libscicompletion_algo_la-getmacrosdictionary.lo: src/c/getmacrosdictionary.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getmacrosdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getmacrosdictionary.lo `test -f 'src/c/getmacrosdictionary.c' || echo '$(srcdir)/'`src/c/getmacrosdictionary.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Plo +# $(AM_V_CC)source='src/c/getmacrosdictionary.c' object='src/c/libscicompletion_algo_la-getmacrosdictionary.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getmacrosdictionary.lo `test -f 'src/c/getmacrosdictionary.c' || echo '$(srcdir)/'`src/c/getmacrosdictionary.c + +src/c/libscicompletion_algo_la-getfieldsdictionary.lo: src/c/getfieldsdictionary.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getfieldsdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getfieldsdictionary.lo `test -f 'src/c/getfieldsdictionary.c' || echo '$(srcdir)/'`src/c/getfieldsdictionary.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Plo +# $(AM_V_CC)source='src/c/getfieldsdictionary.c' object='src/c/libscicompletion_algo_la-getfieldsdictionary.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getfieldsdictionary.lo `test -f 'src/c/getfieldsdictionary.c' || echo '$(srcdir)/'`src/c/getfieldsdictionary.c + +src/c/libscicompletion_algo_la-toolsdictionary.lo: src/c/toolsdictionary.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-toolsdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Tpo -c -o src/c/libscicompletion_algo_la-toolsdictionary.lo `test -f 'src/c/toolsdictionary.c' || echo '$(srcdir)/'`src/c/toolsdictionary.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Plo +# $(AM_V_CC)source='src/c/toolsdictionary.c' object='src/c/libscicompletion_algo_la-toolsdictionary.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-toolsdictionary.lo `test -f 'src/c/toolsdictionary.c' || echo '$(srcdir)/'`src/c/toolsdictionary.c + +src/c/libscicompletion_algo_la-completion_wrap_java.lo: src/c/completion_wrap_java.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion_wrap_java.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Tpo -c -o src/c/libscicompletion_algo_la-completion_wrap_java.lo `test -f 'src/c/completion_wrap_java.c' || echo '$(srcdir)/'`src/c/completion_wrap_java.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Plo +# $(AM_V_CC)source='src/c/completion_wrap_java.c' object='src/c/libscicompletion_algo_la-completion_wrap_java.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion_wrap_java.lo `test -f 'src/c/completion_wrap_java.c' || echo '$(srcdir)/'`src/c/completion_wrap_java.c + +src/c/libscicompletion_algo_la-getPartLine.lo: src/c/getPartLine.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getPartLine.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Tpo -c -o src/c/libscicompletion_algo_la-getPartLine.lo `test -f 'src/c/getPartLine.c' || echo '$(srcdir)/'`src/c/getPartLine.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Plo +# $(AM_V_CC)source='src/c/getPartLine.c' object='src/c/libscicompletion_algo_la-getPartLine.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getPartLine.lo `test -f 'src/c/getPartLine.c' || echo '$(srcdir)/'`src/c/getPartLine.c + +src/c/libscicompletion_algo_la-getCommonPart.lo: src/c/getCommonPart.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getCommonPart.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Tpo -c -o src/c/libscicompletion_algo_la-getCommonPart.lo `test -f 'src/c/getCommonPart.c' || echo '$(srcdir)/'`src/c/getCommonPart.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Plo +# $(AM_V_CC)source='src/c/getCommonPart.c' object='src/c/libscicompletion_algo_la-getCommonPart.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getCommonPart.lo `test -f 'src/c/getCommonPart.c' || echo '$(srcdir)/'`src/c/getCommonPart.c + +src/c/libscicompletion_algo_la-completeLine.lo: src/c/completeLine.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completeLine.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Tpo -c -o src/c/libscicompletion_algo_la-completeLine.lo `test -f 'src/c/completeLine.c' || echo '$(srcdir)/'`src/c/completeLine.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Plo +# $(AM_V_CC)source='src/c/completeLine.c' object='src/c/libscicompletion_algo_la-completeLine.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completeLine.lo `test -f 'src/c/completeLine.c' || echo '$(srcdir)/'`src/c/completeLine.c + +src/c/libscicompletion_algo_la-completeLine_wrap_java.lo: src/c/completeLine_wrap_java.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completeLine_wrap_java.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Tpo -c -o src/c/libscicompletion_algo_la-completeLine_wrap_java.lo `test -f 'src/c/completeLine_wrap_java.c' || echo '$(srcdir)/'`src/c/completeLine_wrap_java.c + $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Plo +# $(AM_V_CC)source='src/c/completeLine_wrap_java.c' object='src/c/libscicompletion_algo_la-completeLine_wrap_java.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completeLine_wrap_java.lo `test -f 'src/c/completeLine_wrap_java.c' || echo '$(srcdir)/'`src/c/completeLine_wrap_java.c + +sci_gateway/c/libscicompletion_la-sci_completion.lo: sci_gateway/c/sci_completion.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sci_gateway/c/libscicompletion_la-sci_completion.lo -MD -MP -MF sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Tpo -c -o sci_gateway/c/libscicompletion_la-sci_completion.lo `test -f 'sci_gateway/c/sci_completion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_completion.c + $(AM_V_at)$(am__mv) sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Tpo sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Plo +# $(AM_V_CC)source='sci_gateway/c/sci_completion.c' object='sci_gateway/c/libscicompletion_la-sci_completion.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sci_gateway/c/libscicompletion_la-sci_completion.lo `test -f 'sci_gateway/c/sci_completion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_completion.c + +sci_gateway/c/libscicompletion_la-gw_completion.lo: sci_gateway/c/gw_completion.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sci_gateway/c/libscicompletion_la-gw_completion.lo -MD -MP -MF sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Tpo -c -o sci_gateway/c/libscicompletion_la-gw_completion.lo `test -f 'sci_gateway/c/gw_completion.c' || echo '$(srcdir)/'`sci_gateway/c/gw_completion.c + $(AM_V_at)$(am__mv) sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Tpo sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Plo +# $(AM_V_CC)source='sci_gateway/c/gw_completion.c' object='sci_gateway/c/libscicompletion_la-gw_completion.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sci_gateway/c/libscicompletion_la-gw_completion.lo `test -f 'sci_gateway/c/gw_completion.c' || echo '$(srcdir)/'`sci_gateway/c/gw_completion.c + +.cpp.o: + $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ + $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ + $(am__mv) $$depbase.Tpo $$depbase.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: + $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ + $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ + $(am__mv) $$depbase.Tpo $$depbase.Po +# $(AM_V_CXX)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: + $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ + $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ + $(am__mv) $$depbase.Tpo $$depbase.Plo +# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< + +src/cpp/libscicompletion_algo_la-FieldsManager.lo: src/cpp/FieldsManager.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-FieldsManager.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Tpo -c -o src/cpp/libscicompletion_algo_la-FieldsManager.lo `test -f 'src/cpp/FieldsManager.cpp' || echo '$(srcdir)/'`src/cpp/FieldsManager.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Plo +# $(AM_V_CXX)source='src/cpp/FieldsManager.cpp' object='src/cpp/libscicompletion_algo_la-FieldsManager.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-FieldsManager.lo `test -f 'src/cpp/FieldsManager.cpp' || echo '$(srcdir)/'`src/cpp/FieldsManager.cpp + +src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo: src/cpp/XMLFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo `test -f 'src/cpp/XMLFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo `test -f 'src/cpp/XMLFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo: src/cpp/XMLDocFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo `test -f 'src/cpp/XMLDocFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLDocFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLDocFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo `test -f 'src/cpp/XMLDocFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLDocFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo: src/cpp/XMLElemFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo `test -f 'src/cpp/XMLElemFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLElemFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLElemFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo `test -f 'src/cpp/XMLElemFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLElemFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo: src/cpp/XMLAttrFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo `test -f 'src/cpp/XMLAttrFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLAttrFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLAttrFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo `test -f 'src/cpp/XMLAttrFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLAttrFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo: src/cpp/XMLNsFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo `test -f 'src/cpp/XMLNsFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLNsFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLNsFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo `test -f 'src/cpp/XMLNsFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLNsFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo: src/cpp/XMLListFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo `test -f 'src/cpp/XMLListFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLListFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLListFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo `test -f 'src/cpp/XMLListFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLListFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo: src/cpp/XMLSetFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo `test -f 'src/cpp/XMLSetFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLSetFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/XMLSetFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo `test -f 'src/cpp/XMLSetFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLSetFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo: src/cpp/EOFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo `test -f 'src/cpp/EOFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/EOFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/EOFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo `test -f 'src/cpp/EOFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/EOFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo: src/cpp/UnknownMlistFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo `test -f 'src/cpp/UnknownMlistFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/UnknownMlistFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/UnknownMlistFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo `test -f 'src/cpp/UnknownMlistFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/UnknownMlistFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo: src/cpp/StructFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo `test -f 'src/cpp/StructFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/StructFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/StructFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo `test -f 'src/cpp/StructFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/StructFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo: src/cpp/HandleFieldsGetter.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo `test -f 'src/cpp/HandleFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/HandleFieldsGetter.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Plo +# $(AM_V_CXX)source='src/cpp/HandleFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo `test -f 'src/cpp/HandleFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/HandleFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-getfields.lo: src/cpp/getfields.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-getfields.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Tpo -c -o src/cpp/libscicompletion_algo_la-getfields.lo `test -f 'src/cpp/getfields.cpp' || echo '$(srcdir)/'`src/cpp/getfields.cpp + $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Plo +# $(AM_V_CXX)source='src/cpp/getfields.cpp' object='src/cpp/libscicompletion_algo_la-getfields.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ +# $(AM_V_CXX_no)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-getfields.lo `test -f 'src/cpp/getfields.cpp' || echo '$(srcdir)/'`src/cpp/getfields.cpp + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + -rm -rf sci_gateway/c/.libs sci_gateway/c/_libs + -rm -rf src/c/.libs src/c/_libs + -rm -rf src/cpp/.libs src/cpp/_libs + -rm -rf src/jni/.libs src/jni/_libs +install-libscicompletion_la_etcDATA: $(libscicompletion_la_etc_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_etc_DATA)'; test -n "$(libscicompletion_la_etcdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_etcdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_etcdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_etcdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_etcdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_etcDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_etc_DATA)'; test -n "$(libscicompletion_la_etcdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_etcdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_rootDATA: $(libscicompletion_la_root_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_root_DATA)'; test -n "$(libscicompletion_la_rootdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_rootdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_rootdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_rootdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_rootdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_rootDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_root_DATA)'; test -n "$(libscicompletion_la_rootdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_rootdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_sci_gatewayDATA: $(libscicompletion_la_sci_gateway_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_sci_gateway_DATA)'; test -n "$(libscicompletion_la_sci_gatewaydir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_sci_gatewayDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_sci_gateway_DATA)'; test -n "$(libscicompletion_la_sci_gatewaydir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_testutilitiesDATA: $(libscicompletion_la_testutilities_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_testutilities_DATA)'; test -n "$(libscicompletion_la_testutilitiesdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_testutilitiesDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_testutilities_DATA)'; test -n "$(libscicompletion_la_testutilitiesdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_includeHEADERS: $(libscicompletion_la_include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_include_HEADERS)'; test -n "$(libscicompletion_la_includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libscicompletion_la_includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(libscicompletion_la_includedir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_include_HEADERS)'; test -n "$(libscicompletion_la_includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) all-local +installdirs: + for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libscicompletion_la_etcdir)" "$(DESTDIR)$(libscicompletion_la_rootdir)" "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" "$(DESTDIR)$(libscicompletion_la_includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f sci_gateway/c/$(DEPDIR)/$(am__dirstamp) + -rm -f sci_gateway/c/$(am__dirstamp) + -rm -f src/c/$(DEPDIR)/$(am__dirstamp) + -rm -f src/c/$(am__dirstamp) + -rm -f src/cpp/$(DEPDIR)/$(am__dirstamp) + -rm -f src/cpp/$(am__dirstamp) + -rm -f src/jni/$(DEPDIR)/$(am__dirstamp) + -rm -f src/jni/$(am__dirstamp) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local \ + clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf sci_gateway/c/$(DEPDIR) src/c/$(DEPDIR) src/cpp/$(DEPDIR) src/jni/$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local \ + install-libscicompletion_la_etcDATA \ + install-libscicompletion_la_includeHEADERS \ + install-libscicompletion_la_rootDATA \ + install-libscicompletion_la_sci_gatewayDATA \ + install-libscicompletion_la_testutilitiesDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-pkglibLTLIBRARIES + +install-html: install-html-am + +install-html-am: install-html-local + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf sci_gateway/c/$(DEPDIR) src/c/$(DEPDIR) src/cpp/$(DEPDIR) src/jni/$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libscicompletion_la_etcDATA \ + uninstall-libscicompletion_la_includeHEADERS \ + uninstall-libscicompletion_la_rootDATA \ + uninstall-libscicompletion_la_sci_gatewayDATA \ + uninstall-libscicompletion_la_testutilitiesDATA \ + uninstall-pkglibLTLIBRARIES + +.MAKE: all check check-am install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am \ + check-local clean clean-generic clean-libtool clean-local \ + clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-html-local install-info \ + install-info-am install-libscicompletion_la_etcDATA \ + install-libscicompletion_la_includeHEADERS \ + install-libscicompletion_la_rootDATA \ + install-libscicompletion_la_sci_gatewayDATA \ + install-libscicompletion_la_testutilitiesDATA install-man \ + install-pdf install-pdf-am install-pkglibLTLIBRARIES \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-libscicompletion_la_etcDATA \ + uninstall-libscicompletion_la_includeHEADERS \ + uninstall-libscicompletion_la_rootDATA \ + uninstall-libscicompletion_la_sci_gatewayDATA \ + uninstall-libscicompletion_la_testutilitiesDATA \ + uninstall-pkglibLTLIBRARIES + + +# This target enables tests for Scilab +check-local: $(top_builddir)/scilab-bin test + if test -d $(mydatadir)/tests; then \ + @COMMAND="try test_run('$(modulename)');catch exit(-1);end;exit(0)"; export LANG=C; $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND"; \ + fi +check-code: + if test -f build.xml; then \ + $(ANT) checkstyle; \ + fi + if test -x "$(SPLINT)"; then \ + $(SPLINT) $(SPLINT_OPTIONS) -I$(top_srcdir)/modules/core/includes/ -I$(top_srcdir)/libs/MALLOC/includes/ -I$(top_srcdir)/modules/localization/includes/ $(INCLUDE_FLAGS) $(CHECK_SRC); \ + fi +java: +# Some configurations needs to export JAVA_HOME in the current env + @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \ + if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ + if test -f build.xml -a $$USEANT -eq 1; then \ + $(ANT); \ + fi + +clean-java: +# Some configurations needs to export JAVA_HOME in the current env + @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \ + if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ + if test -f build.xml -a $$USEANT -eq 1; then \ + $(ANT) clean; \ + fi; + +# If the user request for the SWIG generation of the wrappers Java => C/C++ +# We call the target swig-build on the variable SWIG_WRAPPERS + +#swig: $(SWIG_WRAPPERS) +# @SWIG_PACKAGENAME=org.scilab.modules.$(modulename); \ +# SWIG_OUTDIR=src/java/org/scilab/modules/$(modulename)/; \ +# if test -n "$(SWIG_WRAPPERS)"; then \ +# for file in $(SWIG_WRAPPERS) ; do \ +# echo "Swig process of $$file (Java) ..."; \ +# $(SWIG_BIN) $(SWIG_JAVA) -package $$SWIG_PACKAGENAME -outdir $$SWIG_OUTDIR $$file; \ +# done; \ +# fi + +#swig-scilab: $(SWIG_SCILAB_WRAPPERS) +# @SWIG_OUTDIR=src/swig/; \ +# if test -n "$(SWIG_SCILAB_WRAPPERS)"; then \ +# for file in $(SWIG_SCILAB_WRAPPERS) ; do \ +# echo "Swig process of $$file (Scilab) ..."; \ +# $(SWIG_BIN) $(SWIG_SCILAB) -outdir $$SWIG_OUTDIR $$file; \ +# done; \ +# fi + +# If the user request for the SWIG generation of the wrappers Java => C/C++ +# We call the target swig-build on the variable SWIG_WRAPPERS + +#giws: $(GIWS_WRAPPERS) +# @GIWS_OUTPUTDIR=src/jni/; \ +# MANDATORY_OPTIONS="--throws-exception-on-error --description-file"; \ +# if test -n "$(GIWS_WRAPPERS)"; then \ +# for file in $(GIWS_WRAPPERS) ; do \ +# echo "GIWS process of $$file ..."; \ +# if test -z "$(GIWS_OPTIONS)"; then \ +# $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \ +# else \ +# echo "Custom GIWS call with '$$GIWS_OPTIONS'"; \ +# $(GIWS_BIN) $$GIWS_OPTIONS --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \ +# fi \ +# done; \ +# fi + +#giws-exception: +# @GIWS_OUTPUTDIR=src/jni/;\ +# echo "GIWS: Generation of exception class ..."; \ +# $(GIWS_BIN) --generate-exception-class --output-dir $$GIWS_OUTPUTDIR + +macros: + -@( if test ! -x $(top_builddir)/scilab-bin; then \ + echo "Error : Cannot build $< : Scilab has not been built"; \ + else \ + $(top_builddir)/bin/scilab -ns -nwni -e "exec('macros/buildmacros.sce');quit;";\ + fi) + +# Removes the macros +clean-macros: +# Removes macros (*.bin generated from .sci) + @for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \ + echo "rm -f $(builddir)/$$dir/$(MACROBINMASK)"; \ + rm -f $(builddir)/$$dir/$(MACROBINMASK); \ + done + +test: +# More tests could be added here + @if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ + if test -f build.xml -a $$USEANT -eq 1; then \ + $(ANT) test; \ + fi + +all-local: $(TARGETS_ALL) + +.sci.bin: + -@( if test ! -x $(top_builddir)/scilab-bin; then \ + echo "Error : Cannot build $< : Scilab has not been build"; \ + else \ + echo "Creating $@"; \ + $(top_builddir)/bin/scilab -ns -nwni -e "exec('$(abs_srcdir)/$<');save('$(abs_srcdir)/$@');exit;"; \ + fi ) + +install-html-local: + +install-data-local-local: +# Mainly for javasci + @if test -d $(srcdir)/javadoc; then \ + cp -R $(srcdir)/javadoc $(DESTDIR)/$(mydatadir)/; \ + fi +# If the user wants the help sources to be installed + @echo "-------- Install of XML sources of help files --------"; \ + for lang in $(ALL_LINGUAS); do \ + if test -d $(srcdir)/help/$$lang; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/$$lang && \ + if ls -lLd $(srcdir)/help/$$lang/$(DOCMASKXML) >/dev/null 2>&1; then \ + for file in $(srcdir)/help/$$lang/$(DOCMASKXML) ; do \ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/$$lang" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/$$lang ; \ + done ; \ + fi; \ + fi; \ + done; \ + @echo "-------- Install of MathML sources --------"; \ + if test -d $(srcdir)/help/mml/; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/mml/ && \ + if ls -lLd $(srcdir)/help/mml/$(DOCMASKMML) >/dev/null 2>&1; then \ + for file in $(srcdir)/help/mml/$(DOCMASKMML) ; do \ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/mml" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/mml ; \ + done ; \ + fi; \ + fi +install-data-local: +# Install the tests + @echo "-------- Install tests (if any) --------"; \ + for dir in $(TESTS_DIR) $(TESTS_DIREXT) ; do \ + if test -d $(srcdir)/$$dir/; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \ + for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \ + if test -d "$(srcdir)/$$dir/$$file"; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir/$$file; \ + $(mkinstalldirs) "$(DESTDIR)$(pkgmacrosdir)/$$dir/$$file"; \ + else \ + echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \ + $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \ + fi \ + done; \ + fi; \ + done +# Install the help chapter + @echo "-------- Install the help chapter (if any) --------"; \ + for lang in $(HELP_CHAPTERLANG); do \ + HELPFILE=$(srcdir)/$(HELP_CHAPTERDIR)$$lang/$(HELP_CHAPTERFILE); \ + if test -f $$HELPFILE; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \ + echo $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \ + $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \ + fi; \ + done +# Install the demos & examples + @echo "-------- Install demos & examples (if any) --------"; \ + for dir in $(DEMOS_DIR) $(DEMOS_DIREXT) $(EXAMPLES_DIR) $(EXAMPLES_DIREXT) ; do \ + if test -d $(srcdir)/$$dir/; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir && \ + for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \ + if test -d "$(srcdir)/$$dir/$$file"; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir/$$file; \ + $(mkinstalldirs) "$(DESTDIR)$(pkgdocdir)/$$dir/$$file"; \ + else \ + echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \ + $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \ + fi \ + done; \ + fi; \ + done +# Install the macros + @echo "-------- Install macros (if any) --------"; \ + for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \ + $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \ + if test -d $(srcdir)/$$dir/; then \ + FILELIST="$(srcdir)/$$dir/$(MACROMASK) $(srcdir)/$$dir/$(MACROBINMASK) $(srcdir)/$$dir/$(MACROBUILDMASK) $(srcdir)/$$dir/names $(srcdir)/$$dir/lib";\ + if test -n "$(MACROSSPECIALEXT)"; then \ + specialExtDir=""; \ + for specialExt in $(MACROSSPECIALEXT); do \ + specialExtDir="$$specialExtDir $(srcdir)/$$dir/$$specialExt"; \ + done; \ + FILELIST="$$FILELIST $$specialExtDir"; \ + fi; \ + for file in `ls -1 $$FILELIST 2>/dev/null`; do \ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgmacrosdir)/$$dir" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgmacrosdir)/$$dir ; \ + done; \ + fi; \ + done +# Install java files (.jar) + @if ls -lLd $(srcdir)/$(JARDIR)$(JARMASK) >/dev/null 2>&1; then \ + echo "-------- Install jar files --------"; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(JARDIR); \ + for file in $(srcdir)/$(JARDIR)$(JARMASK); do\ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/$(JARDIR)" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/$(JARDIR) ; \ + done ; \ + fi + +########### CLEAN ################### +# Clean help (generated automatically by Scilab) +# It used to clean the macro (clean-macros) but this was causing +# make clean && make to fail Scilab startup +clean-local: clean-java +#clean-local: + +distclean-local: + rm -f $(builddir)/help/*/.last_successful_build_javaHelp $(builddir)/help/*/.list_* + +.PHONY: macros java swig giws + +# Provides macros compilation, Java compilation, cleaning +# If you want Makefile to call ant, added USEANT=1 + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/modules/completion/Makefile.am b/modules/completion/Makefile.am new file mode 100755 index 000000000..64fd61d68 --- /dev/null +++ b/modules/completion/Makefile.am @@ -0,0 +1,129 @@ +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2007 - INRIA - Sylvestre LEDRU +# +# This file must be used under the terms of the CeCILL. +# This source file is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at +# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +if GUI +#List of the c files +COMPLETION_JNI_SOURCES = src/jni/Completion_wrap.c +USEANT=1 + +endif + +# List of the c files +COMPLETION_C_SOURCES = src/c/completion.c \ +src/c/completion_generic.c \ +src/c/getfilesdictionary.c \ +src/c/getmacrosdictionary.c \ +src/c/getfieldsdictionary.c \ +src/c/toolsdictionary.c \ +src/c/completion_wrap_java.c \ +src/c/getPartLine.c \ +src/c/getCommonPart.c \ +src/c/completeLine.c \ +src/c/completeLine_wrap_java.c + +COMPLETION_CXX_SOURCES = src/cpp/FieldsManager.cpp \ + src/cpp/XMLFieldsGetter.cpp \ + src/cpp/XMLDocFieldsGetter.cpp \ + src/cpp/XMLElemFieldsGetter.cpp \ + src/cpp/XMLAttrFieldsGetter.cpp \ + src/cpp/XMLNsFieldsGetter.cpp \ + src/cpp/XMLListFieldsGetter.cpp \ + src/cpp/XMLSetFieldsGetter.cpp \ + src/cpp/EOFieldsGetter.cpp \ + src/cpp/UnknownMlistFieldsGetter.cpp \ + src/cpp/StructFieldsGetter.cpp \ + src/cpp/HandleFieldsGetter.cpp \ + src/cpp/getfields.cpp + +# List of the gateway c files +GATEWAY_C_SOURCES = sci_gateway/c/sci_completion.c \ +sci_gateway/c/gw_completion.c + +# Includes need for the compilation +libscicompletion_la_CPPFLAGS = -I$(srcdir)/includes/ \ + -I$(srcdir)/src/c/ \ + -I$(srcdir)/src/cpp/ \ + -I$(top_srcdir)/modules/api_scilab/includes/ \ + -I$(top_srcdir)/modules/functions/includes/ \ + -I$(top_srcdir)/modules/localization/includes/ \ + -I$(top_srcdir)/modules/output_stream/includes/ \ + -I$(top_srcdir)/modules/graphics/includes/ \ + -I$(top_srcdir)/modules/fileio/includes/ \ + -I$(top_srcdir)/modules/string/includes/ \ + -I$(top_srcdir)/modules/xml/includes/ \ + -I$(top_srcdir)/modules/xml/src/cpp/ \ + -I$(top_srcdir)/modules/external_objects/includes \ + $(JAVA_JNI_INCLUDE) \ + $(XML_FLAGS) \ + $(AM_CPPFLAGS) + +# Name of the future library (.la will be replace by .so, .a, etc regarding +# the system) +pkglib_LTLIBRARIES = libscicompletion.la +noinst_LTLIBRARIES = libscicompletion-algo.la + + +# All the sources needed by libscicompletion.la +libscicompletion_algo_la_SOURCES = $(COMPLETION_JNI_SOURCES) $(COMPLETION_C_SOURCES) $(COMPLETION_CXX_SOURCES) +libscicompletion_la_SOURCES = $(GATEWAY_C_SOURCES) +libscicompletion_algo_la_CPPFLAGS = $(libscicompletion_la_CPPFLAGS) + +# For the code check (splint) +CHECK_SRC= $(COMPLETION_C_SOURCES) $(GATEWAY_C_SOURCES) +INCLUDE_FLAGS = $(libscicompletion_la_CPPFLAGS) + +## Libraries necessary +libscicompletion_la_LIBADD = libscicompletion-algo.la + +#### Name of the module and the path ###### +modulename=completion + +#### completion : Conf files #### +libscicompletion_la_rootdir = $(mydatadir) +libscicompletion_la_root_DATA = license.txt + +#### completion : init scripts #### +libscicompletion_la_etcdir = $(mydatadir)/etc +libscicompletion_la_etc_DATA = etc/completion.quit etc/completion.start + +#### completion : gateway declaration #### +libscicompletion_la_sci_gatewaydir = $(mydatadir)/sci_gateway +libscicompletion_la_sci_gateway_DATA = sci_gateway/completion_gateway.xml + +#### completion : include files #### +libscicompletion_la_includedir=$(pkgincludedir) +libscicompletion_la_include_HEADERS = includes/gw_completion.h \ +includes/completion.h \ +includes/getCommonPart.h \ +includes/getPartLine.h \ +includes/dynlib_completion.h \ +includes/completeLine.h + +#### completion : test file #### +libscicompletion_la_testutilitiesdir = $(mydatadir)/tests/utilities +libscicompletion_la_testutilities_DATA = tests/utilities/build_primitives.sce \ +tests/utilities/sci_completeline.c \ +tests/utilities/sci_getcommonpart.c \ +tests/utilities/sci_getfields.c \ +tests/utilities/sci_getfilepartlevel.c \ +tests/utilities/sci_getpartlevel.c + +#### SWIG Declaration #### +SWIG_WRAPPERS = src/jni/Completion.i + +if SWIG +BUILT_SOURCES=swig +endif + + +# Provides macros compilation, Java compilation, cleaning +# If you want Makefile to call ant, added USEANT=1 + + +include $(top_srcdir)/Makefile.incl.am diff --git a/modules/completion/Makefile.in b/modules/completion/Makefile.in new file mode 100755 index 000000000..de173ad3b --- /dev/null +++ b/modules/completion/Makefile.in @@ -0,0 +1,1803 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2007 - INRIA - Sylvestre LEDRU +# +# This file must be used under the terms of the CeCILL. +# This source file is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at +# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU +# Copyright (C) 2008 - INRIA - Pierre MARECHAL +# +# This file must be used under the terms of the CeCILL. +# This source file is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at +# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +# + +########## +### Makefile included stuff +### Target, variable, suffixes which are supposed to be useful in every makefile.am +########## + + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/Makefile.incl.am $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/config/mkinstalldirs \ + $(top_srcdir)/config/depcomp \ + $(libscicompletion_la_include_HEADERS) +@NEED_JAVA_TRUE@am__append_1 = java +subdir = modules/completion +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/backtrace.m4 \ + $(top_srcdir)/m4/compiler.m4 $(top_srcdir)/m4/curl.m4 \ + $(top_srcdir)/m4/docbook.m4 $(top_srcdir)/m4/doxygen.m4 \ + $(top_srcdir)/m4/fftw.m4 $(top_srcdir)/m4/fortran.m4 \ + $(top_srcdir)/m4/giws.m4 $(top_srcdir)/m4/hdf5.m4 \ + $(top_srcdir)/m4/intel_compiler.m4 \ + $(top_srcdir)/m4/java-thirdparty.m4 $(top_srcdir)/m4/java.m4 \ + $(top_srcdir)/m4/largefile.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/libsmath.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/libxml2.m4 $(top_srcdir)/m4/ltoptions.m4 \ + $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ + $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/macosx.m4 \ + $(top_srcdir)/m4/mpi.m4 $(top_srcdir)/m4/ocaml.m4 \ + $(top_srcdir)/m4/pcre.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/relocatable.m4 $(top_srcdir)/m4/swig.m4 \ + $(top_srcdir)/m4/symlinks.m4 $(top_srcdir)/m4/tcltk.m4 \ + $(top_srcdir)/m4/umfpack.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/modules/core/includes/machine.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(pkglibdir)" \ + "$(DESTDIR)$(libscicompletion_la_etcdir)" \ + "$(DESTDIR)$(libscicompletion_la_rootdir)" \ + "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" \ + "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" \ + "$(DESTDIR)$(libscicompletion_la_includedir)" +LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkglib_LTLIBRARIES) +libscicompletion_algo_la_LIBADD = +am__libscicompletion_algo_la_SOURCES_DIST = src/jni/Completion_wrap.c \ + src/c/completion.c src/c/completion_generic.c \ + src/c/getfilesdictionary.c src/c/getmacrosdictionary.c \ + src/c/getfieldsdictionary.c src/c/toolsdictionary.c \ + src/c/completion_wrap_java.c src/c/getPartLine.c \ + src/c/getCommonPart.c src/c/completeLine.c \ + src/c/completeLine_wrap_java.c src/cpp/FieldsManager.cpp \ + src/cpp/XMLFieldsGetter.cpp src/cpp/XMLDocFieldsGetter.cpp \ + src/cpp/XMLElemFieldsGetter.cpp \ + src/cpp/XMLAttrFieldsGetter.cpp src/cpp/XMLNsFieldsGetter.cpp \ + src/cpp/XMLListFieldsGetter.cpp src/cpp/XMLSetFieldsGetter.cpp \ + src/cpp/EOFieldsGetter.cpp \ + src/cpp/UnknownMlistFieldsGetter.cpp \ + src/cpp/StructFieldsGetter.cpp src/cpp/HandleFieldsGetter.cpp \ + src/cpp/getfields.cpp +am__dirstamp = $(am__leading_dot)dirstamp +@GUI_TRUE@am__objects_1 = \ +@GUI_TRUE@ src/jni/libscicompletion_algo_la-Completion_wrap.lo +am__objects_2 = src/c/libscicompletion_algo_la-completion.lo \ + src/c/libscicompletion_algo_la-completion_generic.lo \ + src/c/libscicompletion_algo_la-getfilesdictionary.lo \ + src/c/libscicompletion_algo_la-getmacrosdictionary.lo \ + src/c/libscicompletion_algo_la-getfieldsdictionary.lo \ + src/c/libscicompletion_algo_la-toolsdictionary.lo \ + src/c/libscicompletion_algo_la-completion_wrap_java.lo \ + src/c/libscicompletion_algo_la-getPartLine.lo \ + src/c/libscicompletion_algo_la-getCommonPart.lo \ + src/c/libscicompletion_algo_la-completeLine.lo \ + src/c/libscicompletion_algo_la-completeLine_wrap_java.lo +am__objects_3 = src/cpp/libscicompletion_algo_la-FieldsManager.lo \ + src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo \ + src/cpp/libscicompletion_algo_la-getfields.lo +am_libscicompletion_algo_la_OBJECTS = $(am__objects_1) \ + $(am__objects_2) $(am__objects_3) +libscicompletion_algo_la_OBJECTS = \ + $(am_libscicompletion_algo_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libscicompletion_la_DEPENDENCIES = libscicompletion-algo.la +am__objects_4 = sci_gateway/c/libscicompletion_la-sci_completion.lo \ + sci_gateway/c/libscicompletion_la-gw_completion.lo +am_libscicompletion_la_OBJECTS = $(am__objects_4) +libscicompletion_la_OBJECTS = $(am_libscicompletion_la_OBJECTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/modules/core/includes +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_@AM_V@) +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(libscicompletion_algo_la_SOURCES) \ + $(libscicompletion_la_SOURCES) +DIST_SOURCES = $(am__libscicompletion_algo_la_SOURCES_DIST) \ + $(libscicompletion_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(libscicompletion_la_etc_DATA) \ + $(libscicompletion_la_root_DATA) \ + $(libscicompletion_la_sci_gateway_DATA) \ + $(libscicompletion_la_testutilities_DATA) +HEADERS = $(libscicompletion_la_include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +ALL_LINGUAS_DOC = @ALL_LINGUAS_DOC@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +ANT = @ANT@ +ANTLR = @ANTLR@ +AR = @AR@ +ARPACK_LIBS = @ARPACK_LIBS@ +ASM3 = @ASM3@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AVALON_FRAMEWORK = @AVALON_FRAMEWORK@ +AWK = @AWK@ +BATIK = @BATIK@ +BLAS_LIBS = @BLAS_LIBS@ +CC = @CC@ +CCACHE = @CCACHE@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECKSTYLE = @CHECKSTYLE@ +COBERTURA = @COBERTURA@ +COMMONS_BEANUTILS = @COMMONS_BEANUTILS@ +COMMONS_IO = @COMMONS_IO@ +COMMONS_LOGGING = @COMMONS_LOGGING@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CURL_CFLAGS = @CURL_CFLAGS@ +CURL_CONFIG = @CURL_CONFIG@ +CURL_LIBS = @CURL_LIBS@ +CURL_VERSION = @CURL_VERSION@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEMOTOOLS_ENABLE = @DEMOTOOLS_ENABLE@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCBOOK_ROOT = @DOCBOOK_ROOT@ +DOXYGEN_BIN = @DOXYGEN_BIN@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +ECJ = @ECJ@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +FFTW3_LIB = @FFTW3_LIB@ +FFTW_ENABLE = @FFTW_ENABLE@ +FGREP = @FGREP@ +FLEXDOCK = @FLEXDOCK@ +FLIBS = @FLIBS@ +FOP = @FOP@ +FREEHEP_GRAPHICS2D = @FREEHEP_GRAPHICS2D@ +FREEHEP_GRAPHICSIO = @FREEHEP_GRAPHICSIO@ +FREEHEP_GRAPHICSIO_EMF = @FREEHEP_GRAPHICSIO_EMF@ +FREEHEP_IO = @FREEHEP_IO@ +FREEHEP_UTIL = @FREEHEP_UTIL@ +GENHTML = @GENHTML@ +GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ +GIWS_BIN = @GIWS_BIN@ +GLUEGEN2_RT = @GLUEGEN2_RT@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GRAPHICS_ENABLE = @GRAPHICS_ENABLE@ +GREP = @GREP@ +GUI_ENABLE = @GUI_ENABLE@ +HDF5_CFLAGS = @HDF5_CFLAGS@ +HDF5_LIBS = @HDF5_LIBS@ +HELP_ENABLE = @HELP_ENABLE@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +JAR = @JAR@ +JAVA = @JAVA@ +JAVAC = @JAVAC@ +JAVAC_DEBUG = @JAVAC_DEBUG@ +JAVADOC = @JAVADOC@ +JAVAH = @JAVAH@ +JAVASCI_ENABLE = @JAVASCI_ENABLE@ +JAVA_ENABLE = @JAVA_ENABLE@ +JAVA_G = @JAVA_G@ +JAVA_HOME = @JAVA_HOME@ +JAVA_JNI_INCLUDE = @JAVA_JNI_INCLUDE@ +JAVA_JNI_LIBS = @JAVA_JNI_LIBS@ +JDB = @JDB@ +JEUCLID_CORE = @JEUCLID_CORE@ +JGRAPHX = @JGRAPHX@ +JHALL = @JHALL@ +JLATEXMATH = @JLATEXMATH@ +JLATEXMATH_FOP = @JLATEXMATH_FOP@ +JOGL2 = @JOGL2@ +JROSETTA_API = @JROSETTA_API@ +JROSETTA_ENGINE = @JROSETTA_ENGINE@ +JUNIT4 = @JUNIT4@ +LAPACK_LIBS = @LAPACK_LIBS@ +LCOV = @LCOV@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOGGING_LEVEL = @LOGGING_LEVEL@ +LOOKS = @LOOKS@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MATIO_CFLAGS = @MATIO_CFLAGS@ +MATIO_ENABLE = @MATIO_ENABLE@ +MATIO_LIBS = @MATIO_LIBS@ +MKDIR_P = @MKDIR_P@ +MPI_ENABLE = @MPI_ENABLE@ +MSGCAT = @MSGCAT@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OCAMLC = @OCAMLC@ +OCAMLDEP = @OCAMLDEP@ +OCAMLLEX = @OCAMLLEX@ +OCAMLOPT = @OCAMLOPT@ +OCAMLYACC = @OCAMLYACC@ +OPENMPI_CC = @OPENMPI_CC@ +OPENMPI_CFLAGS = @OPENMPI_CFLAGS@ +OPENMPI_CXX = @OPENMPI_CXX@ +OPENMPI_CXXFLAGS = @OPENMPI_CXXFLAGS@ +OPENMPI_LIBS = @OPENMPI_LIBS@ +OPENMP_CFLAGS = @OPENMP_CFLAGS@ +OPENMP_CXXFLAGS = @OPENMP_CXXFLAGS@ +OPENMP_ENABLE = @OPENMP_ENABLE@ +OPENMP_LIBS = @OPENMP_LIBS@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PCRE_CFLAGS = @PCRE_CFLAGS@ +PCRE_CONFIG = @PCRE_CONFIG@ +PCRE_LIBS = @PCRE_LIBS@ +PCRE_VERSION = @PCRE_VERSION@ +PKG_CONFIG = @PKG_CONFIG@ +POSUB = @POSUB@ +POW_LIB = @POW_LIB@ +PYTHON = @PYTHON@ +RANLIB = @RANLIB@ +RELOCATABLE = @RELOCATABLE@ +RT_LIB = @RT_LIB@ +SAXON = @SAXON@ +SCILAB_BINARY_VERSION = @SCILAB_BINARY_VERSION@ +SCILAB_LIBRARY_VERSION = @SCILAB_LIBRARY_VERSION@ +SCILAB_VERSION_MAINTENANCE = @SCILAB_VERSION_MAINTENANCE@ +SCILAB_VERSION_MAJOR = @SCILAB_VERSION_MAJOR@ +SCILAB_VERSION_MINOR = @SCILAB_VERSION_MINOR@ +SCIRENDERER = @SCIRENDERER@ +SCIRENDERER_CP = @SCIRENDERER_CP@ +SCI_CFLAGS = @SCI_CFLAGS@ +SCI_CXXFLAGS = @SCI_CXXFLAGS@ +SCI_FFLAGS = @SCI_FFLAGS@ +SCI_LDFLAGS = @SCI_LDFLAGS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SET_RELOCATABLE = @SET_RELOCATABLE@ +SHELL = @SHELL@ +SKINLF = @SKINLF@ +SPLINT = @SPLINT@ +STRIP = @STRIP@ +SWIG_BIN = @SWIG_BIN@ +SWIG_JAVA = @SWIG_JAVA@ +SWIG_RUNTIME_LIBS_DIR = @SWIG_RUNTIME_LIBS_DIR@ +SWIG_SCILAB = @SWIG_SCILAB@ +TCLTK_LIBS = @TCLTK_LIBS@ +TCL_INC_PATH = @TCL_INC_PATH@ +TK_INC_PATH = @TK_INC_PATH@ +UMFPACK_CFLAGS = @UMFPACK_CFLAGS@ +UMFPACK_ENABLE = @UMFPACK_ENABLE@ +UMFPACK_LIB = @UMFPACK_LIB@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WITH_OCAML = @WITH_OCAML@ +WITH_TKSCI = @WITH_TKSCI@ +XCOS_ENABLE = @XCOS_ENABLE@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ +XMKMF = @XMKMF@ +XMLGRAPHICS_COMMONS = @XMLGRAPHICS_COMMONS@ +XML_APIS_EXT = @XML_APIS_EXT@ +XML_CONFIG = @XML_CONFIG@ +XML_FLAGS = @XML_FLAGS@ +XML_LIBS = @XML_LIBS@ +XML_VERSION = @XML_VERSION@ +X_CFLAGS = @X_CFLAGS@ +X_EXTRA_LIBS = @X_EXTRA_LIBS@ +X_LIBS = @X_LIBS@ +X_PRE_LIBS = @X_PRE_LIBS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +cxx_present = @cxx_present@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ + +#List of the c files +@GUI_TRUE@COMPLETION_JNI_SOURCES = src/jni/Completion_wrap.c +@GUI_TRUE@USEANT = 1 + +# List of the c files +COMPLETION_C_SOURCES = src/c/completion.c \ +src/c/completion_generic.c \ +src/c/getfilesdictionary.c \ +src/c/getmacrosdictionary.c \ +src/c/getfieldsdictionary.c \ +src/c/toolsdictionary.c \ +src/c/completion_wrap_java.c \ +src/c/getPartLine.c \ +src/c/getCommonPart.c \ +src/c/completeLine.c \ +src/c/completeLine_wrap_java.c + +COMPLETION_CXX_SOURCES = src/cpp/FieldsManager.cpp \ + src/cpp/XMLFieldsGetter.cpp \ + src/cpp/XMLDocFieldsGetter.cpp \ + src/cpp/XMLElemFieldsGetter.cpp \ + src/cpp/XMLAttrFieldsGetter.cpp \ + src/cpp/XMLNsFieldsGetter.cpp \ + src/cpp/XMLListFieldsGetter.cpp \ + src/cpp/XMLSetFieldsGetter.cpp \ + src/cpp/EOFieldsGetter.cpp \ + src/cpp/UnknownMlistFieldsGetter.cpp \ + src/cpp/StructFieldsGetter.cpp \ + src/cpp/HandleFieldsGetter.cpp \ + src/cpp/getfields.cpp + + +# List of the gateway c files +GATEWAY_C_SOURCES = sci_gateway/c/sci_completion.c \ +sci_gateway/c/gw_completion.c + + +# Includes need for the compilation +libscicompletion_la_CPPFLAGS = -I$(srcdir)/includes/ \ + -I$(srcdir)/src/c/ \ + -I$(srcdir)/src/cpp/ \ + -I$(top_srcdir)/modules/api_scilab/includes/ \ + -I$(top_srcdir)/modules/functions/includes/ \ + -I$(top_srcdir)/modules/localization/includes/ \ + -I$(top_srcdir)/modules/output_stream/includes/ \ + -I$(top_srcdir)/modules/graphics/includes/ \ + -I$(top_srcdir)/modules/fileio/includes/ \ + -I$(top_srcdir)/modules/string/includes/ \ + -I$(top_srcdir)/modules/xml/includes/ \ + -I$(top_srcdir)/modules/xml/src/cpp/ \ + -I$(top_srcdir)/modules/external_objects/includes \ + $(JAVA_JNI_INCLUDE) \ + $(XML_FLAGS) \ + $(AM_CPPFLAGS) + + +# Name of the future library (.la will be replace by .so, .a, etc regarding +# the system) +pkglib_LTLIBRARIES = libscicompletion.la +noinst_LTLIBRARIES = libscicompletion-algo.la + +# All the sources needed by libscicompletion.la +libscicompletion_algo_la_SOURCES = $(COMPLETION_JNI_SOURCES) $(COMPLETION_C_SOURCES) $(COMPLETION_CXX_SOURCES) +libscicompletion_la_SOURCES = $(GATEWAY_C_SOURCES) +libscicompletion_algo_la_CPPFLAGS = $(libscicompletion_la_CPPFLAGS) + +# For the code check (splint) +CHECK_SRC = $(COMPLETION_C_SOURCES) $(GATEWAY_C_SOURCES) +INCLUDE_FLAGS = $(libscicompletion_la_CPPFLAGS) +libscicompletion_la_LIBADD = libscicompletion-algo.la + +#### Name of the module and the path ###### +modulename = completion + +#### completion : Conf files #### +libscicompletion_la_rootdir = $(mydatadir) +libscicompletion_la_root_DATA = license.txt + +#### completion : init scripts #### +libscicompletion_la_etcdir = $(mydatadir)/etc +libscicompletion_la_etc_DATA = etc/completion.quit etc/completion.start + +#### completion : gateway declaration #### +libscicompletion_la_sci_gatewaydir = $(mydatadir)/sci_gateway +libscicompletion_la_sci_gateway_DATA = sci_gateway/completion_gateway.xml + +#### completion : include files #### +libscicompletion_la_includedir = $(pkgincludedir) +libscicompletion_la_include_HEADERS = includes/gw_completion.h \ +includes/completion.h \ +includes/getCommonPart.h \ +includes/getPartLine.h \ +includes/dynlib_completion.h \ +includes/completeLine.h + + +#### completion : test file #### +libscicompletion_la_testutilitiesdir = $(mydatadir)/tests/utilities +libscicompletion_la_testutilities_DATA = tests/utilities/build_primitives.sce \ +tests/utilities/sci_completeline.c \ +tests/utilities/sci_getcommonpart.c \ +tests/utilities/sci_getfields.c \ +tests/utilities/sci_getfilepartlevel.c \ +tests/utilities/sci_getpartlevel.c + + +#### SWIG Declaration #### +SWIG_WRAPPERS = src/jni/Completion.i +@SWIG_TRUE@BUILT_SOURCES = swig + +# Where all the Scilab stuff is installed (macros, help, ...) +mydatadir = $(pkgdatadir)/modules/$(modulename) + +# Set AM_* SCI detected settings +AM_CPPFLAGS = $(SCI_CPPFLAGS) +AM_CFLAGS = $(SCI_CFLAGS) +AM_CXXFLAGS = $(SCI_CXXFLAGS) +# append includes to AM_FFLAGS to manage fortran includes +AM_FFLAGS = $(SCI_FFLAGS) -I$(top_srcdir)/modules/core/includes/ + +# Tag shared libraries with the Scilab version +AM_LDFLAGS = $(SCI_LDFLAGS) -version-number $(SCILAB_LIBRARY_VERSION) + +# splint options +SPLINT_OPTIONS = -weak -booltype BOOL + +########################### JAVA ###################################### +#### We are delegating java compilation to ant... Thanks to that +#### the procedure will be the same with Microsoft Windows (C) +#### and Linux/Unix +####################################################################### +TARGETS_ALL = $(am__append_1) + +################ MACROS ###################### +# Rule to build a macro +# NOT USED AT THE MOMENT +SUFFIXES = .sci + +########### INSTALL DOCUMENTATION ################### + +# Install documentation files into the right target +# We do not use the automake mechanism (libxxxx_la_help_fr_DATA) because +# automake needs the html files to be present which is not the case when +# we are building Scilab + +# Where it should be installed +pkgdocdir = $(mydatadir) + +# What is the mask of the help source +DOCMASKXML = *.xml + +# What is the mask of the MathML sources +DOCMASKMML = *.mml + +########### INSTALL DATA ################### +# Install macros, help & demos +# Where it should be installed +pkgmacrosdir = $(mydatadir) +# Which directory we process +MACRODIRS = macros/ +# Mask of the Scilab sources macros +MACROMASK = *.sci +# Mask of the Scilab executable sources macros +MACROBUILDMASK = *.sce +# Mask of the Scilab compiled macros +MACROBINMASK = *.bin +# List of the standard directory for tests +TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java +# Where the demos should be installed +pkgdemosdir = $(mydatadir) +# List of the standard directory for demos +DEMOS_DIR = demos +# List of the standard directory for examples +EXAMPLES_DIR = examples +# Where to export JAVA archives (.jar) +JARDIR = jar/ +# JAR files mask +JARMASK = *.jar +# Chapter file +HELP_CHAPTERDIR = help/ +HELP_CHAPTERFILE = addchapter.sce +HELP_CHAPTERLANG = en_US fr_FR pt_BR +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .sci .bin .c .cpp .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.incl.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/completion/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign modules/completion/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/Makefile.incl.am: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ + } + +uninstall-pkglibLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ + done + +clean-pkglibLTLIBRARIES: + -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) + @list='$(pkglib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } +src/jni/$(am__dirstamp): + @$(MKDIR_P) src/jni + @: > src/jni/$(am__dirstamp) +src/jni/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/jni/$(DEPDIR) + @: > src/jni/$(DEPDIR)/$(am__dirstamp) +src/jni/libscicompletion_algo_la-Completion_wrap.lo: \ + src/jni/$(am__dirstamp) src/jni/$(DEPDIR)/$(am__dirstamp) +src/c/$(am__dirstamp): + @$(MKDIR_P) src/c + @: > src/c/$(am__dirstamp) +src/c/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/c/$(DEPDIR) + @: > src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion_generic.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getfilesdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getmacrosdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getfieldsdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-toolsdictionary.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completion_wrap_java.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getPartLine.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-getCommonPart.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completeLine.lo: src/c/$(am__dirstamp) \ + src/c/$(DEPDIR)/$(am__dirstamp) +src/c/libscicompletion_algo_la-completeLine_wrap_java.lo: \ + src/c/$(am__dirstamp) src/c/$(DEPDIR)/$(am__dirstamp) +src/cpp/$(am__dirstamp): + @$(MKDIR_P) src/cpp + @: > src/cpp/$(am__dirstamp) +src/cpp/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/cpp/$(DEPDIR) + @: > src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-FieldsManager.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) +src/cpp/libscicompletion_algo_la-getfields.lo: \ + src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp) + +libscicompletion-algo.la: $(libscicompletion_algo_la_OBJECTS) $(libscicompletion_algo_la_DEPENDENCIES) $(EXTRA_libscicompletion_algo_la_DEPENDENCIES) + $(AM_V_CXXLD)$(CXXLINK) $(libscicompletion_algo_la_OBJECTS) $(libscicompletion_algo_la_LIBADD) $(LIBS) +sci_gateway/c/$(am__dirstamp): + @$(MKDIR_P) sci_gateway/c + @: > sci_gateway/c/$(am__dirstamp) +sci_gateway/c/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) sci_gateway/c/$(DEPDIR) + @: > sci_gateway/c/$(DEPDIR)/$(am__dirstamp) +sci_gateway/c/libscicompletion_la-sci_completion.lo: \ + sci_gateway/c/$(am__dirstamp) \ + sci_gateway/c/$(DEPDIR)/$(am__dirstamp) +sci_gateway/c/libscicompletion_la-gw_completion.lo: \ + sci_gateway/c/$(am__dirstamp) \ + sci_gateway/c/$(DEPDIR)/$(am__dirstamp) + +libscicompletion.la: $(libscicompletion_la_OBJECTS) $(libscicompletion_la_DEPENDENCIES) $(EXTRA_libscicompletion_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(pkglibdir) $(libscicompletion_la_OBJECTS) $(libscicompletion_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + -rm -f sci_gateway/c/*.$(OBJEXT) + -rm -f sci_gateway/c/*.lo + -rm -f src/c/*.$(OBJEXT) + -rm -f src/c/*.lo + -rm -f src/cpp/*.$(OBJEXT) + -rm -f src/cpp/*.lo + -rm -f src/jni/*.$(OBJEXT) + -rm -f src/jni/*.lo + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +src/jni/libscicompletion_algo_la-Completion_wrap.lo: src/jni/Completion_wrap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/jni/libscicompletion_algo_la-Completion_wrap.lo -MD -MP -MF src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Tpo -c -o src/jni/libscicompletion_algo_la-Completion_wrap.lo `test -f 'src/jni/Completion_wrap.c' || echo '$(srcdir)/'`src/jni/Completion_wrap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Tpo src/jni/$(DEPDIR)/libscicompletion_algo_la-Completion_wrap.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/jni/Completion_wrap.c' object='src/jni/libscicompletion_algo_la-Completion_wrap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/jni/libscicompletion_algo_la-Completion_wrap.lo `test -f 'src/jni/Completion_wrap.c' || echo '$(srcdir)/'`src/jni/Completion_wrap.c + +src/c/libscicompletion_algo_la-completion.lo: src/c/completion.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Tpo -c -o src/c/libscicompletion_algo_la-completion.lo `test -f 'src/c/completion.c' || echo '$(srcdir)/'`src/c/completion.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/completion.c' object='src/c/libscicompletion_algo_la-completion.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion.lo `test -f 'src/c/completion.c' || echo '$(srcdir)/'`src/c/completion.c + +src/c/libscicompletion_algo_la-completion_generic.lo: src/c/completion_generic.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion_generic.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Tpo -c -o src/c/libscicompletion_algo_la-completion_generic.lo `test -f 'src/c/completion_generic.c' || echo '$(srcdir)/'`src/c/completion_generic.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion_generic.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/completion_generic.c' object='src/c/libscicompletion_algo_la-completion_generic.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion_generic.lo `test -f 'src/c/completion_generic.c' || echo '$(srcdir)/'`src/c/completion_generic.c + +src/c/libscicompletion_algo_la-getfilesdictionary.lo: src/c/getfilesdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getfilesdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getfilesdictionary.lo `test -f 'src/c/getfilesdictionary.c' || echo '$(srcdir)/'`src/c/getfilesdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getfilesdictionary.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/getfilesdictionary.c' object='src/c/libscicompletion_algo_la-getfilesdictionary.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getfilesdictionary.lo `test -f 'src/c/getfilesdictionary.c' || echo '$(srcdir)/'`src/c/getfilesdictionary.c + +src/c/libscicompletion_algo_la-getmacrosdictionary.lo: src/c/getmacrosdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getmacrosdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getmacrosdictionary.lo `test -f 'src/c/getmacrosdictionary.c' || echo '$(srcdir)/'`src/c/getmacrosdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getmacrosdictionary.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/getmacrosdictionary.c' object='src/c/libscicompletion_algo_la-getmacrosdictionary.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getmacrosdictionary.lo `test -f 'src/c/getmacrosdictionary.c' || echo '$(srcdir)/'`src/c/getmacrosdictionary.c + +src/c/libscicompletion_algo_la-getfieldsdictionary.lo: src/c/getfieldsdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getfieldsdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Tpo -c -o src/c/libscicompletion_algo_la-getfieldsdictionary.lo `test -f 'src/c/getfieldsdictionary.c' || echo '$(srcdir)/'`src/c/getfieldsdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getfieldsdictionary.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/getfieldsdictionary.c' object='src/c/libscicompletion_algo_la-getfieldsdictionary.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getfieldsdictionary.lo `test -f 'src/c/getfieldsdictionary.c' || echo '$(srcdir)/'`src/c/getfieldsdictionary.c + +src/c/libscicompletion_algo_la-toolsdictionary.lo: src/c/toolsdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-toolsdictionary.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Tpo -c -o src/c/libscicompletion_algo_la-toolsdictionary.lo `test -f 'src/c/toolsdictionary.c' || echo '$(srcdir)/'`src/c/toolsdictionary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-toolsdictionary.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/toolsdictionary.c' object='src/c/libscicompletion_algo_la-toolsdictionary.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-toolsdictionary.lo `test -f 'src/c/toolsdictionary.c' || echo '$(srcdir)/'`src/c/toolsdictionary.c + +src/c/libscicompletion_algo_la-completion_wrap_java.lo: src/c/completion_wrap_java.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completion_wrap_java.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Tpo -c -o src/c/libscicompletion_algo_la-completion_wrap_java.lo `test -f 'src/c/completion_wrap_java.c' || echo '$(srcdir)/'`src/c/completion_wrap_java.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completion_wrap_java.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/completion_wrap_java.c' object='src/c/libscicompletion_algo_la-completion_wrap_java.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completion_wrap_java.lo `test -f 'src/c/completion_wrap_java.c' || echo '$(srcdir)/'`src/c/completion_wrap_java.c + +src/c/libscicompletion_algo_la-getPartLine.lo: src/c/getPartLine.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getPartLine.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Tpo -c -o src/c/libscicompletion_algo_la-getPartLine.lo `test -f 'src/c/getPartLine.c' || echo '$(srcdir)/'`src/c/getPartLine.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getPartLine.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/getPartLine.c' object='src/c/libscicompletion_algo_la-getPartLine.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getPartLine.lo `test -f 'src/c/getPartLine.c' || echo '$(srcdir)/'`src/c/getPartLine.c + +src/c/libscicompletion_algo_la-getCommonPart.lo: src/c/getCommonPart.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-getCommonPart.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Tpo -c -o src/c/libscicompletion_algo_la-getCommonPart.lo `test -f 'src/c/getCommonPart.c' || echo '$(srcdir)/'`src/c/getCommonPart.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-getCommonPart.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/getCommonPart.c' object='src/c/libscicompletion_algo_la-getCommonPart.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-getCommonPart.lo `test -f 'src/c/getCommonPart.c' || echo '$(srcdir)/'`src/c/getCommonPart.c + +src/c/libscicompletion_algo_la-completeLine.lo: src/c/completeLine.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completeLine.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Tpo -c -o src/c/libscicompletion_algo_la-completeLine.lo `test -f 'src/c/completeLine.c' || echo '$(srcdir)/'`src/c/completeLine.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/completeLine.c' object='src/c/libscicompletion_algo_la-completeLine.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completeLine.lo `test -f 'src/c/completeLine.c' || echo '$(srcdir)/'`src/c/completeLine.c + +src/c/libscicompletion_algo_la-completeLine_wrap_java.lo: src/c/completeLine_wrap_java.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/c/libscicompletion_algo_la-completeLine_wrap_java.lo -MD -MP -MF src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Tpo -c -o src/c/libscicompletion_algo_la-completeLine_wrap_java.lo `test -f 'src/c/completeLine_wrap_java.c' || echo '$(srcdir)/'`src/c/completeLine_wrap_java.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Tpo src/c/$(DEPDIR)/libscicompletion_algo_la-completeLine_wrap_java.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/c/completeLine_wrap_java.c' object='src/c/libscicompletion_algo_la-completeLine_wrap_java.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/c/libscicompletion_algo_la-completeLine_wrap_java.lo `test -f 'src/c/completeLine_wrap_java.c' || echo '$(srcdir)/'`src/c/completeLine_wrap_java.c + +sci_gateway/c/libscicompletion_la-sci_completion.lo: sci_gateway/c/sci_completion.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sci_gateway/c/libscicompletion_la-sci_completion.lo -MD -MP -MF sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Tpo -c -o sci_gateway/c/libscicompletion_la-sci_completion.lo `test -f 'sci_gateway/c/sci_completion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_completion.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Tpo sci_gateway/c/$(DEPDIR)/libscicompletion_la-sci_completion.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sci_gateway/c/sci_completion.c' object='sci_gateway/c/libscicompletion_la-sci_completion.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sci_gateway/c/libscicompletion_la-sci_completion.lo `test -f 'sci_gateway/c/sci_completion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_completion.c + +sci_gateway/c/libscicompletion_la-gw_completion.lo: sci_gateway/c/gw_completion.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sci_gateway/c/libscicompletion_la-gw_completion.lo -MD -MP -MF sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Tpo -c -o sci_gateway/c/libscicompletion_la-gw_completion.lo `test -f 'sci_gateway/c/gw_completion.c' || echo '$(srcdir)/'`sci_gateway/c/gw_completion.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Tpo sci_gateway/c/$(DEPDIR)/libscicompletion_la-gw_completion.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sci_gateway/c/gw_completion.c' object='sci_gateway/c/libscicompletion_la-gw_completion.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sci_gateway/c/libscicompletion_la-gw_completion.lo `test -f 'sci_gateway/c/gw_completion.c' || echo '$(srcdir)/'`sci_gateway/c/gw_completion.c + +.cpp.o: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + +src/cpp/libscicompletion_algo_la-FieldsManager.lo: src/cpp/FieldsManager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-FieldsManager.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Tpo -c -o src/cpp/libscicompletion_algo_la-FieldsManager.lo `test -f 'src/cpp/FieldsManager.cpp' || echo '$(srcdir)/'`src/cpp/FieldsManager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-FieldsManager.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/FieldsManager.cpp' object='src/cpp/libscicompletion_algo_la-FieldsManager.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-FieldsManager.lo `test -f 'src/cpp/FieldsManager.cpp' || echo '$(srcdir)/'`src/cpp/FieldsManager.cpp + +src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo: src/cpp/XMLFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo `test -f 'src/cpp/XMLFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo `test -f 'src/cpp/XMLFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo: src/cpp/XMLDocFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo `test -f 'src/cpp/XMLDocFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLDocFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLDocFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLDocFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo `test -f 'src/cpp/XMLDocFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLDocFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo: src/cpp/XMLElemFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo `test -f 'src/cpp/XMLElemFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLElemFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLElemFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLElemFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo `test -f 'src/cpp/XMLElemFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLElemFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo: src/cpp/XMLAttrFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo `test -f 'src/cpp/XMLAttrFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLAttrFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLAttrFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo `test -f 'src/cpp/XMLAttrFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLAttrFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo: src/cpp/XMLNsFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo `test -f 'src/cpp/XMLNsFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLNsFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLNsFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLNsFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo `test -f 'src/cpp/XMLNsFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLNsFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo: src/cpp/XMLListFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo `test -f 'src/cpp/XMLListFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLListFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLListFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLListFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo `test -f 'src/cpp/XMLListFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLListFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo: src/cpp/XMLSetFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo `test -f 'src/cpp/XMLSetFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLSetFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-XMLSetFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/XMLSetFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo `test -f 'src/cpp/XMLSetFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/XMLSetFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo: src/cpp/EOFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo `test -f 'src/cpp/EOFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/EOFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-EOFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/EOFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo `test -f 'src/cpp/EOFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/EOFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo: src/cpp/UnknownMlistFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo `test -f 'src/cpp/UnknownMlistFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/UnknownMlistFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/UnknownMlistFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo `test -f 'src/cpp/UnknownMlistFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/UnknownMlistFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo: src/cpp/StructFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo `test -f 'src/cpp/StructFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/StructFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-StructFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/StructFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo `test -f 'src/cpp/StructFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/StructFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo: src/cpp/HandleFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Tpo -c -o src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo `test -f 'src/cpp/HandleFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/HandleFieldsGetter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-HandleFieldsGetter.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/HandleFieldsGetter.cpp' object='src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo `test -f 'src/cpp/HandleFieldsGetter.cpp' || echo '$(srcdir)/'`src/cpp/HandleFieldsGetter.cpp + +src/cpp/libscicompletion_algo_la-getfields.lo: src/cpp/getfields.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libscicompletion_algo_la-getfields.lo -MD -MP -MF src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Tpo -c -o src/cpp/libscicompletion_algo_la-getfields.lo `test -f 'src/cpp/getfields.cpp' || echo '$(srcdir)/'`src/cpp/getfields.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Tpo src/cpp/$(DEPDIR)/libscicompletion_algo_la-getfields.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/cpp/getfields.cpp' object='src/cpp/libscicompletion_algo_la-getfields.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscicompletion_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libscicompletion_algo_la-getfields.lo `test -f 'src/cpp/getfields.cpp' || echo '$(srcdir)/'`src/cpp/getfields.cpp + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + -rm -rf sci_gateway/c/.libs sci_gateway/c/_libs + -rm -rf src/c/.libs src/c/_libs + -rm -rf src/cpp/.libs src/cpp/_libs + -rm -rf src/jni/.libs src/jni/_libs +install-libscicompletion_la_etcDATA: $(libscicompletion_la_etc_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_etc_DATA)'; test -n "$(libscicompletion_la_etcdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_etcdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_etcdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_etcdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_etcdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_etcDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_etc_DATA)'; test -n "$(libscicompletion_la_etcdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_etcdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_rootDATA: $(libscicompletion_la_root_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_root_DATA)'; test -n "$(libscicompletion_la_rootdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_rootdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_rootdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_rootdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_rootdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_rootDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_root_DATA)'; test -n "$(libscicompletion_la_rootdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_rootdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_sci_gatewayDATA: $(libscicompletion_la_sci_gateway_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_sci_gateway_DATA)'; test -n "$(libscicompletion_la_sci_gatewaydir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_sci_gatewayDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_sci_gateway_DATA)'; test -n "$(libscicompletion_la_sci_gatewaydir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_testutilitiesDATA: $(libscicompletion_la_testutilities_DATA) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_testutilities_DATA)'; test -n "$(libscicompletion_la_testutilitiesdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_testutilitiesDATA: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_testutilities_DATA)'; test -n "$(libscicompletion_la_testutilitiesdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_testutilitiesdir)'; $(am__uninstall_files_from_dir) +install-libscicompletion_la_includeHEADERS: $(libscicompletion_la_include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(libscicompletion_la_include_HEADERS)'; test -n "$(libscicompletion_la_includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(libscicompletion_la_includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libscicompletion_la_includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libscicompletion_la_includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(libscicompletion_la_includedir)" || exit $$?; \ + done + +uninstall-libscicompletion_la_includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(libscicompletion_la_include_HEADERS)'; test -n "$(libscicompletion_la_includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libscicompletion_la_includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) all-local +installdirs: + for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libscicompletion_la_etcdir)" "$(DESTDIR)$(libscicompletion_la_rootdir)" "$(DESTDIR)$(libscicompletion_la_sci_gatewaydir)" "$(DESTDIR)$(libscicompletion_la_testutilitiesdir)" "$(DESTDIR)$(libscicompletion_la_includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f sci_gateway/c/$(DEPDIR)/$(am__dirstamp) + -rm -f sci_gateway/c/$(am__dirstamp) + -rm -f src/c/$(DEPDIR)/$(am__dirstamp) + -rm -f src/c/$(am__dirstamp) + -rm -f src/cpp/$(DEPDIR)/$(am__dirstamp) + -rm -f src/cpp/$(am__dirstamp) + -rm -f src/jni/$(DEPDIR)/$(am__dirstamp) + -rm -f src/jni/$(am__dirstamp) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local \ + clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -rf sci_gateway/c/$(DEPDIR) src/c/$(DEPDIR) src/cpp/$(DEPDIR) src/jni/$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local \ + install-libscicompletion_la_etcDATA \ + install-libscicompletion_la_includeHEADERS \ + install-libscicompletion_la_rootDATA \ + install-libscicompletion_la_sci_gatewayDATA \ + install-libscicompletion_la_testutilitiesDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-pkglibLTLIBRARIES + +install-html: install-html-am + +install-html-am: install-html-local + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf sci_gateway/c/$(DEPDIR) src/c/$(DEPDIR) src/cpp/$(DEPDIR) src/jni/$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libscicompletion_la_etcDATA \ + uninstall-libscicompletion_la_includeHEADERS \ + uninstall-libscicompletion_la_rootDATA \ + uninstall-libscicompletion_la_sci_gatewayDATA \ + uninstall-libscicompletion_la_testutilitiesDATA \ + uninstall-pkglibLTLIBRARIES + +.MAKE: all check check-am install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am \ + check-local clean clean-generic clean-libtool clean-local \ + clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-html-local install-info \ + install-info-am install-libscicompletion_la_etcDATA \ + install-libscicompletion_la_includeHEADERS \ + install-libscicompletion_la_rootDATA \ + install-libscicompletion_la_sci_gatewayDATA \ + install-libscicompletion_la_testutilitiesDATA install-man \ + install-pdf install-pdf-am install-pkglibLTLIBRARIES \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-libscicompletion_la_etcDATA \ + uninstall-libscicompletion_la_includeHEADERS \ + uninstall-libscicompletion_la_rootDATA \ + uninstall-libscicompletion_la_sci_gatewayDATA \ + uninstall-libscicompletion_la_testutilitiesDATA \ + uninstall-pkglibLTLIBRARIES + + +# This target enables tests for Scilab +check-local: $(top_builddir)/scilab-bin test + if test -d $(mydatadir)/tests; then \ + @COMMAND="try test_run('$(modulename)');catch exit(-1);end;exit(0)"; export LANG=C; $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND"; \ + fi +check-code: + if test -f build.xml; then \ + $(ANT) checkstyle; \ + fi + if test -x "$(SPLINT)"; then \ + $(SPLINT) $(SPLINT_OPTIONS) -I$(top_srcdir)/modules/core/includes/ -I$(top_srcdir)/libs/MALLOC/includes/ -I$(top_srcdir)/modules/localization/includes/ $(INCLUDE_FLAGS) $(CHECK_SRC); \ + fi +@NEED_JAVA_TRUE@java: +# Some configurations needs to export JAVA_HOME in the current env +@NEED_JAVA_TRUE@ @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \ +@NEED_JAVA_TRUE@ if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ +@NEED_JAVA_TRUE@ if test -f build.xml -a $$USEANT -eq 1; then \ +@NEED_JAVA_TRUE@ $(ANT); \ +@NEED_JAVA_TRUE@ fi + +@NEED_JAVA_TRUE@clean-java: +# Some configurations needs to export JAVA_HOME in the current env +@NEED_JAVA_TRUE@ @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \ +@NEED_JAVA_TRUE@ if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ +@NEED_JAVA_TRUE@ if test -f build.xml -a $$USEANT -eq 1; then \ +@NEED_JAVA_TRUE@ $(ANT) clean; \ +@NEED_JAVA_TRUE@ fi; + +# If the user request for the SWIG generation of the wrappers Java => C/C++ +# We call the target swig-build on the variable SWIG_WRAPPERS + +@SWIG_TRUE@swig: $(SWIG_WRAPPERS) +@SWIG_TRUE@ @SWIG_PACKAGENAME=org.scilab.modules.$(modulename); \ +@SWIG_TRUE@ SWIG_OUTDIR=src/java/org/scilab/modules/$(modulename)/; \ +@SWIG_TRUE@ if test -n "$(SWIG_WRAPPERS)"; then \ +@SWIG_TRUE@ for file in $(SWIG_WRAPPERS) ; do \ +@SWIG_TRUE@ echo "Swig process of $$file (Java) ..."; \ +@SWIG_TRUE@ $(SWIG_BIN) $(SWIG_JAVA) -package $$SWIG_PACKAGENAME -outdir $$SWIG_OUTDIR $$file; \ +@SWIG_TRUE@ done; \ +@SWIG_TRUE@ fi + +@SWIG_TRUE@swig-scilab: $(SWIG_SCILAB_WRAPPERS) +@SWIG_TRUE@ @SWIG_OUTDIR=src/swig/; \ +@SWIG_TRUE@ if test -n "$(SWIG_SCILAB_WRAPPERS)"; then \ +@SWIG_TRUE@ for file in $(SWIG_SCILAB_WRAPPERS) ; do \ +@SWIG_TRUE@ echo "Swig process of $$file (Scilab) ..."; \ +@SWIG_TRUE@ $(SWIG_BIN) $(SWIG_SCILAB) -outdir $$SWIG_OUTDIR $$file; \ +@SWIG_TRUE@ done; \ +@SWIG_TRUE@ fi + +# If the user request for the SWIG generation of the wrappers Java => C/C++ +# We call the target swig-build on the variable SWIG_WRAPPERS + +@GIWS_TRUE@giws: $(GIWS_WRAPPERS) +@GIWS_TRUE@ @GIWS_OUTPUTDIR=src/jni/; \ +@GIWS_TRUE@ MANDATORY_OPTIONS="--throws-exception-on-error --description-file"; \ +@GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ +@GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ +@GIWS_TRUE@ echo "GIWS process of $$file ..."; \ +@GIWS_TRUE@ if test -z "$(GIWS_OPTIONS)"; then \ +@GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \ +@GIWS_TRUE@ else \ +@GIWS_TRUE@ echo "Custom GIWS call with '$$GIWS_OPTIONS'"; \ +@GIWS_TRUE@ $(GIWS_BIN) $$GIWS_OPTIONS --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \ +@GIWS_TRUE@ fi \ +@GIWS_TRUE@ done; \ +@GIWS_TRUE@ fi + +@GIWS_TRUE@giws-exception: +@GIWS_TRUE@ @GIWS_OUTPUTDIR=src/jni/;\ +@GIWS_TRUE@ echo "GIWS: Generation of exception class ..."; \ +@GIWS_TRUE@ $(GIWS_BIN) --generate-exception-class --output-dir $$GIWS_OUTPUTDIR + +macros: + -@( if test ! -x $(top_builddir)/scilab-bin; then \ + echo "Error : Cannot build $< : Scilab has not been built"; \ + else \ + $(top_builddir)/bin/scilab -ns -nwni -e "exec('macros/buildmacros.sce');quit;";\ + fi) + +# Removes the macros +clean-macros: +# Removes macros (*.bin generated from .sci) + @for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \ + echo "rm -f $(builddir)/$$dir/$(MACROBINMASK)"; \ + rm -f $(builddir)/$$dir/$(MACROBINMASK); \ + done + +test: +# More tests could be added here + @if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \ + if test -f build.xml -a $$USEANT -eq 1; then \ + $(ANT) test; \ + fi + +all-local: $(TARGETS_ALL) + +.sci.bin: + -@( if test ! -x $(top_builddir)/scilab-bin; then \ + echo "Error : Cannot build $< : Scilab has not been build"; \ + else \ + echo "Creating $@"; \ + $(top_builddir)/bin/scilab -ns -nwni -e "exec('$(abs_srcdir)/$<');save('$(abs_srcdir)/$@');exit;"; \ + fi ) + +install-html-local: + +install-data-local-local: +# Mainly for javasci + @if test -d $(srcdir)/javadoc; then \ + cp -R $(srcdir)/javadoc $(DESTDIR)/$(mydatadir)/; \ + fi +# If the user wants the help sources to be installed +@INSTALL_HELP_XML_TRUE@ @echo "-------- Install of XML sources of help files --------"; \ +@INSTALL_HELP_XML_TRUE@ for lang in $(ALL_LINGUAS); do \ +@INSTALL_HELP_XML_TRUE@ if test -d $(srcdir)/help/$$lang; then \ +@INSTALL_HELP_XML_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/$$lang && \ +@INSTALL_HELP_XML_TRUE@ if ls -lLd $(srcdir)/help/$$lang/$(DOCMASKXML) >/dev/null 2>&1; then \ +@INSTALL_HELP_XML_TRUE@ for file in $(srcdir)/help/$$lang/$(DOCMASKXML) ; do \ +@INSTALL_HELP_XML_TRUE@ echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/$$lang" ; \ +@INSTALL_HELP_XML_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/$$lang ; \ +@INSTALL_HELP_XML_TRUE@ done ; \ +@INSTALL_HELP_XML_TRUE@ fi; \ +@INSTALL_HELP_XML_TRUE@ fi; \ +@INSTALL_HELP_XML_TRUE@ done; \ +@INSTALL_HELP_XML_TRUE@ @echo "-------- Install of MathML sources --------"; \ +@INSTALL_HELP_XML_TRUE@ if test -d $(srcdir)/help/mml/; then \ +@INSTALL_HELP_XML_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/mml/ && \ +@INSTALL_HELP_XML_TRUE@ if ls -lLd $(srcdir)/help/mml/$(DOCMASKMML) >/dev/null 2>&1; then \ +@INSTALL_HELP_XML_TRUE@ for file in $(srcdir)/help/mml/$(DOCMASKMML) ; do \ +@INSTALL_HELP_XML_TRUE@ echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/mml" ; \ +@INSTALL_HELP_XML_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/mml ; \ +@INSTALL_HELP_XML_TRUE@ done ; \ +@INSTALL_HELP_XML_TRUE@ fi; \ +@INSTALL_HELP_XML_TRUE@ fi +install-data-local: +# Install the tests + @echo "-------- Install tests (if any) --------"; \ + for dir in $(TESTS_DIR) $(TESTS_DIREXT) ; do \ + if test -d $(srcdir)/$$dir/; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \ + for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \ + if test -d "$(srcdir)/$$dir/$$file"; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir/$$file; \ + $(mkinstalldirs) "$(DESTDIR)$(pkgmacrosdir)/$$dir/$$file"; \ + else \ + echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \ + $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \ + fi \ + done; \ + fi; \ + done +# Install the help chapter + @echo "-------- Install the help chapter (if any) --------"; \ + for lang in $(HELP_CHAPTERLANG); do \ + HELPFILE=$(srcdir)/$(HELP_CHAPTERDIR)$$lang/$(HELP_CHAPTERFILE); \ + if test -f $$HELPFILE; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \ + echo $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \ + $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \ + fi; \ + done +# Install the demos & examples + @echo "-------- Install demos & examples (if any) --------"; \ + for dir in $(DEMOS_DIR) $(DEMOS_DIREXT) $(EXAMPLES_DIR) $(EXAMPLES_DIREXT) ; do \ + if test -d $(srcdir)/$$dir/; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir && \ + for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \ + if test -d "$(srcdir)/$$dir/$$file"; then \ + echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir/$$file; \ + $(mkinstalldirs) "$(DESTDIR)$(pkgdocdir)/$$dir/$$file"; \ + else \ + echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \ + $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \ + fi \ + done; \ + fi; \ + done +# Install the macros + @echo "-------- Install macros (if any) --------"; \ + for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \ + $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \ + if test -d $(srcdir)/$$dir/; then \ + FILELIST="$(srcdir)/$$dir/$(MACROMASK) $(srcdir)/$$dir/$(MACROBINMASK) $(srcdir)/$$dir/$(MACROBUILDMASK) $(srcdir)/$$dir/names $(srcdir)/$$dir/lib";\ + if test -n "$(MACROSSPECIALEXT)"; then \ + specialExtDir=""; \ + for specialExt in $(MACROSSPECIALEXT); do \ + specialExtDir="$$specialExtDir $(srcdir)/$$dir/$$specialExt"; \ + done; \ + FILELIST="$$FILELIST $$specialExtDir"; \ + fi; \ + for file in `ls -1 $$FILELIST 2>/dev/null`; do \ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgmacrosdir)/$$dir" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgmacrosdir)/$$dir ; \ + done; \ + fi; \ + done +# Install java files (.jar) + @if ls -lLd $(srcdir)/$(JARDIR)$(JARMASK) >/dev/null 2>&1; then \ + echo "-------- Install jar files --------"; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(JARDIR); \ + for file in $(srcdir)/$(JARDIR)$(JARMASK); do\ + echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/$(JARDIR)" ; \ + $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/$(JARDIR) ; \ + done ; \ + fi + +########### CLEAN ################### +# Clean help (generated automatically by Scilab) +# It used to clean the macro (clean-macros) but this was causing +# make clean && make to fail Scilab startup +@NEED_JAVA_TRUE@clean-local: clean-java +@NEED_JAVA_FALSE@clean-local: + +distclean-local: + rm -f $(builddir)/help/*/.last_successful_build_javaHelp $(builddir)/help/*/.list_* + +.PHONY: macros java swig giws + +# Provides macros compilation, Java compilation, cleaning +# If you want Makefile to call ant, added USEANT=1 + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/modules/completion/build.xml b/modules/completion/build.xml new file mode 100755 index 000000000..fb0d68265 --- /dev/null +++ b/modules/completion/build.xml @@ -0,0 +1,20 @@ + + + + + + + + Build "completion" module + + diff --git a/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow$CompletionItemListModel.class b/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow$CompletionItemListModel.class new file mode 100755 index 000000000..31232c27b Binary files /dev/null and b/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow$CompletionItemListModel.class differ diff --git a/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow.class b/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow.class new file mode 100755 index 000000000..caeba677f Binary files /dev/null and b/modules/completion/build/classes/org/scilab/modules/completion/AbstractSciCompletionWindow.class differ diff --git a/modules/completion/build/classes/org/scilab/modules/completion/Completion.class b/modules/completion/build/classes/org/scilab/modules/completion/Completion.class new file mode 100755 index 000000000..487177b57 Binary files /dev/null and b/modules/completion/build/classes/org/scilab/modules/completion/Completion.class differ diff --git a/modules/completion/build/classes/org/scilab/modules/completion/CompletionJNI.class b/modules/completion/build/classes/org/scilab/modules/completion/CompletionJNI.class new file mode 100755 index 000000000..d213ee1fd Binary files /dev/null and b/modules/completion/build/classes/org/scilab/modules/completion/CompletionJNI.class differ diff --git a/modules/completion/completion.iss b/modules/completion/completion.iss new file mode 100755 index 000000000..6c4d009db --- /dev/null +++ b/modules/completion/completion.iss @@ -0,0 +1,50 @@ +; +; Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +; Copyright (C) INRIA - Allan CORNET +; Copyright (C) DIGITEO - 2010 - Allan CORNET +; +; This file must be used under the terms of the CeCILL. +; This source file is licensed as described in the file COPYING, which +; you should have received as part of this distribution. The terms +; are also available at +; http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +; +;-------------------------------------------------------------------------------------------------------------- +; Inno Setup Script (5.3 and more) for Scilab (UNICODE version required) +; +;-------------------------------------------------------------------------------------------------------------- +; completion module +;-------------------------------------------------------------------------------------------------------------- +; +#define COMPLETION "completion" +; +Source: bin\sci{#COMPLETION}.dll; DestDir: {app}\bin; Components: {#COMPN_SCILAB} +Source: bin\sci{#COMPLETION}.lib; DestDir: {app}\bin; Components: {#COMPN_SCILAB} +; +Source: modules\{#COMPLETION}\jar\org.scilab.modules.{#COMPLETION}.jar;DestDir: {app}\modules\{#COMPLETION}\jar; Components: {#COMPN_SCILAB} and {#COMPN_JVM_MODULE} +; +;Source: bin\nosci{#COMPLETION}.dll; DestDir: {app}\bin; DestName: sci{#COMPLETION}.dll; Components: not ({#COMPN_SCILAB}) +; +Source: modules\{#COMPLETION}\license.txt; DestDir: {app}\modules\{#COMPLETION}; Components: {#COMPN_SCILAB} +; +Source: modules\{#COMPLETION}\sci_gateway\{#COMPLETION}_gateway.xml; DestDir: {app}\modules\{#COMPLETION}\sci_gateway; Components: {#COMPN_SCILAB} +; +Source: modules\{#COMPLETION}\includes\*.h; DestDir: {app}\modules\{#COMPLETION}\includes; Components: {#COMPN_SCILAB} +; +Source: modules\{#COMPLETION}\etc\{#COMPLETION}.quit; DestDir: {app}\modules\{#COMPLETION}\etc; Components: {#COMPN_SCILAB} +Source: modules\{#COMPLETION}\etc\{#COMPLETION}.start; DestDir: {app}\modules\{#COMPLETION}\etc; Components: {#COMPN_SCILAB} +; +; +;Source: modules\{#COMPLETION}\macros\buildmacros.sce; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +Source: modules\{#COMPLETION}\macros\buildmacros.bat; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +Source: modules\{#COMPLETION}\macros\cleanmacros.bat; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +;Source: modules\{#COMPLETION}\macros\*.bin; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +;Source: modules\{#COMPLETION}\macros\*.sci; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +;Source: modules\{#COMPLETION}\macros\lib; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +;Source: modules\{#COMPLETION}\macros\names; DestDir: {app}\modules\{#COMPLETION}\macros; Components: {#COMPN_SCILAB} +; +;Source: modules\{#COMPLETION}\demos\*.*; DestDir: {app}\modules\{#COMPLETION}\demos; Flags: recursesubdirs; Components: {#COMPN_SCILAB} +; +Source: modules\{#COMPLETION}\tests\*.*; DestDir: {app}\modules\{#COMPLETION}\tests; Flags: recursesubdirs; Components: {#COMPN_SCILAB} and {#COMPN_TESTS} +; +;-------------------------------------------------------------------------------------------------------------- diff --git a/modules/completion/etc/completion.quit b/modules/completion/etc/completion.quit new file mode 100755 index 000000000..ab83f0c89 --- /dev/null +++ b/modules/completion/etc/completion.quit @@ -0,0 +1,10 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2007-2008 - INRIA +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + diff --git a/modules/completion/etc/completion.start b/modules/completion/etc/completion.start new file mode 100755 index 000000000..fcea138c2 --- /dev/null +++ b/modules/completion/etc/completion.start @@ -0,0 +1,9 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + diff --git a/modules/completion/includes/completeLine.h b/modules/completion/includes/completeLine.h new file mode 100755 index 000000000..fcb069a37 --- /dev/null +++ b/modules/completion/includes/completeLine.h @@ -0,0 +1,33 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2009 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +#ifndef __COMPLETE_LINE_H__ +#define __COMPLETE_LINE_H__ + +#include "dynlib_completion.h" +#include "BOOL.h" + + +/** +* complete line with a string +* @param[in] current line +* @param[in] string to add +* @param[in] file pattern +* @param[in] default pattern +* @param[in] string added is path or not +* @param[in] string after caret (completion with insertion) +* @return line assembled +*/ +COMPLETION_IMPEXP char *completeLine(char *currentline, char *stringToAdd, char *filePattern, + char *defaultPattern, BOOL stringToAddIsPath, char *postCaretLine); + +#endif /* __COMPLETE_LINE_H__ */ diff --git a/modules/completion/includes/completion.h b/modules/completion/includes/completion.h new file mode 100755 index 000000000..ecb45bc95 --- /dev/null +++ b/modules/completion/includes/completion.h @@ -0,0 +1,91 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __COMPLETION_H__ +#define __COMPLETION_H__ + +#include "dynlib_completion.h" + +/** + * completion function on all types for scilab + * @param[in] somechars first characters of a word + * @param[out] sizeArrayReturned + * @return an array of chars + */ +COMPLETION_IMPEXP char **completion(char *somechars, int *sizeArrayReturned); + +/** +* completion function on Functions for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnFunctions(char *somechars, int *sizeArrayReturned); + +/** +* completion function on command words for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnCommandWords(char *somechars, int *sizeArrayReturned); + +/** +* completion function on Macros in libraries for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnMacros(char *somechars, int *sizeArrayReturned); + +/** +* completion function on Variables for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnVariables(char *somechars, int *sizeArrayReturned); + +/** +* completion function on Variables for scilab +* Macros already defined as variables are removed +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnVariablesWithoutMacros(char *somechars, int *sizeArrayReturned); + +/** +* completion function on files for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnFiles(char *somechars, int *sizeArrayReturned); + +/** +* completion function on files for scilab +* @param[in] the line before the caret +* @param[in] the part +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnFields(char *lineBeforeCaret, char *pattern, int *sizeArrayReturned); + +/** +* completion handle graphics properties for scilab +* @param[in] somechars first characters of a word +* @param[out] sizeArrayReturned +* @return an array of chars +*/ +COMPLETION_IMPEXP char **completionOnHandleGraphicsProperties(char *somechars, int *sizeArrayReturned); +/*--------------------------------------------------------------------------*/ +#endif /* __COMPLETION_H__ */ diff --git a/modules/completion/includes/dynlib_completion.h b/modules/completion/includes/dynlib_completion.h new file mode 100755 index 000000000..bfad1a6d4 --- /dev/null +++ b/modules/completion/includes/dynlib_completion.h @@ -0,0 +1,29 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#ifndef __DYNLIB_COMPLETION_H__ +#define __DYNLIB_COMPLETION_H__ + +#ifdef _MSC_VER +#ifdef COMPLETION_EXPORTS +#define COMPLETION_IMPEXP __declspec(dllexport) +#else +#define COMPLETION_IMPEXP __declspec(dllimport) +#endif +#else +#define COMPLETION_IMPEXP +#endif + +#endif /* __DYNLIB_COMPLETION_H__ */ +/*--------------------------------------------------------------------------*/ + diff --git a/modules/completion/includes/getCommonPart.h b/modules/completion/includes/getCommonPart.h new file mode 100755 index 000000000..d6bbe6daf --- /dev/null +++ b/modules/completion/includes/getCommonPart.h @@ -0,0 +1,31 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2008 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#ifndef __GETCOMMONPART_H__ +#define __GETCOMMONPART_H__ + +#include "dynlib_completion.h" + +/** +* get common part of words +* example gethistory, gethistoryfile, gethist +* it will return : gethist +* @param[in] matrix of strings +* @param[in] size of array +* @return a string common part +*/ +COMPLETION_IMPEXP char *getCommonPart(char **dictionary, int sizeDictionary); + +#endif /* __GETCOMMONPART_H__ */ + +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/includes/getPartLine.h b/modules/completion/includes/getPartLine.h new file mode 100755 index 000000000..c4d962240 --- /dev/null +++ b/modules/completion/includes/getPartLine.h @@ -0,0 +1,33 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2008 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +#ifndef __GETPARTLINE_H__ +#define __GETPARTLINE_H__ + +#include "dynlib_completion.h" + +/** +* pre parsing current line to search with completion +* @param[in] current line +* @return word to find with completion +*/ +COMPLETION_IMPEXP char *getPartLevel(char *line); + +/** +* pre parsing current line to search with completion (file) +* @param[in] current line +* @return word to find with completion +*/ +COMPLETION_IMPEXP char *getFilePartLevel(char *line); + + +#endif /* __GETPARTLINE_H__ */ diff --git a/modules/completion/includes/getfields.h b/modules/completion/includes/getfields.h new file mode 100755 index 000000000..4e1a29722 --- /dev/null +++ b/modules/completion/includes/getfields.h @@ -0,0 +1,34 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __GETFIELDS_H__ +#define __GETFIELDS_H__ + +/** + * Get the fields name for a type and a mlist + * @param typeName the type name + * @param mlist the mlist address + * @return the arry of fields name + */ +const char ** getFieldsForType(const char * typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize); + +const char ** getFields(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize); + +/** + * Initialization + */ +void initializeFieldsGetter(); + +char ** getFieldPath(const char * _str, int * len); + +#endif diff --git a/modules/completion/includes/getfieldsdictionary.h b/modules/completion/includes/getfieldsdictionary.h new file mode 100755 index 000000000..49eb53e5b --- /dev/null +++ b/modules/completion/includes/getfieldsdictionary.h @@ -0,0 +1,26 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2010 - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __GETFIELDSDICTIONARY_H__ +#define __GETFIELDSDICTIONARY_H__ + +/** +* get fields dictionary +* @param[in] the line before the caret +* @param[in] the part +* @param[in] the returned size of the array +* @return array of strings +*/ +char **getfieldsdictionary(char *, char*, int*); + +#endif /* __GETFIELDSDICTIONARY_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/includes/getmacrosdictionary.h b/modules/completion/includes/getmacrosdictionary.h new file mode 100755 index 000000000..d0297259e --- /dev/null +++ b/modules/completion/includes/getmacrosdictionary.h @@ -0,0 +1,23 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#ifndef __GETMACROSDICTIONARY_H__ +#define __GETMACROSDICTIONARY_H__ + +/** +* get scilab macros dictionary +* @param[out] size of returned array +* @return array of strings +*/ +char **getmacrosdictionary(int *sizearray); + +#endif /* __GETMACROSDICTIONARY_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/includes/gw_completion.h b/modules/completion/includes/gw_completion.h new file mode 100755 index 000000000..b04a22bac --- /dev/null +++ b/modules/completion/includes/gw_completion.h @@ -0,0 +1,24 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#ifndef __GW_COMPLETION_H__ +#define __GW_COMPLETION_H__ +/*--------------------------------------------------------------------------*/ +#include "dynlib_completion.h" +/*--------------------------------------------------------------------------*/ +COMPLETION_IMPEXP int gw_completion(void); +/*--------------------------------------------------------------------------*/ +/* Declaration of all the profile function declared and */ +/* used in sci_gateway */ +COMPLETION_IMPEXP int sci_completion(char *fname, unsigned long fname_len); +/*--------------------------------------------------------------------------*/ +#endif /* __GW_COMPLETION_H__ */ + diff --git a/modules/completion/jar/org.scilab.modules.completion.jar b/modules/completion/jar/org.scilab.modules.completion.jar new file mode 100755 index 000000000..cc30fdba1 Binary files /dev/null and b/modules/completion/jar/org.scilab.modules.completion.jar differ diff --git a/modules/completion/libscicompletion-algo.la b/modules/completion/libscicompletion-algo.la new file mode 100755 index 000000000..283c4a154 --- /dev/null +++ b/modules/completion/libscicompletion-algo.la @@ -0,0 +1,41 @@ +# libscicompletion-algo.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libscicompletion-algo.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lpthread -ldl -lcurses' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libscicompletion-algo. +current= +age= +revision= + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='' diff --git a/modules/completion/libscicompletion.la b/modules/completion/libscicompletion.la new file mode 100755 index 000000000..a30db8b88 --- /dev/null +++ b/modules/completion/libscicompletion.la @@ -0,0 +1,41 @@ +# libscicompletion.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libscicompletion.so.5' + +# Names of this library. +library_names='libscicompletion.so.5.5.2 libscicompletion.so.5 libscicompletion.so' + +# The name of the static archive. +old_library='' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lpthread -ldl -lcurses -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libscicompletion. +current=10 +age=5 +revision=2 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/local/lib/scilab' diff --git a/modules/completion/license.txt b/modules/completion/license.txt new file mode 100755 index 000000000..ceaa946a2 --- /dev/null +++ b/modules/completion/license.txt @@ -0,0 +1,11 @@ +Copyright: +Copyright (c) 2008 - DIGITEO +Copyright (c) 1989-2008 - INRIA + +License: +This module must be used under the terms of the CeCILL. +This module file is licensed as described in the file COPYING, which +you should have received as part of this distribution. The terms +are also available at +http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + diff --git a/modules/completion/locales/ca_ES.po b/modules/completion/locales/ca_ES.po new file mode 100755 index 000000000..a39375b21 --- /dev/null +++ b/modules/completion/locales/ca_ES.po @@ -0,0 +1,71 @@ +# Catalan translation for scilab +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2012-04-18 18:54+0000\n" +"Last-Translator: Marc Coll Carrillo \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: ca\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: L'argument d'entrada #%d té una mida incorrecta: Ha de ser una cadena de " +"text.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: L'argument d'entrada #%d és d'un tipus incorrecte: Ha de ser un text.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: L'argument d'entrada té un valor incorrecte: Ha de ser '%s', '%s', '%s', " +"'%s', '%s' o '%s'.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: El nombre d'arguments de sortida és incorrecte.\n" + +msgid "File or Directory" +msgstr "Fitxer o directori" + +msgid "Scilab completion module not installed.\n" +msgstr "No s'ha instal·lat el mòdul completion de Scilab.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Els arguments d'entrada són d'un tipus incorrecte.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: L'argument d'entrada #%d té una mida incorrecta: Ha de ser un booleà.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: mida incorrecta del paràmetre d'entrada: s'esperava una cadena.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: L'argument d'entrada #%d és d'un tipus incorrecte: Ha de ser una cadena " +"de caràcters.\n" diff --git a/modules/completion/locales/completion.pot b/modules/completion/locales/completion.pot new file mode 100755 index 000000000..159c3e727 --- /dev/null +++ b/modules/completion/locales/completion.pot @@ -0,0 +1,95 @@ +# Localization of the module completion +# Please see in SCI/tools/localization for localization management +# Copyright (C) 2007-2008 - INRIA +# Copyright (C) 2008-2011 - DIGITEO +# Copyright (C) 2012-2014 - Scilab-Enterprises +# This file is distributed under the same license as the Scilab package. +# +msgid "" +msgstr "" +"Project-Id-Version: Scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"Last-Translator: Vincent COUVERT \n" +"Language-Team: Scilab Localization \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"Revision-Date: 2015-03-27 13:54+0100\n" + +# File: sci_gateway/c/sci_completion.c, line: 43 +# File: sci_gateway/c/sci_completion.c, line: 83 +# File: tests/utilities/sci_completeline.c, line: 45 +# File: tests/utilities/sci_completeline.c, line: 93 +# File: tests/utilities/sci_completeline.c, line: 107 +# File: tests/utilities/sci_completeline.c, line: 122 +# File: tests/utilities/sci_completeline.c, line: 138 +# File: tests/utilities/sci_getfilepartlevel.c, line: 59 +# File: tests/utilities/sci_getpartlevel.c, line: 59 +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" + +# +# File: sci_gateway/c/sci_completion.c, line: 49 +# File: sci_gateway/c/sci_completion.c, line: 131 +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" + +# +# File: sci_gateway/c/sci_completion.c, line: 115 +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" + +# +# File: sci_gateway/c/sci_completion.c, line: 144 +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "" + +# +# File: src/java/org/scilab/modules/completion/AbstractSciCompletionWindow.java, line: 262 +msgid "File or Directory" +msgstr "" + +# +# File: src/nocompletion/nocompletion.c, line: 19 +msgid "Scilab completion module not installed.\n" +msgstr "" + +# +# File: tests/utilities/sci_completeline.c, line: 51 +# File: tests/utilities/sci_completeline.c, line: 187 +# File: tests/utilities/sci_getcommonpart.c, line: 66 +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "" + +# +# File: tests/utilities/sci_completeline.c, line: 154 +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" + +# +# File: tests/utilities/sci_getcommonpart.c, line: 61 +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +# +# File: tests/utilities/sci_getfields.c, line: 51 +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" + +# +# File: tests/utilities/sci_getfilepartlevel.c, line: 64 +# File: tests/utilities/sci_getpartlevel.c, line: 64 +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" diff --git a/modules/completion/locales/cs_CZ.po b/modules/completion/locales/cs_CZ.po new file mode 100755 index 000000000..3f8d2a287 --- /dev/null +++ b/modules/completion/locales/cs_CZ.po @@ -0,0 +1,63 @@ +# Czech translation for scilab +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2011-08-10 06:05+0000\n" +"Last-Translator: Zbyněk Schwarz \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "%s: Špatná velikost vstupního argumentu #%d: Očekáván řetězec.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s: Chybný typ vstupního argumentu #%d: Očekáván řetězec.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Chybná hodnota vstupního argumentu: Byl očekáván '%s', '%s', '%s', '%s', " +"'%s' nebo '%s'.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Špatný počet výstupních argumentů.\n" + +msgid "File or Directory" +msgstr "Soubor nebo Adresář" + +msgid "Scilab completion module not installed.\n" +msgstr "Modul dokončení Scilabu není nainstalován.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Špatný typ vstupních argumentů.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "%s: Špatná velikost vstupního argumentu #%d: Byl očekáván boolean.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "%s: Chybná velikost vstupního argumentu: Očekáván řetězec.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "%s: Špatný typ vstupního argumentu #%d: Očekáván řetězec.\n" diff --git a/modules/completion/locales/de_DE.po b/modules/completion/locales/de_DE.po new file mode 100755 index 000000000..b8682def6 --- /dev/null +++ b/modules/completion/locales/de_DE.po @@ -0,0 +1,68 @@ +# German translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2011-05-12 20:51+0000\n" +"Last-Translator: Benedict Etzel \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: de\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: Falsche Größe für Eingangsargument #%d: eine Zeichenkette erwartet.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s: Falscher Typ für Eingangsargument #%d: Zeichenkette erwartet.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Falscher Wert für Eingangsargument: '%s', '%s', '%s', '%s', '%s' oder " +"'%s' erwartet.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Falsche Anzahl von Ausgangsargumenten.\n" + +msgid "File or Directory" +msgstr "Datei oder Verzeichnis" + +msgid "Scilab completion module not installed.\n" +msgstr "Scilab Vervollständigungsmodul nicht installiert.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Falscher Typ für Eingangsargumente.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: Falsche Größe für Eingangsargument #%d: einen booleschen Wert erwartet.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: Falsche Grösse des Eingangsarguments: Eine Zeichenkette wird erwartet.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: Falscher Typ für Eingangsargument #%d: eine Zeichenkette erwartet.\n" diff --git a/modules/completion/locales/es_ES.po b/modules/completion/locales/es_ES.po new file mode 100755 index 000000000..4fd358924 --- /dev/null +++ b/modules/completion/locales/es_ES.po @@ -0,0 +1,70 @@ +# Spanish translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2011-06-30 15:20+0000\n" +"Last-Translator: Oleksiy Zaytsev \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: es\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: Tamaño incorrecto del argumento de entrada #%d: Se esperaba un string.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: Tipo incorrecto del argumento de entrada #%d: Se esperaba un string.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Valor incorrecto de argumento de entrada: Se esperaba %s', '%s', '%s', " +"'%s', '%s' o '%s'\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Número incorrecto de argumento(s) de salida.\n" + +msgid "File or Directory" +msgstr "Archivo o Directorio" + +msgid "Scilab completion module not installed.\n" +msgstr "Módulo de terminación de Scilab no instalado.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Tipo incorrecto de argumentos de entrada.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: Tamaño incorrecto del argumento de entrada #%d: Se esperaba un " +"booleano.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: Tamaño incorrecto del argumento de entrada: Se esperaba un string.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: Tipo incorrecto del argumento de entrada #%d: Se esperaba un string.\n" diff --git a/modules/completion/locales/fr_FR.po b/modules/completion/locales/fr_FR.po new file mode 100755 index 000000000..7c1537f49 --- /dev/null +++ b/modules/completion/locales/fr_FR.po @@ -0,0 +1,72 @@ +# French translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2014-03-31 09:23+0000\n" +"Last-Translator: Vincent Couvert \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: fr\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s : Dimension erronée de l'argument d'entrée n°%d : Une chaîne de " +"caractères attendue.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s : Type erroné de l'argument n°%d : Une chaîne de caractères attendue.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s : Type erroné de l'argument d'entrée : '%s', '%s', '%s', '%s', '%s' ou " +"'%s' attendu.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s : Nombre erroné d'argument(s) de sortie.\n" + +msgid "File or Directory" +msgstr "Fichier ou Répertoire" + +msgid "Scilab completion module not installed.\n" +msgstr "Le module de complétion Scilab n'est pas installé.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s : Type erroné des arguments d'entrée.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s : Dimension erronée de l'argument d'entrée n°%d : Un booléen attendu.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s : Dimension erronée de l'argument d'entrée n°%d.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s : Dimension erronée de l'argument d'entrée : Une chaîne de caractère " +"attendue.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s : Type erroné de l'argument d'entrée n°%d : Une chaîne de caractères " +"attendue.\n" diff --git a/modules/completion/locales/it_IT.po b/modules/completion/locales/it_IT.po new file mode 100755 index 000000000..d3f33b753 --- /dev/null +++ b/modules/completion/locales/it_IT.po @@ -0,0 +1,74 @@ +# Italian translation for scilab +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2015-02-14 21:07+0000\n" +"Last-Translator: Carml \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: it\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: L'argomento in ingresso #%d ha una dimensione sbagliata: era attesa una " +"stringa.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: L'argomento in ingresso #%d è di tipo sbagliato: era attesa una " +"stringa.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: L'argomento in ingresso ha dei valori sbagliati: era atteso " +"'%s','%s','%s','%s','%s' o '%s'.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Il numero degli argomenti in uscita è sbagliato.\n" + +msgid "File or Directory" +msgstr "File o Directory" + +msgid "Scilab completion module not installed.\n" +msgstr "Il modulo di completamento di Scilab non è installato.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s:Gli argomenti in ingresso sono di tipo sbagliato.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: L'argomento in ingresso #%d ha una dimensione sbagliata: era atteso un " +"valore booleano.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s: L'argomento in ingresso #%d ha una dimensione sbagliata.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: L'argomento in ingresso ha una dimensione sbagliata: era attesa una " +"stringa.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: L'argomento in ingresso #%d è di tipo sbagliato: era attesa una " +"stringa.\n" diff --git a/modules/completion/locales/ja_JP.po b/modules/completion/locales/ja_JP.po new file mode 100755 index 000000000..ad4ea8133 --- /dev/null +++ b/modules/completion/locales/ja_JP.po @@ -0,0 +1,65 @@ +# Japanese translation for scilab +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2014-02-17 14:36+0000\n" +"Last-Translator: Rui Hirokawa \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"X-Poedit-Country: Japan\n" +"Language: ja\n" +"X-Poedit-Language: Japanese\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "%s: 入力引数 #%d の大きさが間違っています: 文字列を指定してください.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s: 入力引数 #%d の型が間違っています: 文字列を指定してください.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: 入力引数の値が間違っています: '%s', '%s', '%s', '%s', '%s' または '%s'を指定してください.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: 出力引数の数が間違っています.\n" + +msgid "File or Directory" +msgstr "ファイルまたはディレクトリ" + +msgid "Scilab completion module not installed.\n" +msgstr "Scilabのcompletionモジュールはインストールされていません.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: 入力引数の型が間違っています.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "%s: 入力引数 #%d の大きさが間違っています: 論理値を指定してください.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s: 入力引数 #%d の大きさが間違っています.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "%s: 入力引数の大きさが間違っています: 文字列を指定してください.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "%s: 入力引数 #%d の型が間違っています: 文字列を指定してください.\n" diff --git a/modules/completion/locales/pl_PL.po b/modules/completion/locales/pl_PL.po new file mode 100755 index 000000000..32b849698 --- /dev/null +++ b/modules/completion/locales/pl_PL.po @@ -0,0 +1,72 @@ +# Polish translation for scilab +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2011-12-03 14:26+0000\n" +"Last-Translator: I.Rokach \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: pl\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: Nieprawidłowy rozmiar argumentu wejściowego nr %d: oczekiwano ciągu " +"znaków.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: Nieprawidłowy typ argumentu wejściowego nr %d: oczekiwano łańcuch.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Nieprawidłowa wartość argumentu wejściowego. Oczekiwano: '%s', '%s', " +"'%s', '%s', '%s' lub '%s'.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Nieprawidłowa liczba argumentów wyjściowych.\n" + +msgid "File or Directory" +msgstr "Plik lub katalog" + +msgid "Scilab completion module not installed.\n" +msgstr "Moduł uzupełniania kodu Scilab nie jest zainstalowany.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Nieprawidłowy typ argumentów wejściowych.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: Nieprawidłowy rozmiar parametru wejściowego nr %d: oczekiwano wartości " +"logicznej.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: Nieprawidłowa wartość argumentu wejściowego:oczekiwano łańcuch.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: Nieprawidłowy typ argumentu wejściowego #%d: Oczekiwano wartości " +"string.\n" diff --git a/modules/completion/locales/pt_BR.po b/modules/completion/locales/pt_BR.po new file mode 100755 index 000000000..c5676dc99 --- /dev/null +++ b/modules/completion/locales/pt_BR.po @@ -0,0 +1,71 @@ +# Brazilian Portuguese translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2015-02-23 03:59+0000\n" +"Last-Translator: RodolfoRG \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: pt_BR\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: Tamanho incorreto para o argumento de entrada #%d: esperava-se um " +"texto.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: Tipo incorreto para o argumento de entrada #%d: esperava-se um texto.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Valor incorreto para argumento de entrada: esperava-se '%s', '%s', '%s', " +"'%s', '%s' ou '%s'.\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Quantidade incorreta de argumentos de saída.\n" + +msgid "File or Directory" +msgstr "Arquivo ou diretório" + +msgid "Scilab completion module not installed.\n" +msgstr "O módulo de autocompletar do Scilab não está instalado.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Tipo incorreto para os argumentos de entrada.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: Tamanho incorreto para o argumento de entrada #%d: esperava-se um " +"booleano.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s: Tamanho incorreto para o argumento de entrada #%d.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: Tamanho incorreto para o argumento de entrada: esperava-se um texto.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: Tipo incorreto para o argumento de entrada #%d: esperava-se um texto.\n" diff --git a/modules/completion/locales/ru_RU.po b/modules/completion/locales/ru_RU.po new file mode 100755 index 000000000..331b198de --- /dev/null +++ b/modules/completion/locales/ru_RU.po @@ -0,0 +1,65 @@ +# Russian translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2014-05-31 15:44+0000\n" +"Last-Translator: Stanislav V. Kroter \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: ru\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "%s: Неверный размер входного параметра №%d: ожидалась строка.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s: Неверный тип входного параметра №%d: ожидалась строка.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: Неверное значение входного праметра: ожидалось «%s», «%s», «%s», «%s», " +"«%s» или «%s».\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: Неверное количество выходных параметров.\n" + +msgid "File or Directory" +msgstr "Файл или Каталог" + +msgid "Scilab completion module not installed.\n" +msgstr "Модуль поддержки автозавершения кода не установлен.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: Неверный тип входных параметров.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: Неверный размер входного параметра №%d: ожидалось логическое значение.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s: Неверный размер входного аргумента №%d.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "%s: Неверный размер входного параметра: ожидалась строка.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "%s: Неверный тип входного параметра №%d: ожидалась строка.\n" diff --git a/modules/completion/locales/uk_UA.po b/modules/completion/locales/uk_UA.po new file mode 100755 index 000000000..6f9b67e5c --- /dev/null +++ b/modules/completion/locales/uk_UA.po @@ -0,0 +1,73 @@ +# Ukrainian translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2014-02-23 07:28+0000\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: uk\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "" +"%s: помилковий розмір вхідного параметра №%d: слід використовувати рядок.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "" +"%s: помилковий тип вхідного параметра №%d: слід використовувати тип " +"«string».\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "" +"%s: помилкове значення вхідного параметра: слід використовувати «%s», «%s», " +"«%s», «%s», «%s» або «%s».\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: помилкова кількість вихідних параметрів.\n" + +msgid "File or Directory" +msgstr "Файл або каталог" + +msgid "Scilab completion module not installed.\n" +msgstr "Модуль автоматичного завершеня Scilab не встановлено.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: помилковий тип вхідних параметрів.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "" +"%s: помилкова розмірність вхідного параметра №%d: слід використовувати " +"булівське значення.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s: помилкова розмірність вхідного параметра №%d.\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "" +"%s: помилкова розмірність вхідного параметра. Слід використовувати рядковий " +"тип (string).\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "" +"%s: помилковий тип вхідного параметра №%d: слід використовувати тип " +"«string».\n" diff --git a/modules/completion/locales/zh_CN.po b/modules/completion/locales/zh_CN.po new file mode 100755 index 000000000..40d7ac118 --- /dev/null +++ b/modules/completion/locales/zh_CN.po @@ -0,0 +1,62 @@ +# Simplified Chinese translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2014-04-20 06:41+0000\n" +"Last-Translator: Wesh \n" +"Language-Team: Simplified Chinese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: \n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "%s:第%d个输入参数的大小错误:应该为字符串。\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s:第%d个输入参数的类型错误:应该为字符串。\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "%s:输入参数的值错误:应该为'%s'、'%s'、'%s'、'%s'、'%s'或'%s'。\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s:输出参数的数目错误。\n" + +msgid "File or Directory" +msgstr "文件或目录" + +msgid "Scilab completion module not installed.\n" +msgstr "Scilab的completion模块未安装。\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s:输入参数的类型错误。\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "%s:第%d个输入参数的大小错误:应该为布尔值。\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "%s:第%d个输入参数的大小错误。\n" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "%s:输入参数的大小错误:应该为字符串。\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "%s:第%d个输入参数的类型错误:应该为字符串。\n" diff --git a/modules/completion/locales/zh_TW.po b/modules/completion/locales/zh_TW.po new file mode 100755 index 000000000..326ebf4e3 --- /dev/null +++ b/modules/completion/locales/zh_TW.po @@ -0,0 +1,62 @@ +# Traditional Chinese translation for scilab +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the scilab package. +# FIRST AUTHOR , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: scilab\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-16 17:44+0100\n" +"PO-Revision-Date: 2011-05-23 02:31+0000\n" +"Last-Translator: MouetteYang \n" +"Language-Team: Traditional Chinese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Launchpad (build 17413)\n" +"Language: \n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A string expected.\n" +msgstr "%s: 第 %d 個輸入參數的資料長度錯誤: 應該是字串.\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: String expected.\n" +msgstr "%s: 第 %d 個輸入參數型態錯誤: 應為字串.\n" + +#, c-format +msgid "" +"%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' " +"expected.\n" +msgstr "%s: 輸入參數數值錯誤: 應為'%s', '%s', '%s', '%s', '%s 或 '%s' .\n" + +#, c-format +msgid "%s: Wrong number of output argument(s).\n" +msgstr "%s: 輸出參數之數目錯誤(s).\n" + +msgid "File or Directory" +msgstr "檔案或目錄" + +msgid "Scilab completion module not installed.\n" +msgstr "未安裝 Scilab completion 模組.\n" + +#, c-format +msgid "%s: Wrong type for input arguments.\n" +msgstr "%s: 輸入參數的型態錯誤.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d: A boolean expected.\n" +msgstr "%s: 第 %d 個輸入參數的資料長度錯誤: 應該是布林值.\n" + +#, c-format +msgid "%s: Wrong size for input argument #%d.\n" +msgstr "" + +#, c-format +msgid "%s: Wrong size for input argument: A string expected.\n" +msgstr "%s:輸入參數的長度錯誤:應為一個字串。\n" + +#, c-format +msgid "%s: Wrong type for input argument #%d: A string expected.\n" +msgstr "%s: 第 %d 個輸入參數的資料型態錯誤: 應該是字串.\n" diff --git a/modules/completion/macros/buildmacros.bat b/modules/completion/macros/buildmacros.bat new file mode 100755 index 000000000..c4e35ec40 --- /dev/null +++ b/modules/completion/macros/buildmacros.bat @@ -0,0 +1 @@ +@..\..\..\bin\scilex -nwni -ns -e exec('buildmacros.sce');quit; \ No newline at end of file diff --git a/modules/completion/macros/buildmacros.sce b/modules/completion/macros/buildmacros.sce new file mode 100755 index 000000000..8f1959b2c --- /dev/null +++ b/modules/completion/macros/buildmacros.sce @@ -0,0 +1,15 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2007-2008 - INRIA - Allan Cornet +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +if (isdef("genlib") == %f) then + exec(SCI+"/modules/functions/scripts/buildmacros/loadgenlib.sce"); +end +//------------------------------------ +//genlib('completionlib','SCI/modules/completion/macros',%f,%t); +//------------------------------------ diff --git a/modules/completion/macros/cleanmacros.bat b/modules/completion/macros/cleanmacros.bat new file mode 100755 index 000000000..5079dfd71 --- /dev/null +++ b/modules/completion/macros/cleanmacros.bat @@ -0,0 +1,3 @@ +@del *.bin 2>NUL +@del lib 2>NUL +@del names 2>NUL \ No newline at end of file diff --git a/modules/completion/sci_gateway/c/.deps/.dirstamp b/modules/completion/sci_gateway/c/.deps/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/sci_gateway/c/.deps/libscicompletion_la-gw_completion.Plo b/modules/completion/sci_gateway/c/.deps/libscicompletion_la-gw_completion.Plo new file mode 100755 index 000000000..20e4d2c05 --- /dev/null +++ b/modules/completion/sci_gateway/c/.deps/libscicompletion_la-gw_completion.Plo @@ -0,0 +1,275 @@ +sci_gateway/c/libscicompletion_la-gw_completion.lo: \ + sci_gateway/c/gw_completion.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h includes/gw_completion.h \ + includes/dynlib_completion.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/core/includes/callFunctionFromGateway.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +includes/gw_completion.h: + +includes/dynlib_completion.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/core/includes/callFunctionFromGateway.h: diff --git a/modules/completion/sci_gateway/c/.deps/libscicompletion_la-sci_completion.Plo b/modules/completion/sci_gateway/c/.deps/libscicompletion_la-sci_completion.Plo new file mode 100755 index 000000000..916f568b0 --- /dev/null +++ b/modules/completion/sci_gateway/c/.deps/libscicompletion_la-sci_completion.Plo @@ -0,0 +1,240 @@ +sci_gateway/c/libscicompletion_la-sci_completion.lo: \ + sci_gateway/c/sci_completion.c /usr/include/stdc-predef.h \ + includes/gw_completion.h includes/dynlib_completion.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/localization/includes/localization.h \ + ../../modules/core/includes/machine.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/x86_64-linux-gnu/bits/locale.h \ + includes/completion.h ../../modules/output_stream/includes/Scierror.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + ../../modules/output_stream/includes/do_error_number.h \ + src/c/toolsdictionary.h ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/freeArrayOfString.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h + +/usr/include/stdc-predef.h: + +includes/gw_completion.h: + +includes/dynlib_completion.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/localization/includes/localization.h: + +../../modules/core/includes/machine.h: + +/usr/include/libintl.h: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +includes/completion.h: + +../../modules/output_stream/includes/Scierror.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +../../modules/output_stream/includes/do_error_number.h: + +src/c/toolsdictionary.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/freeArrayOfString.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: diff --git a/modules/completion/sci_gateway/c/.dirstamp b/modules/completion/sci_gateway/c/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/sci_gateway/c/.libs/libscicompletion_la-gw_completion.o b/modules/completion/sci_gateway/c/.libs/libscicompletion_la-gw_completion.o new file mode 100755 index 000000000..b29af2948 Binary files /dev/null and b/modules/completion/sci_gateway/c/.libs/libscicompletion_la-gw_completion.o differ diff --git a/modules/completion/sci_gateway/c/.libs/libscicompletion_la-sci_completion.o b/modules/completion/sci_gateway/c/.libs/libscicompletion_la-sci_completion.o new file mode 100755 index 000000000..c097bc448 Binary files /dev/null and b/modules/completion/sci_gateway/c/.libs/libscicompletion_la-sci_completion.o differ diff --git a/modules/completion/sci_gateway/c/gw_completion.c b/modules/completion/sci_gateway/c/gw_completion.c new file mode 100755 index 000000000..7eb9a9d1a --- /dev/null +++ b/modules/completion/sci_gateway/c/gw_completion.c @@ -0,0 +1,36 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include "gw_completion.h" +#include "api_scilab.h" +#include "MALLOC.h" +#include "callFunctionFromGateway.h" +/*--------------------------------------------------------------------------*/ +static gw_generic_table Tab[] = +{ + {sci_completion, "completion"} +}; +/*--------------------------------------------------------------------------*/ +int gw_completion(void) +{ + Rhs = Max(0, Rhs); + + if (pvApiCtx == NULL) + { + pvApiCtx = (StrCtx*)MALLOC(sizeof(StrCtx)); + } + + pvApiCtx->pstName = (char*)Tab[Fin - 1].name; + callFunctionFromGateway(Tab, SIZE_CURRENT_GENERIC_TABLE(Tab)); + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/sci_gateway/c/libscicompletion_la-gw_completion.lo b/modules/completion/sci_gateway/c/libscicompletion_la-gw_completion.lo new file mode 100755 index 000000000..d4f865ac1 --- /dev/null +++ b/modules/completion/sci_gateway/c/libscicompletion_la-gw_completion.lo @@ -0,0 +1,12 @@ +# sci_gateway/c/libscicompletion_la-gw_completion.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_la-gw_completion.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/sci_gateway/c/libscicompletion_la-sci_completion.lo b/modules/completion/sci_gateway/c/libscicompletion_la-sci_completion.lo new file mode 100755 index 000000000..38a6fbd94 --- /dev/null +++ b/modules/completion/sci_gateway/c/libscicompletion_la-sci_completion.lo @@ -0,0 +1,12 @@ +# sci_gateway/c/libscicompletion_la-sci_completion.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_la-sci_completion.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/sci_gateway/c/sci_completion.c b/modules/completion/sci_gateway/c/sci_completion.c new file mode 100755 index 000000000..c70d95220 --- /dev/null +++ b/modules/completion/sci_gateway/c/sci_completion.c @@ -0,0 +1,239 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include "gw_completion.h" +#include "MALLOC.h" +#include "stack-c.h" +#include "localization.h" +#include "completion.h" +#include "Scierror.h" +#include "toolsdictionary.h" +#include "freeArrayOfString.h" +/*--------------------------------------------------------------------------*/ +static int returnEmptyMatrix(int pos); +static int putResultOnStack(int pos, char **result, int sizeresult); +/*--------------------------------------------------------------------------*/ +int sci_completion(char *fname, unsigned long fname_len) +{ + int m1 = 0, n1 = 0; + char *partOfWord = NULL; + char ** Inputs1 = NULL; + + CheckRhs(1, 2); + CheckLhs(1, 6); + + if (GetType(1) == sci_strings) + { + GetRhsVar(1, MATRIX_OF_STRING_DATATYPE, &m1, &n1, &Inputs1); + if ( (m1 == n1) && (n1 == 1) ) + { + partOfWord = Inputs1[0]; + } + else + { + freeArrayOfString(Inputs1, m1 * n1); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1); + return 0; + } + } + else + { + Scierror(999, _("%s: Wrong type for input argument #%d: String expected.\n"), fname, 1); + return 0; + } + + if (Lhs == 1) + { + if (Rhs == 1) + { + char **Results = NULL; + int sizeResults = 0; + + Results = completion(partOfWord, &sizeResults); + putResultOnStack(1, Results, sizeResults); + freePointerDictionary(Results, sizeResults); + PutLhsVar(); + } + else /* Rhs == 2 */ + { + if (GetType(2) == sci_strings) + { + char **Inputs2 = NULL; + char *param2 = NULL; + char **Results = NULL; + int sizeResults = 0, m2 = 0, n2 = 0; + + GetRhsVar(2, MATRIX_OF_STRING_DATATYPE, &m2, &n2, &Inputs2); + if ( (m2 == n2) && (n2 == 1) ) + { + param2 = Inputs2[0]; + } + else + { + freeArrayOfString(Inputs1, m1 * n1); + freeArrayOfString(Inputs2, m2 * n2); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1); + return 0; + } + + if ( strcmp(param2, "functions") == 0 ) + { + Results = completionOnFunctions(partOfWord, &sizeResults); + } + else if ( strcmp(param2, "commands") == 0 ) + { + Results = completionOnCommandWords(partOfWord, &sizeResults); + } + else if ( strcmp(param2, "variables") == 0 ) + { + Results = completionOnVariablesWithoutMacros(partOfWord, &sizeResults); + } + else if ( strcmp(param2, "macros") == 0 ) + { + Results = completionOnMacros(partOfWord, &sizeResults); + } + else if ( strcmp(param2, "graphic_properties") == 0 ) + { + Results = completionOnHandleGraphicsProperties(partOfWord, &sizeResults); + } + else if ( strcmp(param2, "files") == 0 ) + { + Results = completionOnFiles(partOfWord, &sizeResults); + } + else + { + freeArrayOfString(Inputs1, m1 * n1); + freeArrayOfString(Inputs2, m2 * n2); + Scierror(999, _("%s: Wrong value for input argument: '%s', '%s', '%s', '%s', '%s' or '%s' expected.\n"), fname, "functions", "commands", "variables", "macros", "graphic_properties", "files"); + return 0; + } + putResultOnStack(1, Results, sizeResults); + freePointerDictionary(Results, sizeResults); + freeArrayOfString(Inputs1, m1 * n1); + Inputs1 = NULL; + + freeArrayOfString(Inputs2, m2 * n2); + Inputs2 = NULL; + PutLhsVar(); + + } + else + { + freeArrayOfString(Inputs1, m1 * n1); + Scierror(999, _("%s: Wrong type for input argument #%d: String expected.\n"), fname, 2); + return 0; + } + } + } + else + { + char **FunctionsList = NULL; + int sizeFunctionsList = 0; + + if (Rhs == 2) + { + freeArrayOfString(Inputs1, m1 * n1); + Scierror(999, _("%s: Wrong number of output argument(s).\n"), fname); + return 0; + } + + FunctionsList = completionOnFunctions(partOfWord, &sizeFunctionsList); + putResultOnStack(1, FunctionsList, sizeFunctionsList); + freePointerDictionary(FunctionsList, sizeFunctionsList); + + if (Lhs > 1) + { + char **CommandsList = NULL; + int sizeCommandsList = 0; + + CommandsList = completionOnCommandWords(partOfWord, &sizeCommandsList); + putResultOnStack(2, CommandsList, sizeCommandsList); + + freePointerDictionary(CommandsList, sizeCommandsList); + } + + if (Lhs > 2) + { + char **VariablesList = NULL; + int sizeVariablesList = 0; + + VariablesList = completionOnVariablesWithoutMacros(partOfWord, &sizeVariablesList); + putResultOnStack(3, VariablesList, sizeVariablesList); + + freePointerDictionary(VariablesList, sizeVariablesList); + } + + if (Lhs > 3) + { + char **MacrosList = NULL; + int sizeMacrosList = 0; + + MacrosList = completionOnMacros(partOfWord, &sizeMacrosList); + putResultOnStack(4, MacrosList, sizeMacrosList); + + freePointerDictionary(MacrosList, sizeMacrosList); + } + + if (Lhs > 4) + { + char **HandleGraphicsPropertiesList = NULL; + int sizeHandleGraphicsPropertiesList = 0; + + HandleGraphicsPropertiesList = completionOnHandleGraphicsProperties(partOfWord, &sizeHandleGraphicsPropertiesList); + putResultOnStack(5, HandleGraphicsPropertiesList, sizeHandleGraphicsPropertiesList); + + freePointerDictionary(HandleGraphicsPropertiesList, sizeHandleGraphicsPropertiesList); + } + + if (Lhs > 5) + { + char **PathsList = NULL; + int sizePathsList = 0; + + PathsList = completionOnFiles(partOfWord, &sizePathsList); + putResultOnStack(6, PathsList, sizePathsList); + + freePointerDictionary(PathsList, sizePathsList); + } + + PutLhsVar(); + } + if (Inputs1) + { + freeArrayOfString(Inputs1, m1 * n1); + } + return 0; +} +/*--------------------------------------------------------------------------*/ +static int returnEmptyMatrix(int pos) +{ + int l1 = 0, m1 = 0, n1 = 0; + CreateVarFromPtr(Rhs + pos, MATRIX_OF_DOUBLE_DATATYPE, &n1, &m1, &l1); + return 0; +} +/*--------------------------------------------------------------------------*/ +static int putResultOnStack(int pos, char **result, int sizeresult) +{ + if (result) + { + int m1 = 0, n1 = 0; + m1 = sizeresult; + n1 = 1; + CreateVarFromPtr(Rhs + pos, MATRIX_OF_STRING_DATATYPE, &m1, &n1, result); + } + else + { + returnEmptyMatrix(pos); + } + LhsVar(pos) = Rhs + pos; + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/sci_gateway/completion_gateway.xml b/modules/completion/sci_gateway/completion_gateway.xml new file mode 100755 index 000000000..9cb91728d --- /dev/null +++ b/modules/completion/sci_gateway/completion_gateway.xml @@ -0,0 +1,33 @@ + + + + + + + + + diff --git a/modules/completion/src/c/.deps/.dirstamp b/modules/completion/src/c/.deps/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine.Plo new file mode 100755 index 000000000..66863187c --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine.Plo @@ -0,0 +1,144 @@ +src/c/libscicompletion_algo_la-completeLine.lo: src/c/completeLine.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/ctype.h \ + includes/completeLine.h includes/dynlib_completion.h \ + ../../modules/core/includes/BOOL.h ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h includes/getPartLine.h \ + ../../modules/fileio/includes/splitpath.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/fileio/includes/dynlib_fileio.h \ + ../../modules/core/includes/PATH_MAX.h \ + ../../modules/string/includes/stricmp.h \ + ../../modules/string/includes/stristr.h \ + ../../modules/string/includes/dynlib_string.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/ctype.h: + +includes/completeLine.h: + +includes/dynlib_completion.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +includes/getPartLine.h: + +../../modules/fileio/includes/splitpath.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/fileio/includes/dynlib_fileio.h: + +../../modules/core/includes/PATH_MAX.h: + +../../modules/string/includes/stricmp.h: + +../../modules/string/includes/stristr.h: + +../../modules/string/includes/dynlib_string.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine_wrap_java.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine_wrap_java.Plo new file mode 100755 index 000000000..215fc3268 --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-completeLine_wrap_java.Plo @@ -0,0 +1,101 @@ +src/c/libscicompletion_algo_la-completeLine_wrap_java.lo: \ + src/c/completeLine_wrap_java.c /usr/include/stdc-predef.h \ + src/c/completeLine_wrap_java.h ../../modules/core/includes/BOOL.h \ + includes/completeLine.h includes/dynlib_completion.h \ + includes/getPartLine.h ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h + +/usr/include/stdc-predef.h: + +src/c/completeLine_wrap_java.h: + +../../modules/core/includes/BOOL.h: + +includes/completeLine.h: + +includes/dynlib_completion.h: + +includes/getPartLine.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-completion.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion.Plo new file mode 100755 index 000000000..59b83b95e --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion.Plo @@ -0,0 +1,143 @@ +src/c/libscicompletion_algo_la-completion.lo: src/c/completion.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h includes/completion.h \ + includes/dynlib_completion.h ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/core/includes/getvariablesname.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/commandwords.h \ + ../../modules/core/includes/getfunctionslist.h \ + includes/getmacrosdictionary.h src/c/completion_generic.h \ + src/c/getfilesdictionary.h ../../modules/core/includes/BOOL.h \ + includes/getfieldsdictionary.h \ + ../../modules/graphics/includes/getDictionarySetProperties.h \ + ../../modules/graphics/includes/dynlib_graphics.h \ + ../../modules/graphics/includes/getDictionaryGetProperties.h \ + src/c/toolsdictionary.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +includes/completion.h: + +includes/dynlib_completion.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/core/includes/getvariablesname.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/commandwords.h: + +../../modules/core/includes/getfunctionslist.h: + +includes/getmacrosdictionary.h: + +src/c/completion_generic.h: + +src/c/getfilesdictionary.h: + +../../modules/core/includes/BOOL.h: + +includes/getfieldsdictionary.h: + +../../modules/graphics/includes/getDictionarySetProperties.h: + +../../modules/graphics/includes/dynlib_graphics.h: + +../../modules/graphics/includes/getDictionaryGetProperties.h: + +src/c/toolsdictionary.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_generic.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_generic.Plo new file mode 100755 index 000000000..a0153059e --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_generic.Plo @@ -0,0 +1,108 @@ +src/c/libscicompletion_algo_la-completion_generic.lo: \ + src/c/completion_generic.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h src/c/completion_generic.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/string/includes/stricmp.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +src/c/completion_generic.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/string/includes/stricmp.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_wrap_java.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_wrap_java.Plo new file mode 100755 index 000000000..8c42ca532 --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-completion_wrap_java.Plo @@ -0,0 +1,105 @@ +src/c/libscicompletion_algo_la-completion_wrap_java.lo: \ + src/c/completion_wrap_java.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + src/c/completion_wrap_java.h includes/completion.h \ + includes/dynlib_completion.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +src/c/completion_wrap_java.h: + +includes/completion.h: + +includes/dynlib_completion.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-getCommonPart.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-getCommonPart.Plo new file mode 100755 index 000000000..522201f09 --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-getCommonPart.Plo @@ -0,0 +1,161 @@ +src/c/libscicompletion_algo_la-getCommonPart.lo: src/c/getCommonPart.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h includes/getCommonPart.h \ + includes/dynlib_completion.h ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +includes/getCommonPart.h: + +includes/dynlib_completion.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-getPartLine.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-getPartLine.Plo new file mode 100755 index 000000000..69f0ca8cd --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-getPartLine.Plo @@ -0,0 +1,161 @@ +src/c/libscicompletion_algo_la-getPartLine.lo: src/c/getPartLine.c \ + /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h includes/getPartLine.h \ + includes/dynlib_completion.h ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +includes/getPartLine.h: + +includes/dynlib_completion.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-getfieldsdictionary.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-getfieldsdictionary.Plo new file mode 100755 index 000000000..ae89d197c --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-getfieldsdictionary.Plo @@ -0,0 +1,296 @@ +src/c/libscicompletion_algo_la-getfieldsdictionary.lo: \ + src/c/getfieldsdictionary.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/output_stream/includes/Scierror.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + ../../modules/output_stream/includes/do_error_number.h \ + ../../modules/core/includes/machine.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/values.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/float.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + includes/getfieldsdictionary.h includes/getPartLine.h \ + includes/dynlib_completion.h includes/completion.h \ + ../../modules/core/includes/freeArrayOfString.h includes/getfields.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/output_stream/includes/Scierror.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +../../modules/output_stream/includes/do_error_number.h: + +../../modules/core/includes/machine.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/values.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/float.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +includes/getfieldsdictionary.h: + +includes/getPartLine.h: + +includes/dynlib_completion.h: + +includes/completion.h: + +../../modules/core/includes/freeArrayOfString.h: + +includes/getfields.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-getfilesdictionary.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-getfilesdictionary.Plo new file mode 100755 index 000000000..80e862b9d --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-getfilesdictionary.Plo @@ -0,0 +1,159 @@ +src/c/libscicompletion_algo_la-getfilesdictionary.lo: \ + src/c/getfilesdictionary.c /usr/include/stdc-predef.h \ + /usr/include/string.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/stdio.h \ + /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h src/c/getfilesdictionary.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/PATH_MAX.h \ + ../../modules/fileio/includes/scicurdir.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/fileio/includes/dynlib_fileio.h \ + ../../modules/fileio/includes/findfiles.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/fileio/includes/expandPathVariable.h \ + ../../modules/core/includes/machine.h \ + ../../modules/fileio/includes/isdir.h + +/usr/include/stdc-predef.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/stdio.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +src/c/getfilesdictionary.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/PATH_MAX.h: + +../../modules/fileio/includes/scicurdir.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/fileio/includes/dynlib_fileio.h: + +../../modules/fileio/includes/findfiles.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/fileio/includes/expandPathVariable.h: + +../../modules/core/includes/machine.h: + +../../modules/fileio/includes/isdir.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-getmacrosdictionary.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-getmacrosdictionary.Plo new file mode 100755 index 000000000..4b90a8321 --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-getmacrosdictionary.Plo @@ -0,0 +1,93 @@ +src/c/libscicompletion_algo_la-getmacrosdictionary.lo: \ + src/c/getmacrosdictionary.c /usr/include/stdc-predef.h \ + /usr/include/stdlib.h /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + includes/getmacrosdictionary.h \ + ../../modules/functions/includes/getmacroslist.h \ + ../../modules/functions/includes/dynlib_functions.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +includes/getmacrosdictionary.h: + +../../modules/functions/includes/getmacroslist.h: + +../../modules/functions/includes/dynlib_functions.h: diff --git a/modules/completion/src/c/.deps/libscicompletion_algo_la-toolsdictionary.Plo b/modules/completion/src/c/.deps/libscicompletion_algo_la-toolsdictionary.Plo new file mode 100755 index 000000000..b0252ef96 --- /dev/null +++ b/modules/completion/src/c/.deps/libscicompletion_algo_la-toolsdictionary.Plo @@ -0,0 +1,106 @@ +src/c/libscicompletion_algo_la-toolsdictionary.lo: \ + src/c/toolsdictionary.c /usr/include/stdc-predef.h /usr/include/stdlib.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h src/c/toolsdictionary.h \ + ../../modules/core/includes/BOOL.h ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h + +/usr/include/stdc-predef.h: + +/usr/include/stdlib.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +src/c/toolsdictionary.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: diff --git a/modules/completion/src/c/.dirstamp b/modules/completion/src/c/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine.o new file mode 100755 index 000000000..75252ebc3 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine_wrap_java.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine_wrap_java.o new file mode 100755 index 000000000..467f84706 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-completeLine_wrap_java.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-completion.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion.o new file mode 100755 index 000000000..70edf7aa2 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_generic.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_generic.o new file mode 100755 index 000000000..803e6dfba Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_generic.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_wrap_java.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_wrap_java.o new file mode 100755 index 000000000..e18350bf3 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-completion_wrap_java.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-getCommonPart.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-getCommonPart.o new file mode 100755 index 000000000..cdb68b094 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-getCommonPart.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-getPartLine.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-getPartLine.o new file mode 100755 index 000000000..03d47fa78 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-getPartLine.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-getfieldsdictionary.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-getfieldsdictionary.o new file mode 100755 index 000000000..f36bbc627 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-getfieldsdictionary.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-getfilesdictionary.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-getfilesdictionary.o new file mode 100755 index 000000000..1aeff79d1 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-getfilesdictionary.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-getmacrosdictionary.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-getmacrosdictionary.o new file mode 100755 index 000000000..b306e75e1 Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-getmacrosdictionary.o differ diff --git a/modules/completion/src/c/.libs/libscicompletion_algo_la-toolsdictionary.o b/modules/completion/src/c/.libs/libscicompletion_algo_la-toolsdictionary.o new file mode 100755 index 000000000..90be581fe Binary files /dev/null and b/modules/completion/src/c/.libs/libscicompletion_algo_la-toolsdictionary.o differ diff --git a/modules/completion/src/c/DllmainCompletion.c b/modules/completion/src/c/DllmainCompletion.c new file mode 100755 index 000000000..f53a4a2e3 --- /dev/null +++ b/modules/completion/src/c/DllmainCompletion.c @@ -0,0 +1,32 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +/*--------------------------------------------------------------------------*/ +#pragma comment(lib,"../../../../bin/libintl.lib") +/*--------------------------------------------------------------------------*/ +int WINAPI DllMain (HINSTANCE hInstance , DWORD reason, PVOID pvReserved) +{ + switch (reason) + { + case DLL_PROCESS_ATTACH: + break; + case DLL_PROCESS_DETACH: + break; + case DLL_THREAD_ATTACH: + break; + case DLL_THREAD_DETACH: + break; + } + return 1; +} +/*--------------------------------------------------------------------------*/ + diff --git a/modules/completion/src/c/Scilab_windows_Import.def b/modules/completion/src/c/Scilab_windows_Import.def new file mode 100755 index 000000000..5f75793aa --- /dev/null +++ b/modules/completion/src/c/Scilab_windows_Import.def @@ -0,0 +1,5 @@ + LIBRARY scilab_windows.dll + + +EXPORTS +strdup_windows \ No newline at end of file diff --git a/modules/completion/src/c/completeLine.c b/modules/completion/src/c/completeLine.c new file mode 100755 index 000000000..711b5685e --- /dev/null +++ b/modules/completion/src/c/completeLine.c @@ -0,0 +1,284 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2009-2010 - DIGITEO - Allan CORNET +* Copyright (C) 2010 - DIGITEO - Vincent LEJEUNE +* Copyright (C) 2011 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#include +#include +#include "completeLine.h" +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +#include "getPartLine.h" +#include "splitpath.h" +#include "PATH_MAX.h" +#include "stricmp.h" +#include "stristr.h" + +/*--------------------------------------------------------------------------*/ +/*! Get the position of the longest suffix of string that match with a prefix of find +* @param[in] string A string that has a suffix that match a prefix of find ; Assumed to be non null because of the first guard in completeLine +* @param[in] find A string that has a prefix that match with a suffix of string +* @return Position in string where suffix of string and prefix of find does match +* +*/ +static int findMatchingPrefixSuffix(const char* string, const char* find, BOOL stringToAddIsPath) +{ + char* pointerOnString = NULL; + char* pointerOnFindCopy = NULL; + char* movingPointerOnFindCopy = NULL; + char lastchar; + size_t stringLength = 0; + + //get a working copy of find + pointerOnFindCopy = strdup(find); + + //last character of string + lastchar = *(string + strlen(string) - 1); + stringLength = strlen(string); + + // Convert to upper-case + { + char* str; + for (str = pointerOnFindCopy; *str != '\0'; str++) + { + *str = toupper(*str); + } + } + + //Tips : no infinite loop there, tmpfind string length is always reduced at each iteration + + movingPointerOnFindCopy = strrchr(pointerOnFindCopy, toupper(lastchar)); + + while ( movingPointerOnFindCopy ) + { + //find the last occurence of last char of string in tmpfind + movingPointerOnFindCopy = strrchr(pointerOnFindCopy, toupper(lastchar)); + if (movingPointerOnFindCopy == NULL) + { + break; + } + // Cut tmpfind at this position + movingPointerOnFindCopy[0] = '\0'; + //Check if the cutted tmpfind match with the suffix of string that has adequat length + pointerOnString = (char*)(string + stringLength - 1 - strlen(pointerOnFindCopy)); + if ( !strnicmp(pointerOnFindCopy, pointerOnString, strlen(pointerOnFindCopy)) ) + { + FREE(pointerOnFindCopy); + pointerOnFindCopy = NULL; + return (int)(pointerOnString - string); + } + + } + //if no return, no position is correct, return last char of string. + FREE(pointerOnFindCopy); + pointerOnFindCopy = NULL; + return (int)stringLength; +} +/*--------------------------------------------------------------------------*/ +char *completeLine(char *currentline, char *stringToAdd, char *filePattern, + char *defaultPattern, BOOL stringToAddIsPath, char *postCaretLine) +{ + char *new_line = NULL; + int lengthNewLine = 0; + + char *stringToAddAtTheEnd = NULL; + int lenstringToAddAtTheEnd = 0; + + char *res = NULL; + + int lencurrentline = 0; + + int iposInsert = 0; + + if (currentline == NULL) + { + return strdup(""); + } + lencurrentline = (int)strlen(currentline); + + if (postCaretLine == NULL) + { + stringToAddAtTheEnd = strdup(""); + lenstringToAddAtTheEnd = (int)strlen(stringToAddAtTheEnd); + } + else + { + stringToAddAtTheEnd = strdup(postCaretLine); + lenstringToAddAtTheEnd = (int)strlen(stringToAddAtTheEnd); + } + + if ( (stringToAdd == NULL) || (strcmp(stringToAdd, "") == 0) ) + { + lengthNewLine = lencurrentline + lenstringToAddAtTheEnd; + new_line = (char*)MALLOC(sizeof(char) * (lengthNewLine + 1)); + if (new_line) + { + strcpy(new_line, currentline); + strcat(new_line, stringToAddAtTheEnd); + } + + if (stringToAddAtTheEnd) + { + FREE(stringToAddAtTheEnd); + stringToAddAtTheEnd = NULL; + } + + return new_line; + } + + if (stringToAddIsPath == FALSE) + { + char *filePatternBuf = NULL; + BOOL bfilePatternBuf = FALSE; + + if (filePattern != NULL) + { + filePatternBuf = filePattern; + } + else + { + filePatternBuf = getFilePartLevel(currentline); + bfilePatternBuf = TRUE; + } + + if (filePatternBuf) + { + char* drv = (char*)MALLOC(sizeof(char) * (PATH_MAX + 1)); + char* dir = (char*)MALLOC(sizeof(char) * (PATH_MAX + 1)); + char* name = (char*)MALLOC(sizeof(char) * (PATH_MAX + 1)); + char* ext = (char*)MALLOC(sizeof(char) * (PATH_MAX + 1)); + + splitpath(filePatternBuf, TRUE, drv, dir, name, ext); + + if (bfilePatternBuf) + { + FREE(filePatternBuf); + filePatternBuf = NULL; + } + + if ( strcmp(drv, "") || strcmp(dir, "") ) + { + /* bug 4365 */ + /*cd SCI/modules/arnoldi/nonreg_tes */ + + if (drv) + { + FREE(drv); + drv = NULL; + } + if (dir) + { + FREE(dir); + dir = NULL; + } + if (name) + { + FREE(name); + name = NULL; + } + if (ext) + { + FREE(ext); + ext = NULL; + } + + lengthNewLine = lencurrentline + lenstringToAddAtTheEnd; + new_line = (char*)MALLOC(sizeof(char) * (lengthNewLine + 1)); + if (new_line) + { + strcpy(new_line, currentline); + strcat(new_line, stringToAddAtTheEnd); + } + + if (stringToAddAtTheEnd) + { + FREE(stringToAddAtTheEnd); + stringToAddAtTheEnd = NULL; + } + + return new_line; + } + + if (drv) + { + FREE(drv); + drv = NULL; + } + if (dir) + { + FREE(dir); + dir = NULL; + } + if (name) + { + FREE(name); + name = NULL; + } + if (ext) + { + FREE(ext); + ext = NULL; + } + } + } + + // Does the end of line (currentLine) matches the beginning of completed word (stringToAdd) ? + iposInsert = findMatchingPrefixSuffix(currentline, stringToAdd, stringToAddIsPath); + res = stristr(stringToAdd, ¤tline[iposInsert]); + + if (res == NULL) + { + // No, find the last occurence of completed word word in line + char* foundCompletedWordPtr = NULL; + char* nextFoundCompletedWordPtr = stristr(currentline, stringToAdd); + while (nextFoundCompletedWordPtr) + { + foundCompletedWordPtr = nextFoundCompletedWordPtr; + nextFoundCompletedWordPtr = + stristr(foundCompletedWordPtr + strlen(foundCompletedWordPtr), stringToAdd); + } + + if (foundCompletedWordPtr) + { + iposInsert = (int) (foundCompletedWordPtr - currentline); + } + } + + // if it is a path, we add at the end + if ((currentline[lencurrentline - 1] == '/') || (currentline[lencurrentline - 1] == '\\')) + { + iposInsert = lencurrentline; + } + + lengthNewLine = (int)(strlen(currentline) + strlen(stringToAdd) + lenstringToAddAtTheEnd); + new_line = (char*)MALLOC(sizeof(char) * (lengthNewLine + 1)); + if (new_line) + { + strcpy(new_line, currentline); + new_line[iposInsert] = 0; + + strcat(new_line, stringToAdd); + strcat(new_line, stringToAddAtTheEnd); + } + + if (stringToAddAtTheEnd) + { + FREE(stringToAddAtTheEnd); + stringToAddAtTheEnd = NULL; + } + + return new_line; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completeLine_wrap_java.c b/modules/completion/src/c/completeLine_wrap_java.c new file mode 100755 index 000000000..87c2b357e --- /dev/null +++ b/modules/completion/src/c/completeLine_wrap_java.c @@ -0,0 +1,39 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2009 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#include "completeLine_wrap_java.h" +#include "completeLine.h" +#include "getPartLine.h" +#include "MALLOC.h" +/*--------------------------------------------------------------------------*/ +char *completelineforjava(char *currentLine, char *stringToAdd, BOOL isFile, char *postCaretLine) +{ + char *assembledLine = NULL; + char *patternFile = getFilePartLevel(currentLine); + char *patternLine = getPartLevel(currentLine); + + assembledLine = completeLine(currentLine, stringToAdd, patternFile, patternLine, isFile, postCaretLine); + if (patternFile) + { + FREE(patternFile); + patternFile = NULL; + } + if (patternLine) + { + FREE(patternLine); + patternLine = NULL; + } + + return assembledLine; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completeLine_wrap_java.h b/modules/completion/src/c/completeLine_wrap_java.h new file mode 100755 index 000000000..2a84339d2 --- /dev/null +++ b/modules/completion/src/c/completeLine_wrap_java.h @@ -0,0 +1,22 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2009 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#ifndef __COMPLETELINE_WRAP_H__ +#define __COMPLETELINE_WRAP_H__ + +#include "BOOL.h" + +char *completelineforjava(char *currentLine, char *stringToAdd, BOOL isFile, char *postCaretLine); + +#endif /* __COMPLETELINE_WRAP_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completion.c b/modules/completion/src/c/completion.c new file mode 100755 index 000000000..dc04963f8 --- /dev/null +++ b/modules/completion/src/c/completion.c @@ -0,0 +1,401 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include +#include "completion.h" +#include "MALLOC.h" +#include "getvariablesname.h" +#include "commandwords.h" +#include "getfunctionslist.h" +#include "getmacrosdictionary.h" +#include "completion_generic.h" +#include "getfilesdictionary.h" +#include "getfieldsdictionary.h" +#include "getDictionarySetProperties.h" +#include "getDictionaryGetProperties.h" +#include "toolsdictionary.h" +#if _MSC_VER +#include "strdup_windows.h" +#endif +/*--------------------------------------------------------------------------*/ +char **completionOnDictionary(char **dictionary, int sizedictionary, char *somechars, int *sizearrayreturned); +/*--------------------------------------------------------------------------*/ +char **completion(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + + char **dictionary = NULL; + int sizedictionary = 0; + + int sizecompletionfunctions = 0; + char **completionfunctions = completionOnFunctions(somechars, &sizecompletionfunctions); + + int sizecompletioncommandwords = 0; + char **completioncommandwords = completionOnCommandWords(somechars, &sizecompletioncommandwords); + + int sizecompletionmacros = 0; + char **completionmacros = completionOnMacros(somechars, &sizecompletionmacros); + + int sizecompletionvariables = 0; + char **completionvariables = completionOnVariables(somechars, &sizecompletionvariables); + + int sizecompletionhandlegraphicsproperties = 0; + char **completionhandlegraphicsproperties = completionOnHandleGraphicsProperties(somechars, &sizecompletionhandlegraphicsproperties); + + int sizecompletionfiles = 0; + char **completionfiles = completionOnFiles(somechars, &sizecompletionfiles); + + *sizeArrayReturned = 0; + + sizedictionary = sizecompletionfunctions + sizecompletioncommandwords + sizecompletionmacros + + sizecompletionvariables + sizecompletionhandlegraphicsproperties + sizecompletionfiles; + + + if ( (completionfiles) && (sizedictionary == sizecompletionfiles) ) + { + ListWords = completionfiles; + *sizeArrayReturned = sizecompletionfiles; + } + else + { + if (sizedictionary > 0) + { + dictionary = (char**)MALLOC(sizeof(char*) * sizedictionary); + } + + if (dictionary) + { + int i = 0; + appendDictionary(&dictionary, &i, &completionfunctions, &sizecompletionfunctions); + appendDictionary(&dictionary, &i, &completioncommandwords, &sizecompletioncommandwords); + appendDictionary(&dictionary, &i, &completionmacros, &sizecompletionmacros); + appendDictionary(&dictionary, &i, &completionvariables, &sizecompletionvariables); + appendDictionary(&dictionary, &i, &completionhandlegraphicsproperties, &sizecompletionhandlegraphicsproperties); + appendDictionary(&dictionary, &i, &completionfiles, &sizecompletionfiles); + + dictionary = SortDictionary(dictionary, i); + dictionary = RemoveDuplicateDictionary(dictionary, &i); + + sizedictionary = i; + } + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + } + + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnFunctions(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + dictionary = GetFunctionsList(&sizedictionary); + + if (dictionary) + { + dictionary = SortDictionary(dictionary, sizedictionary); + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnCommandWords(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + dictionary = getcommandkeywords(&sizedictionary); + + if (dictionary) + { + dictionary = SortDictionary(dictionary, sizedictionary); + dictionary = RemoveDuplicateDictionary(dictionary, &sizedictionary); + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnMacros(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + dictionary = getmacrosdictionary(&sizedictionary); + + if (dictionary) + { + dictionary = SortDictionary(dictionary, sizedictionary); + dictionary = RemoveDuplicateDictionary(dictionary, &sizedictionary); + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnVariables(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + dictionary = getVariablesName(&sizedictionary, TRUE); + + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnVariablesWithoutMacros(char *somechars, int *sizeArrayReturned) +{ + int i = 0; + int j = 0; + int nbWordsAlreadyInMacros = 0; + + char **ListWords = NULL; + int sizeListWords = 0; + + char **dictionaryVariables = NULL; + int sizedictionaryVariables = 0; + + dictionaryVariables = completionOnVariables(somechars, &sizedictionaryVariables); + + if (sizedictionaryVariables) + { + char **dictionaryMacros = NULL; + int sizedictionaryMacros = 0; + + dictionaryMacros = getmacrosdictionary(&sizedictionaryMacros); + dictionaryMacros = SortDictionary(dictionaryMacros, sizedictionaryMacros); + + /* Search if we have more than one definition */ + for ( i = 0; i < sizedictionaryVariables; i++) + { + for ( j = 0; j < sizedictionaryMacros; j++) + { + if ( strcmp(dictionaryVariables[i], dictionaryMacros[j]) == 0 ) + { + nbWordsAlreadyInMacros++; + } + } + } + + if (nbWordsAlreadyInMacros) + { + sizeListWords = sizedictionaryVariables - nbWordsAlreadyInMacros; + if (sizeListWords > 0) + { + char **ListWordsTmp = (char**)MALLOC(sizeof(char*) * sizedictionaryVariables); + if (ListWordsTmp) + { + int k = 0; + + /* do a copy of dictionary of Variables */ + for ( i = 0; i < sizedictionaryVariables; i++) + { + ListWordsTmp[i] = strdup(dictionaryVariables[i]); + } + + for ( i = 0; i < sizedictionaryVariables; i++) + { + for ( j = 0; j < sizedictionaryMacros; j++) + { + if ( strcmp(dictionaryVariables[i], dictionaryMacros[j]) == 0 ) + { + FREE(ListWordsTmp[i]); + ListWordsTmp[i] = NULL; + } + } + } + + ListWords = (char**)MALLOC(sizeof(char*) * (sizeListWords + 1)); + if (ListWords) + { + for ( i = 0; i < sizedictionaryVariables; i++) + { + if (ListWordsTmp[i]) + { + ListWords[k] = strdup(ListWordsTmp[i]); + if (k <= sizeListWords) + { + k++; + } + } + } + /* Add a NULL element at the end (to get number of items from JNI) */ + ListWords[sizeListWords] = NULL; + + *sizeArrayReturned = sizeListWords; + } + else + { + ListWords = NULL; + *sizeArrayReturned = 0; + } + } + else + { + ListWords = NULL; + *sizeArrayReturned = 0; + } + } + else + { + ListWords = NULL; + *sizeArrayReturned = 0; + } + } + else + { + ListWords = dictionaryVariables; + *sizeArrayReturned = sizedictionaryVariables; + } + + freePointerDictionary(dictionaryMacros, sizedictionaryMacros); + } + else + { + ListWords = NULL; + *sizeArrayReturned = 0; + } + + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnFiles(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + dictionary = getfilesdictionary(somechars, &sizedictionary, FALSE); + + if (dictionary) + { + ListWords = dictionary; + *sizeArrayReturned = sizedictionary; + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnFields(char *lineBeforeCaret, char *pattern, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + if (lineBeforeCaret && pattern) + { + dictionary = getfieldsdictionary(lineBeforeCaret, pattern, &sizedictionary); + } + + if (dictionary) + { + ListWords = dictionary; + *sizeArrayReturned = sizedictionary; + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnHandleGraphicsProperties(char *somechars, int *sizeArrayReturned) +{ + char **ListWords = NULL; + char **dictionary = NULL; + int sizedictionary = 0; + + int sizeHandleGraphicsGetPropertiesDictionary = 0; + char **HandleGraphicsGetPropertiesDictionary = getDictionaryGetProperties(&sizeHandleGraphicsGetPropertiesDictionary); + + int sizeHandleGraphicsSetPropertiesDictionary = 0; + char **HandleGraphicsSetPropertiesDictionary = getDictionarySetProperties(&sizeHandleGraphicsSetPropertiesDictionary); + + *sizeArrayReturned = 0; + + sizedictionary = sizeHandleGraphicsGetPropertiesDictionary + sizeHandleGraphicsSetPropertiesDictionary; + + if (sizedictionary > 0) + { + dictionary = (char**)MALLOC(sizeof(char*) * sizedictionary); + + if (dictionary) + { + int i = 0; + + appendDictionary(&dictionary, &i, &HandleGraphicsGetPropertiesDictionary, &sizeHandleGraphicsGetPropertiesDictionary); + appendDictionary(&dictionary, &i, &HandleGraphicsSetPropertiesDictionary, &sizeHandleGraphicsSetPropertiesDictionary); + sizedictionary = i; + } + + if (dictionary) + { + dictionary = SortDictionary(dictionary, sizedictionary); + dictionary = RemoveDuplicateDictionary(dictionary, &sizedictionary); + ListWords = completionOnDictionary(dictionary, sizedictionary, somechars, sizeArrayReturned); + freePointerDictionary(dictionary, sizedictionary); + } + else + { + *sizeArrayReturned = 0; + } + } + else + { + *sizeArrayReturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ +char **completionOnDictionary(char **dictionary, int sizedictionary, char *somechars, int *sizearrayreturned) +{ + char **ListWords = NULL; + + if (dictionary) + { + ListWords = completion_generic(dictionary, sizedictionary, somechars, sizearrayreturned); + if (ListWords == NULL) + { + *sizearrayreturned = 0; + } + } + else + { + *sizearrayreturned = 0; + } + return ListWords; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completion.rc b/modules/completion/src/c/completion.rc new file mode 100755 index 000000000..a22487df3 --- /dev/null +++ b/modules/completion/src/c/completion.rc @@ -0,0 +1,97 @@ +// Microsoft Visual C++ generated resource script. +// + + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +//#include "afxres.h" +#define APSTUDIO_HIDDEN_SYMBOLS +#include "windows.h" +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// French (France) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) +#ifdef _WIN32 +LANGUAGE LANG_FRENCH, SUBLANG_FRENCH +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 5,5,2,0 + PRODUCTVERSION 5,5,2,0 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x0L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040c04b0" + BEGIN + VALUE "FileDescription", "completion module" + VALUE "FileVersion", "5, 5, 2, 0" + VALUE "InternalName", "completion module" + VALUE "LegalCopyright", "Copyright (C) 2017" + VALUE "OriginalFilename", "completion.dll" + VALUE "ProductName", " completion" + VALUE "ProductVersion", "5, 5, 2, 0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x40c, 1200 + END +END + +#endif // French (France) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/modules/completion/src/c/completion.vcxproj b/modules/completion/src/c/completion.vcxproj new file mode 100755 index 000000000..45be7adc0 --- /dev/null +++ b/modules/completion/src/c/completion.vcxproj @@ -0,0 +1,313 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {CCCE1EAD-8E62-4DC0-AB17-972C06EF0C89} + completion + Win32Proj + + + + DynamicLibrary + MultiByte + false + v110 + + + DynamicLibrary + MultiByte + v110 + + + DynamicLibrary + MultiByte + false + v110 + + + DynamicLibrary + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + sci$(ProjectName) + sci$(ProjectName) + sci$(ProjectName) + sci$(ProjectName) + + + + Disabled + .;../../includes;../../../../libs/intl;../../../../libs/libxml2;../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../../windows_tools/includes;../../../fileio/includes;../../../graphics/includes;../../../../java/jdk/include;../../../../java/jdk/include/win32;../../../api_scilab/includes;../../../functions/includes;../../../xml/includes;../../../xml/src/cpp;../../../string/includes;../../../external_objects/includes + _CRT_SECURE_NO_DEPRECATE;FORDLL;_DEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + + + Make dependencies + lib /DEF:"$(ProjectDir)core_import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)core.lib" 1>NUL 2>NUL +lib /DEF:"$(ProjectDir)Scilab_windows_Import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)scilab_windows.lib" 1>NUL 2>NUL + + + + core.lib;scilab_windows.lib;%(AdditionalDependencies) + $(SolutionDir)bin\sci$(ProjectName).dll + true + Windows + $(SolutionDir)bin\sci$(ProjectName).lib + MachineX86 + true + false + + + + + X64 + + + Disabled + .;../../includes;../../../../libs/intl;../../../../libs/libxml2;../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../../windows_tools/includes;../../../fileio/includes;../../../graphics/includes;../../../../java/jdk/include;../../../../java/jdk/include/win32;../../../api_scilab/includes;../../../functions/includes;../../../xml/includes;../../../xml/src/cpp;../../../string/includes;../../../external_objects/includes + _CRT_SECURE_NO_DEPRECATE;FORDLL;_DEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + + + Make dependencies + lib /DEF:"$(ProjectDir)core_import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)core.lib" 1>NUL 2>NUL +lib /DEF:"$(ProjectDir)Scilab_windows_Import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)scilab_windows.lib" 1>NUL 2>NUL + + + + core.lib;scilab_windows.lib;%(AdditionalDependencies) + $(SolutionDir)bin\sci$(ProjectName).dll + true + Windows + $(SolutionDir)bin\sci$(ProjectName).lib + MachineX64 + true + false + + + + + Speed + false + .;../../includes;../../../../libs/intl;../../../../libs/libxml2;../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../../windows_tools/includes;../../../fileio/includes;../../../graphics/includes;../../../../java/jdk/include;../../../../java/jdk/include/win32;../../../api_scilab/includes;../../../functions/includes;../../../xml/includes;../../../xml/src/cpp;../../../string/includes;../../../external_objects/includes + _CRT_SECURE_NO_DEPRECATE;FORDLL;NDEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + Level3 + true + + + Make dependencies + lib /DEF:"$(ProjectDir)core_import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)core.lib" 1>NUL 2>NUL +lib /DEF:"$(ProjectDir)Scilab_windows_Import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)scilab_windows.lib" 1>NUL 2>NUL + + + + core.lib;scilab_windows.lib;%(AdditionalDependencies) + $(SolutionDir)bin\sci$(ProjectName).dll + false + Windows + true + true + $(SolutionDir)bin\sci$(ProjectName).lib + MachineX86 + true + false + + + + + X64 + + + Speed + false + .;../../includes;../../../../libs/intl;../../../../libs/libxml2;../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../../windows_tools/includes;../../../fileio/includes;../../../graphics/includes;../../../../java/jdk/include;../../../../java/jdk/include/win32;../../../api_scilab/includes;../../../functions/includes;../../../xml/includes;../../../xml/src/cpp;../../../string/includes;../../../external_objects/includes + _CRT_SECURE_NO_DEPRECATE;FORDLL;NDEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + Level3 + true + + + Make dependencies + lib /DEF:"$(ProjectDir)core_import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)core.lib" 1>NUL 2>NUL +lib /DEF:"$(ProjectDir)Scilab_windows_Import.def" /SUBSYSTEM:WINDOWS /MACHINE:$(Platform) /OUT:"$(ProjectDir)scilab_windows.lib" 1>NUL 2>NUL + + + + core.lib;scilab_windows.lib;%(AdditionalDependencies) + $(SolutionDir)bin\sci$(ProjectName).dll + false + Windows + true + true + $(SolutionDir)bin\sci$(ProjectName).lib + MachineX64 + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {3170e4c2-1173-4264-a222-7ee8ccb3ddf7} + false + + + {43c5bab1-1dca-4743-a183-77e0d42fe7d0} + false + + + {3142e52c-309a-41d9-bd12-7b7e9e3bdd44} + + + {4fc72d4a-80ee-4b1a-8724-0201c1a35621} + false + + + {53a01263-92be-4c87-aa9a-79297f882310} + false + + + {8ccdd3c2-b025-4a12-a986-1aa28d7c0c33} + false + + + {ecffeb0c-1eda-45ee-9a10-b18143852e17} + false + + + {a5911cd7-f8e8-440c-a23e-4843a0636f3a} + false + + + {8d45767a-9b03-4905-97f6-d2f3f79141ea} + + + {ef5402da-29fd-4f1b-b98b-d284d4e27c15} + + + + + + \ No newline at end of file diff --git a/modules/completion/src/c/completion.vcxproj.filters b/modules/completion/src/c/completion.vcxproj.filters new file mode 100755 index 000000000..4b588892b --- /dev/null +++ b/modules/completion/src/c/completion.vcxproj.filters @@ -0,0 +1,219 @@ + + + + + {ad687e14-f73e-44d1-b54d-e18012fe1ab7} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {81d3fcfb-fa9e-44ca-82f8-f19b3a7beefe} + h;hpp;hxx;hm;inl + + + {f75b76f3-ab8f-4d5e-ba4e-af1e56f77448} + + + {7b3cd816-630e-4cc3-a647-f52648c8ad08} + + + {9e8611a6-4cba-4ba5-8ac1-a83cceba5f58} + + + {4ad53753-5887-4dff-b846-d04e29ac60dc} + + + {0f3f4bfc-acef-4a7e-bb4a-0033b39389de} + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Swig Files + + + Libraries Dependencies\Imports + + + Libraries Dependencies\Imports + + + + + + localization + + + + + Resource Files + + + \ No newline at end of file diff --git a/modules/completion/src/c/completion_generic.c b/modules/completion/src/c/completion_generic.c new file mode 100755 index 000000000..fa990f561 --- /dev/null +++ b/modules/completion/src/c/completion_generic.c @@ -0,0 +1,54 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include "completion_generic.h" +#include "MALLOC.h" +#if _MSC_VER +#include "strdup_windows.h" +#endif +#include "stricmp.h" + +/*--------------------------------------------------------------------------*/ +char **completion_generic(char **dictionary, int sizedictionary, + char *somechars, int *sizeArrayReturned) +{ + char **results = NULL; + int nbElements = 0; + int i = 0; + + for (i = 0; i < sizedictionary; i++) + { + if (dictionary[i]) + { + if ( strnicmp(dictionary[i], somechars, strlen(somechars)) == 0) + { + nbElements++; + /* +1 in MALLOC because a NULL element is inserted at the end of the array */ + /* This NULL element is used in Java wrapper to know the size of the array */ + if (results) + { + results = (char**)REALLOC(results, sizeof(char*) * (nbElements + 1)); + } + else + { + results = (char**)MALLOC(sizeof(char*) * (nbElements + 1)); + } + + results[nbElements] = NULL; /* Last element set to NULL */ + results[nbElements - 1] = strdup(dictionary[i]); + } + } + } + *sizeArrayReturned = nbElements; + return results; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completion_generic.h b/modules/completion/src/c/completion_generic.h new file mode 100755 index 000000000..5394c30a3 --- /dev/null +++ b/modules/completion/src/c/completion_generic.h @@ -0,0 +1,27 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#ifndef __COMPLETION_GENERIC_H__ +#define __COMPLETION_GENERIC_H__ + +/** +* completion +* @param[in] dictionary +* @param[in] size of dictionary +* @param[in] some chars of a symbol +* @param[out] size of returned strings +* @return strings found in dictionary +*/ +char **completion_generic(char **dictionary, int sizedictionary, + char *somechars, int *sizeArrayReturned); + +#endif /* __COMPLETION_GENERIC_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completion_wrap_java.c b/modules/completion/src/c/completion_wrap_java.c new file mode 100755 index 000000000..b6ffaf9b5 --- /dev/null +++ b/modules/completion/src/c/completion_wrap_java.c @@ -0,0 +1,101 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include +#include "completion_wrap_java.h" +#include "completion.h" +/*--------------------------------------------------------------------------*/ +char **searchAllDictionaries(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completion(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchFunctionsDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completionOnFunctions(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchCommandsDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completionOnCommandWords(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchMacrosDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completionOnMacros(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchVariablesDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completionOnVariablesWithoutMacros(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchFilesDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + return completionOnFiles(somechars, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchFieldsDictionary(char *lineBeforeCaret, char *pattern) +{ + int nbrElements = 0; + if ( (lineBeforeCaret) && (strcmp(lineBeforeCaret, "")) ) + { + return completionOnFields(lineBeforeCaret, pattern, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ +char **searchHandleGraphicsPropertiesDictionary(char *somechars) +{ + int nbrElements = 0; + if ( (somechars) && (strcmp(somechars, "")) ) + { + char *pattern = somechars; + while (*(pattern++) == ' ') + { + ; + } + return completionOnHandleGraphicsProperties(--pattern, &nbrElements); + } + return NULL; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/completion_wrap_java.h b/modules/completion/src/c/completion_wrap_java.h new file mode 100755 index 000000000..e5837f773 --- /dev/null +++ b/modules/completion/src/c/completion_wrap_java.h @@ -0,0 +1,77 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __COMPLETION_WRAP_JAVA_H__ +#define __COMPLETION_WRAP_JAVA_H__ + +/* wrap of completion.h (for java */ +/* size of string array removed */ +/* in C , I prefer to know dimensions */ + +/** +* completion function on all types for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchAllDictionaries(char *somechars); + +/** +* completion function on Functions for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchFunctionsDictionary(char *somechars); + +/** +* completion function on command words for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchCommandsDictionary(char *somechars); + +/** +* completion function on Macros in libraries for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchMacrosDictionary(char *somechars); + +/** +* completion function on Variables for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchVariablesDictionary(char *somechars); + +/** +* completion function on files for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchFilesDictionary(char *somechars); + +/** +* completion function on files for scilab +* @param[in] the line before the caret +* @param[in] the part +* @return an array of chars +*/ +char **searchFieldsDictionary(char *lineBeforeCaret, char *pattern); + +/** +* completion handle graphics properties for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +char **searchHandleGraphicsPropertiesDictionary(char *somechars); +/*--------------------------------------------------------------------------*/ +#endif /* __COMPLETION_WRAP_JAVA_H__ */ diff --git a/modules/completion/src/c/core_Import.def b/modules/completion/src/c/core_Import.def new file mode 100755 index 000000000..bb2c7aa64 --- /dev/null +++ b/modules/completion/src/c/core_Import.def @@ -0,0 +1,22 @@ + LIBRARY core.dll + + +EXPORTS +;core +GetFunctionsList +getcommandkeywords +getVariablesName +callFunctionFromGateway +com_ +putlhsvar_ +freeArrayOfString +getrhsvar_ +gettype_ +vstk_ +checklhs_ +checkrhs_ +intersci_ +createvarfromptr_ +MyHeapAlloc +MyHeapFree +MyHeapRealloc diff --git a/modules/completion/src/c/getCommonPart.c b/modules/completion/src/c/getCommonPart.c new file mode 100755 index 000000000..0d03940e4 --- /dev/null +++ b/modules/completion/src/c/getCommonPart.c @@ -0,0 +1,97 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2008 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#include +#include +#include "getCommonPart.h" +#include "core_math.h" +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +/*--------------------------------------------------------------------------*/ +static int cmp( const void *a , const void *b) +{ + return strcmp(*(const char **)a, *(const char **)b ); +} +/*--------------------------------------------------------------------------*/ +static int cmpPos(char *str1, char *str2) +{ + if (str1 && str2) + { + int i = 0; + char *s1 = NULL; + char *s2 = NULL; + int lenstr1 = (int) strlen(str1); + int lenstr2 = (int) strlen(str2); + int slen; + + if (lenstr1 > lenstr2) + { + s1 = str2; + s2 = str1; + slen = lenstr1; + lenstr1 = lenstr2; + lenstr2 = slen; + } + else + { + s1 = str1; + s2 = str2; + } + for (i = 0; i < lenstr1; i++) + { + if ( s1[i] != s2[i] ) + { + return i; + } + } + + return Min(lenstr1, lenstr2); + } + return -1; +} +/*--------------------------------------------------------------------------*/ +char *getCommonPart(char **dictionary, int sizeDictionary) +{ + char *commonpart = NULL; + + if (sizeDictionary == 1) + { + return strdup(dictionary[0]); + } + + if (sizeDictionary >= 2) + { + int i = 0; + int r = 0; + char *currentstr = dictionary[0]; + qsort(dictionary, sizeof dictionary / sizeof dictionary[0], sizeof dictionary[0], cmp); + + r = cmpPos(currentstr, dictionary[1]); + for (i = 1; i < sizeDictionary - 1; i++) + { + int current_r = cmpPos(currentstr, dictionary[i + 1]); + if (r > current_r) + { + r = current_r; + currentstr = dictionary[i + 1]; + } + } + + commonpart = strdup(currentstr); + commonpart[r] = '\0'; + } + return commonpart; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/getPartLine.c b/modules/completion/src/c/getPartLine.c new file mode 100755 index 000000000..dcffcd443 --- /dev/null +++ b/modules/completion/src/c/getPartLine.c @@ -0,0 +1,154 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2008-2012 - DIGITEO - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#include +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +#include "getPartLine.h" +#include "core_math.h" +#include "MALLOC.h" +/*--------------------------------------------------------------------------*/ +#define SPACE_CHAR ' ' +/*--------------------------------------------------------------------------*/ +static char *removeSpacesAtBeginning(char *line); +/*--------------------------------------------------------------------------*/ +char *getPartLevel(char *line) +{ +#define MAX_SYMBS 28 + const char symbs[MAX_SYMBS] = "+-*/\\([ ^,;={.&|\'])}:\"\'><~@\t"; + int index = -1; + int i = 0; + + for (i = 0; i < MAX_SYMBS; i++) + { + int len = 0; + char *pch = strrchr(line, symbs[i]); + if (pch) + { + len = (int) (strlen(line) - strlen(pch)); + index = Max(index, len); + } + } + + return strdup(&line[index + 1]); +} +/*--------------------------------------------------------------------------*/ +char *getFilePartLevel(char *line) +{ +#define MAX_SYMBS_F 4 + int index = 0; + int i = 0; + int lenLine = 0; + int symbol_found = 0; + char symbs[MAX_SYMBS_F] = ";,'\""; + char *lineWithoutSpaceAtBeginning = NULL; + char *returnedLine = NULL; + + if (line == NULL) + { + return returnedLine; + } + + lineWithoutSpaceAtBeginning = removeSpacesAtBeginning(line); + if (lineWithoutSpaceAtBeginning == NULL) + { + return returnedLine; + } + + lenLine = (int)strlen(lineWithoutSpaceAtBeginning); + + /* search last character in ";,'\"" */ + for (i = 0; i < MAX_SYMBS_F; i++) + { + char *prch = strrchr(lineWithoutSpaceAtBeginning, symbs[i]); + if (prch) + { + int len = (int) (lenLine - strlen(prch)); + index = Max(index, len); + symbol_found = 1; + break; + } + } + + if (!symbol_found) + { + /* search last and first space character */ + char *prch = strrchr(lineWithoutSpaceAtBeginning, SPACE_CHAR); + char *pch = strchr(lineWithoutSpaceAtBeginning, SPACE_CHAR); + if (pch && prch) + { + int len = 0; + if (pch != prch) + { + len = (int) (strlen(lineWithoutSpaceAtBeginning) - strlen(pch)); + } + else + { + len = (int) (strlen(lineWithoutSpaceAtBeginning) - strlen(prch)); + } + index = Max(index, len); + symbol_found = 1; + } + } + + if (symbol_found) + { + index++; + /* skip spaces if there are consecutive */ + while (lineWithoutSpaceAtBeginning[index] == SPACE_CHAR) + { + if (index + 1 >= lenLine) + { + break; + } + else + { + index++; + } + } + returnedLine = strdup(&lineWithoutSpaceAtBeginning[index]); + } + + FREE(lineWithoutSpaceAtBeginning); + lineWithoutSpaceAtBeginning = NULL; + + return returnedLine; +} +/*--------------------------------------------------------------------------*/ +static char *removeSpacesAtBeginning(char *line) +{ + char *returnedLine = NULL; + if (line) + { + int i = 0; + int index = 0; + int l = (int)strlen(line); + for (i = 0; i < l; i++) + { + if (line[i] == SPACE_CHAR) + { + index++; + } + else + { + break; + } + } + if (index != l) + { + returnedLine = strdup(&line[index]); + } + } + return returnedLine; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/getfieldsdictionary.c b/modules/completion/src/c/getfieldsdictionary.c new file mode 100755 index 000000000..21236ac86 --- /dev/null +++ b/modules/completion/src/c/getfieldsdictionary.c @@ -0,0 +1,136 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) 2010-2011 - Calixte DENIZET +* Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +#include /* strcmp */ +#include /* qsort */ +#include "Scierror.h" +#include "api_scilab.h" +#include "MALLOC.h" +#include "getfieldsdictionary.h" +#include "getPartLine.h" +#include "completion.h" +#include "freeArrayOfString.h" + +#include "getfields.h" + +static int isInitialized = 0; + +/*--------------------------------------------------------------------------*/ +static int cmpNames(const void *a, const void *b) +{ + return strcmp(*(const char **)a, *(const char **)b); +} +/*--------------------------------------------------------------------------*/ +char **getfieldsdictionary(char *lineBeforeCaret, char *pattern, int *size) +{ + SciErr sciErr; + int *piAddr = NULL; + int *piLen = NULL; + int piType = 0; + int rows = 0; + int cols = 0; + int rc = 0; + int i; + int last = 0; + char **pstData = NULL; + char **fields = NULL; + char **_fields = NULL; + char *var = NULL; + char *lineBeforePoint = NULL; + int pos = (int)(strlen(lineBeforeCaret) - strlen(pattern) - 1); + char ** fieldPath = NULL; + int fieldPathLen = 0; + int fieldCompt = 0; + int fieldsSize = 0; + + if (!isInitialized) + { + initializeFieldsGetter(1); + isInitialized = 1; + } + + if (pos <= 0 || lineBeforeCaret[pos] != '.') + { + return NULL; + } + + lineBeforePoint = (char*)MALLOC(sizeof(char) * (pos + 1)); + if (lineBeforePoint == NULL) + { + return NULL; + } + memcpy(lineBeforePoint, lineBeforeCaret, pos); + lineBeforePoint[pos] = '\0'; + fieldPath = getFieldPath(lineBeforePoint, &fieldPathLen); + if (fieldPathLen == 0) + { + return NULL; + } + + FREE(lineBeforePoint); + lineBeforePoint = NULL; + + sciErr = getNamedVarType(pvApiCtx, fieldPath[0], &piType); + if (sciErr.iErr && piType != sci_mlist && piType != sci_tlist && piType != sci_handles) + { + freeArrayOfString(fieldPath, fieldPathLen); + return NULL; + } + + if (piType == sci_mlist || piType == sci_tlist || piType == sci_handles) + { + getVarAddressFromName(pvApiCtx, fieldPath[0], &piAddr); + if (sciErr.iErr) + { + freeArrayOfString(fieldPath, fieldPathLen); + return NULL; + } + + fields = (char**)getFields(piAddr, fieldPath, fieldPathLen, &fieldsSize); + freeArrayOfString(fieldPath, fieldPathLen); + if (!fields) + { + return NULL; + } + + _fields = (char**)MALLOC(sizeof(char *) * (fieldsSize + 1)); + last = 0; + + for (i = 0; i < fieldsSize ; i++) + { + if (strstr(fields[i], pattern) == fields[i]) + { + _fields[last++] = fields[i]; + } + else + { + FREE(fields[i]); + fields[i] = NULL; + } + } + + FREE(fields); + + *size = last; + qsort(_fields, *size, sizeof(char*), cmpNames); + _fields[last] = NULL; // don't forget, it SWIG is using first NULL item to guess array size + + return _fields; + } + else + { + pstData = completionOnHandleGraphicsProperties(pattern, size); + } + + return pstData; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/getfilesdictionary.c b/modules/completion/src/c/getfilesdictionary.c new file mode 100755 index 000000000..84d39a221 --- /dev/null +++ b/modules/completion/src/c/getfilesdictionary.c @@ -0,0 +1,207 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include /* strcmp */ +#include /* sprintf */ +#include /* qsort */ +#include "getfilesdictionary.h" +#include "PATH_MAX.h" +#include "scicurdir.h" /* scigetcwd */ +#include "findfiles.h" /* findfiles */ +#include "MALLOC.h" +#include "expandPathVariable.h" +#include "machine.h" +#include "isdir.h" +/*--------------------------------------------------------------------------*/ +static void splitpath(char *composite, char *path, char *fname); +static char **addPath(char **dictionary, int sizearray, char *path); +static char **addDirSeparator(char **dictionary, int sizearray, char *path); +/*--------------------------------------------------------------------------*/ +static int cmpfiles( const void *a , const void *b) +{ + return strcmp(*(const char **)a, *(const char **)b ); +} +/*--------------------------------------------------------------------------*/ +char **getfilesdictionary(char *somechars, int *sizearray, BOOL fullpath) +{ + char **dictionary = NULL; + + if (somechars) + { + int sizeListReturned = 0; + char path[PATH_MAX]; + + char filespec[PATH_MAX]; + + char pathname[PATH_MAX]; + char filename[PATH_MAX]; + + char *pathextended = NULL; + + + splitpath(somechars, pathname, filename); + + if ( strcmp(pathname, "") == 0 ) + { + /* current path */ + int ierr = 0; + char *currentpath = scigetcwd(&ierr); + if (currentpath) + { + strcpy(path, currentpath); + strcat(path, DIR_SEPARATOR); + FREE(currentpath); + currentpath = NULL; + } + } + else + { + /* we have a path */ + strcpy(path, pathname); + } + + if ( strcmp(filename, "") == 0 ) + { + /* no filename */ + strcpy(filespec, "*"); + } + else + { + /* we have the beginning of a filename */ + sprintf(filespec, "%s*", filename); + } + + pathextended = expandPathVariable(path); + + if (pathextended) + { + dictionary = findfiles(pathextended, filespec, &sizeListReturned, FALSE); + FREE(pathextended); + pathextended = NULL; + } + + if (fullpath) + { + dictionary = addPath(dictionary, sizeListReturned, path); + } + + dictionary = addDirSeparator(dictionary, sizeListReturned, path); + + *sizearray = sizeListReturned; + + /* Add a NULL element at the end (to get number of items from JNI) */ + if (dictionary != NULL) + { + dictionary = (char**)REALLOC(dictionary, sizeof(char*) * (sizeListReturned + 1)); + dictionary[sizeListReturned] = NULL; + qsort(dictionary, sizeof dictionary / sizeof dictionary[0], sizeof dictionary[0], cmpfiles); + } + } + else + { + *sizearray = 0; + } + return dictionary; +} +/*--------------------------------------------------------------------------*/ +static void splitpath(char *composite, char *path, char *fname) +{ + if (composite && path && fname) + { + char *lastslash = NULL; + char *p2 = NULL; + + lastslash = NULL; + p2 = composite; + + while (*p2) + { +#ifdef _MSC_VER + if ( (*p2 == '/') || (*p2 == '\\') ) + { + lastslash = p2; + } +#else + if (*p2 == '/') + { + lastslash = p2; + } +#endif + p2++; + } + + if (lastslash != NULL) + { + strncpy(path, composite, 1 + (int)(lastslash - composite)); + path[1 + (int)(lastslash - composite)] = '\0'; + strcpy(fname, lastslash + 1); + } + else + { + strcpy(path, ""); + strcpy(fname, composite); + } + } +} +/*--------------------------------------------------------------------------*/ +static char **addPath(char **dictionary, int sizearray, char *path) +{ + int i = 0; + for (i = 0; i < sizearray; i++) + { + char *newPath = NULL; + int newlength = (int)(strlen(dictionary[i]) + strlen(path) + 1); + newPath = (char *)MALLOC(sizeof(char) * (newlength)); + sprintf(newPath, "%s%s", path, dictionary[i]); + FREE(dictionary[i]); + dictionary[i] = newPath; + } + return dictionary; +} +/*--------------------------------------------------------------------------*/ +static char **addDirSeparator(char **dictionary, int sizearray, char *path) +{ + int i = 0; + for (i = 0; i < sizearray; i++) + { + char *pathextended = NULL; + char fullpath[PATH_MAX * 2]; + + pathextended = expandPathVariable(path); + if (pathextended) + { + strcpy(fullpath, pathextended); + strcat(fullpath, dictionary[i]); + } + else + { + strcpy(fullpath, dictionary[i]); + } + + if ( isdir(fullpath) && (dictionary[i][strlen(dictionary[i]) - 1] != DIR_SEPARATOR[0]) ) + { + char *newPath = NULL; + int newlength = (int)(strlen(dictionary[i]) + strlen(DIR_SEPARATOR) + 1); + newPath = (char *)MALLOC(sizeof(char) * (newlength)); + sprintf(newPath, "%s%s", dictionary[i], DIR_SEPARATOR); + FREE(dictionary[i]); + dictionary[i] = newPath; + } + + if (pathextended) + { + FREE(pathextended); + pathextended = NULL; + } + } + return dictionary; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/getfilesdictionary.h b/modules/completion/src/c/getfilesdictionary.h new file mode 100755 index 000000000..31ab095c8 --- /dev/null +++ b/modules/completion/src/c/getfilesdictionary.h @@ -0,0 +1,28 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __GETFILESDICTIONARY_H__ +#define __GETFILESDICTIONARY_H__ + +#include "BOOL.h" + +/** +* get files dictionary +* @param[in] some chars +* @param[out] size of returned array +* @param[in] returns with the full path name +* @return array of strings +*/ +char **getfilesdictionary(char *somechars, int *sizearray, BOOL fullpath); + +#endif /* __GETFILESDICTIONARY_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/getmacrosdictionary.c b/modules/completion/src/c/getmacrosdictionary.c new file mode 100755 index 000000000..88f7a02be --- /dev/null +++ b/modules/completion/src/c/getmacrosdictionary.c @@ -0,0 +1,21 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * Copyright (C) 2009 - DIGITEO - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include "getmacrosdictionary.h" +#include "getmacroslist.h" +/*--------------------------------------------------------------------------*/ +char **getmacrosdictionary(int *sizearray) +{ + return getmacroslist(sizearray); +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/libscicompletion_algo_la-completeLine.lo b/modules/completion/src/c/libscicompletion_algo_la-completeLine.lo new file mode 100755 index 000000000..40825b1b6 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-completeLine.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-completeLine.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-completeLine.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-completeLine_wrap_java.lo b/modules/completion/src/c/libscicompletion_algo_la-completeLine_wrap_java.lo new file mode 100755 index 000000000..f5108138d --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-completeLine_wrap_java.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-completeLine_wrap_java.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-completeLine_wrap_java.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-completion.lo b/modules/completion/src/c/libscicompletion_algo_la-completion.lo new file mode 100755 index 000000000..12c51fb39 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-completion.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-completion.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-completion.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-completion_generic.lo b/modules/completion/src/c/libscicompletion_algo_la-completion_generic.lo new file mode 100755 index 000000000..f15a11115 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-completion_generic.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-completion_generic.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-completion_generic.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-completion_wrap_java.lo b/modules/completion/src/c/libscicompletion_algo_la-completion_wrap_java.lo new file mode 100755 index 000000000..9fc068082 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-completion_wrap_java.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-completion_wrap_java.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-completion_wrap_java.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-getCommonPart.lo b/modules/completion/src/c/libscicompletion_algo_la-getCommonPart.lo new file mode 100755 index 000000000..f90412462 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-getCommonPart.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-getCommonPart.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getCommonPart.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-getPartLine.lo b/modules/completion/src/c/libscicompletion_algo_la-getPartLine.lo new file mode 100755 index 000000000..6be7d8f68 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-getPartLine.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-getPartLine.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getPartLine.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-getfieldsdictionary.lo b/modules/completion/src/c/libscicompletion_algo_la-getfieldsdictionary.lo new file mode 100755 index 000000000..1ec447de9 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-getfieldsdictionary.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-getfieldsdictionary.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getfieldsdictionary.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-getfilesdictionary.lo b/modules/completion/src/c/libscicompletion_algo_la-getfilesdictionary.lo new file mode 100755 index 000000000..8d1f5b895 --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-getfilesdictionary.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-getfilesdictionary.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getfilesdictionary.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-getmacrosdictionary.lo b/modules/completion/src/c/libscicompletion_algo_la-getmacrosdictionary.lo new file mode 100755 index 000000000..1174c75ff --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-getmacrosdictionary.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-getmacrosdictionary.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getmacrosdictionary.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/libscicompletion_algo_la-toolsdictionary.lo b/modules/completion/src/c/libscicompletion_algo_la-toolsdictionary.lo new file mode 100755 index 000000000..b6d38026a --- /dev/null +++ b/modules/completion/src/c/libscicompletion_algo_la-toolsdictionary.lo @@ -0,0 +1,12 @@ +# src/c/libscicompletion_algo_la-toolsdictionary.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-toolsdictionary.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/c/toolsdictionary.c b/modules/completion/src/c/toolsdictionary.c new file mode 100755 index 000000000..00b3b33bc --- /dev/null +++ b/modules/completion/src/c/toolsdictionary.c @@ -0,0 +1,113 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include +#include +#include "toolsdictionary.h" +#include "MALLOC.h" +/*--------------------------------------------------------------------------*/ +/** +* merge two strings array +* append array2 to array1 +* @param[in] array1 +* @param[in] pos +* @param[in] array2 +* @param[in] sizearray2 +* @return string array updated; +*/ +static char **mergearrays(char **array1, int pos, char **array2, int sizearray2); + +/* compare function for qsort */ +static int comparewords(const void *a, const void *b); + +/*--------------------------------------------------------------------------*/ +BOOL appendDictionary(char ***dictionary, int *i, char ***data, int *sizedata) +{ + BOOL bOK = FALSE; + + if (*data) + { + *dictionary = mergearrays(*dictionary, *i, *data, *sizedata); + *i = *i + *sizedata; + + FREE(*data); + *data = NULL; + *sizedata = 0; + bOK = TRUE; + } + return bOK; +} + +/*--------------------------------------------------------------------------*/ +static char **mergearrays(char **array1, int pos, char **array2, int sizearray2) +{ + if (array1 && array2) + { + int j = 0; + + for (j = 0; j < sizearray2; j++) + { + array1[pos] = array2[j]; + pos++; + } + return array1; + } + return NULL; +} + +/*--------------------------------------------------------------------------*/ +static int comparewords(const void *a, const void *b) +{ + return (strcmp(*(char **)a, *(char **)b)); +} + +/*--------------------------------------------------------------------------*/ +char **SortDictionary(char **Strings, int SizeStrings) +{ + qsort(Strings, SizeStrings, sizeof(char *), comparewords); + return Strings; +} + +/*--------------------------------------------------------------------------*/ +char **RemoveDuplicateDictionary(char **Strings, int *SizeStrings) +{ + char **returnedArray = NULL; + int newsize = 0; + + if (Strings) + { + int i = 0, j = 0; + + for (i = j = 0; i < *SizeStrings - 1; i++) + { + if (strcmp(Strings[i], Strings[i + 1])) + { + Strings[j++] = Strings[i]; + } + else + { + FREE(Strings[i]); + Strings[i] = NULL; + } + } + Strings[j++] = Strings[i]; + newsize = j; + + returnedArray = Strings; + if (returnedArray) + { + *SizeStrings = newsize; + } + } + return returnedArray; +} + +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/c/toolsdictionary.h b/modules/completion/src/c/toolsdictionary.h new file mode 100755 index 000000000..b0cb9df2b --- /dev/null +++ b/modules/completion/src/c/toolsdictionary.h @@ -0,0 +1,65 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __TOOLSDICTIONARY_H__ +#define __TOOLSDICTIONARY_H__ + +#include "BOOL.h" + +/** +* Append Data to a dictionary(string matrix) +* @param dictionary +* @param i +* @param data +* @param sizedata +* @return TRUE or FALSE +*/ +BOOL appendDictionary(char ***dictionary, int *i, char ***data, int *sizedata); + +/** +* sort dictionary +* @param strings wto sort +* @param size of new dictionary +* @return result +*/ +char **SortDictionary(char **Strings, int SizeStrings); + +/** +* Remove duplicate words in a dictionary +* @param strings where to search +* @param[out] size of new dictionary +* @return result +*/ +char **RemoveDuplicateDictionary(char **Strings, int *SizeStrings); + +/** +* free pointer +* @param ptrD +* @param sizeptrD +*/ +#define freePointerDictionary(ptrD,sizeptrD) if (ptrD)\ +{\ + int ifree =0;\ + for (ifree = 0;ifree<(int)sizeptrD;ifree++)\ + {\ + if (ptrD[ifree])\ + {\ + FREE(ptrD[ifree]);\ + ptrD[ifree] = NULL;\ + }\ + }\ + FREE(ptrD);\ + ptrD = NULL;\ +} + +#endif /* __TOOLSDICTIONARY_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/cpp/.deps/.dirstamp b/modules/completion/src/cpp/.deps/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-EOFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-EOFieldsGetter.Plo new file mode 100755 index 000000000..a7eb33fb6 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-EOFieldsGetter.Plo @@ -0,0 +1,584 @@ +src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo: \ + src/cpp/EOFieldsGetter.cpp /usr/include/stdc-predef.h \ + /usr/include/c++/5/cstring \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/string.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + /usr/include/c++/5/cstdio /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/EOFieldsGetter.hxx /usr/include/c++/5/vector \ + /usr/include/c++/5/bits/stl_construct.h \ + /usr/include/c++/5/bits/stl_uninitialized.h \ + /usr/include/c++/5/bits/stl_vector.h \ + /usr/include/c++/5/bits/stl_bvector.h /usr/include/c++/5/bits/vector.tcc \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/external_objects/includes/ScilabObjects.hxx \ + ../../modules/external_objects/includes/ExternalObjects.h \ + ../../modules/external_objects/includes/ScilabAbstractEnvironment.hxx \ + ../../modules/external_objects/includes/OptionsHelper.hxx \ + ../../modules/external_objects/includes/ScilabOptionsSetter.hxx \ + ../../modules/external_objects/includes/ScilabAbstractOptionsSetter.hxx \ + ../../modules/external_objects/includes/dynlib_external_objects_scilab.h \ + ../../modules/external_objects/includes/ScilabGatewayOptions.hxx \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/external_objects/includes/ScilabAbstractEnvironmentWrapper.hxx \ + ../../modules/external_objects/includes/ScilabAbstractMemoryAllocator.hxx \ + ../../modules/external_objects/includes/ScilabAbstractEnvironmentException.hxx \ + ../../modules/localization/includes/localization.h \ + ../../modules/core/includes/machine.h /usr/include/libintl.h \ + ../../modules/core/includes/backtrace_print.h /usr/include/c++/5/cstdlib \ + /usr/include/c++/5/sstream /usr/include/c++/5/istream \ + /usr/include/c++/5/ios /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc /usr/include/c++/5/ostream \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/bits/istream.tcc \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/iostream \ + ../../modules/external_objects/includes/ScilabEnvironments.hxx + +/usr/include/stdc-predef.h: + +/usr/include/c++/5/cstring: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/string.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +/usr/include/c++/5/cstdio: + +/usr/include/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/EOFieldsGetter.hxx: + +/usr/include/c++/5/vector: + +/usr/include/c++/5/bits/stl_construct.h: + +/usr/include/c++/5/bits/stl_uninitialized.h: + +/usr/include/c++/5/bits/stl_vector.h: + +/usr/include/c++/5/bits/stl_bvector.h: + +/usr/include/c++/5/bits/vector.tcc: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/external_objects/includes/ScilabObjects.hxx: + +../../modules/external_objects/includes/ExternalObjects.h: + +../../modules/external_objects/includes/ScilabAbstractEnvironment.hxx: + +../../modules/external_objects/includes/OptionsHelper.hxx: + +../../modules/external_objects/includes/ScilabOptionsSetter.hxx: + +../../modules/external_objects/includes/ScilabAbstractOptionsSetter.hxx: + +../../modules/external_objects/includes/dynlib_external_objects_scilab.h: + +../../modules/external_objects/includes/ScilabGatewayOptions.hxx: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +../../modules/external_objects/includes/ScilabAbstractEnvironmentWrapper.hxx: + +../../modules/external_objects/includes/ScilabAbstractMemoryAllocator.hxx: + +../../modules/external_objects/includes/ScilabAbstractEnvironmentException.hxx: + +../../modules/localization/includes/localization.h: + +../../modules/core/includes/machine.h: + +/usr/include/libintl.h: + +../../modules/core/includes/backtrace_print.h: + +/usr/include/c++/5/cstdlib: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/iostream: + +../../modules/external_objects/includes/ScilabEnvironments.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-FieldsManager.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-FieldsManager.Plo new file mode 100755 index 000000000..b6c30fa15 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-FieldsManager.Plo @@ -0,0 +1,556 @@ +src/cpp/libscicompletion_algo_la-FieldsManager.lo: \ + src/cpp/FieldsManager.cpp /usr/include/stdc-predef.h \ + /usr/include/c++/5/cstdio \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/char_traits.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/postypes.h /usr/include/c++/5/cwchar \ + /usr/include/x86_64-linux-gnu/bits/wchar.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/bits/range_access.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/ext/alloc_traits.h \ + /usr/include/c++/5/bits/basic_string.tcc /usr/include/c++/5/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/c++/5/vector \ + /usr/include/c++/5/bits/stl_construct.h \ + /usr/include/c++/5/bits/stl_uninitialized.h \ + /usr/include/c++/5/bits/stl_vector.h \ + /usr/include/c++/5/bits/stl_bvector.h /usr/include/c++/5/bits/vector.tcc \ + /usr/include/c++/5/cstring /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_map.h /usr/include/c++/5/bits/stl_multimap.h \ + src/cpp/FieldsGetter.hxx src/cpp/UnknownMlistFieldsGetter.hxx \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + src/cpp/HandleFieldsGetter.hxx includes/completion.h \ + includes/dynlib_completion.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/output_stream/includes/Scierror.h \ + ../../modules/output_stream/includes/do_error_number.h \ + ../../modules/core/includes/machine.h \ + ../../modules/string/includes/code2str.h \ + ../../modules/string/includes/dynlib_string.h \ + /usr/include/c++/5/iostream /usr/include/c++/5/ostream \ + /usr/include/c++/5/ios /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc + +/usr/include/stdc-predef.h: + +/usr/include/c++/5/cstdio: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +/usr/include/c++/5/cstdlib: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +/usr/include/c++/5/vector: + +/usr/include/c++/5/bits/stl_construct.h: + +/usr/include/c++/5/bits/stl_uninitialized.h: + +/usr/include/c++/5/bits/stl_vector.h: + +/usr/include/c++/5/bits/stl_bvector.h: + +/usr/include/c++/5/bits/vector.tcc: + +/usr/include/c++/5/cstring: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +src/cpp/FieldsGetter.hxx: + +src/cpp/UnknownMlistFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +src/cpp/HandleFieldsGetter.hxx: + +includes/completion.h: + +includes/dynlib_completion.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +../../modules/output_stream/includes/Scierror.h: + +../../modules/output_stream/includes/do_error_number.h: + +../../modules/core/includes/machine.h: + +../../modules/string/includes/code2str.h: + +../../modules/string/includes/dynlib_string.h: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-HandleFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-HandleFieldsGetter.Plo new file mode 100755 index 000000000..a05f4a1b0 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-HandleFieldsGetter.Plo @@ -0,0 +1,290 @@ +src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo: \ + src/cpp/HandleFieldsGetter.cpp /usr/include/stdc-predef.h \ + src/cpp/FieldsManager.hxx /usr/include/c++/5/map \ + /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/wchar.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/HandleFieldsGetter.hxx /usr/include/c++/5/cstring \ + /usr/include/string.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h includes/completion.h \ + includes/dynlib_completion.h + +/usr/include/stdc-predef.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/HandleFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +includes/completion.h: + +includes/dynlib_completion.h: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-StructFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-StructFieldsGetter.Plo new file mode 100755 index 000000000..c9585446e --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-StructFieldsGetter.Plo @@ -0,0 +1,445 @@ +src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo: \ + src/cpp/StructFieldsGetter.cpp /usr/include/stdc-predef.h \ + src/cpp/FieldsManager.hxx /usr/include/c++/5/map \ + /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/wchar.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/StructFieldsGetter.hxx /usr/include/c++/5/cstring \ + /usr/include/string.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/freeArrayOfString.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h + +/usr/include/stdc-predef.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/StructFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/freeArrayOfString.h: + +../../modules/core/includes/BOOL.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo new file mode 100755 index 000000000..4b9966ba4 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-UnknownMlistFieldsGetter.Plo @@ -0,0 +1,445 @@ +src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo: \ + src/cpp/UnknownMlistFieldsGetter.cpp /usr/include/stdc-predef.h \ + src/cpp/FieldsManager.hxx /usr/include/c++/5/map \ + /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/wchar.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/UnknownMlistFieldsGetter.hxx /usr/include/c++/5/cstring \ + /usr/include/string.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/freeArrayOfString.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h + +/usr/include/stdc-predef.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/UnknownMlistFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/freeArrayOfString.h: + +../../modules/core/includes/BOOL.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo new file mode 100755 index 000000000..a448daf38 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLAttrFieldsGetter.Plo @@ -0,0 +1,678 @@ +src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo: \ + src/cpp/XMLAttrFieldsGetter.cpp /usr/include/stdc-predef.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLAttrFieldsGetter.hxx /usr/include/c++/5/cstring \ + src/cpp/XMLFieldsGetter.hxx ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/c++/5/list /usr/include/c++/5/bits/stl_list.h \ + /usr/include/c++/5/bits/list.tcc ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx + +/usr/include/stdc-predef.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLAttrFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLDocFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLDocFieldsGetter.Plo new file mode 100755 index 000000000..cf70fc793 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLDocFieldsGetter.Plo @@ -0,0 +1,681 @@ +src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo: \ + src/cpp/XMLDocFieldsGetter.cpp /usr/include/stdc-predef.h \ + /usr/include/c++/5/cstring \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/string.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLDocFieldsGetter.hxx src/cpp/XMLFieldsGetter.hxx \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/5/list \ + /usr/include/c++/5/bits/stl_list.h /usr/include/c++/5/bits/list.tcc \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx src/cpp/XMLElemFieldsGetter.hxx + +/usr/include/stdc-predef.h: + +/usr/include/c++/5/cstring: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/string.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLDocFieldsGetter.hxx: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: + +src/cpp/XMLElemFieldsGetter.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLElemFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLElemFieldsGetter.Plo new file mode 100755 index 000000000..066c8423d --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLElemFieldsGetter.Plo @@ -0,0 +1,686 @@ +src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo: \ + src/cpp/XMLElemFieldsGetter.cpp /usr/include/stdc-predef.h \ + /usr/include/c++/5/cstring \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/string.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLElemFieldsGetter.hxx src/cpp/XMLFieldsGetter.hxx \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/c++/5/list /usr/include/c++/5/bits/stl_list.h \ + /usr/include/c++/5/bits/list.tcc ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx src/cpp/XMLAttrFieldsGetter.hxx \ + src/cpp/XMLNsFieldsGetter.hxx src/cpp/XMLListFieldsGetter.hxx + +/usr/include/stdc-predef.h: + +/usr/include/c++/5/cstring: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/string.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLElemFieldsGetter.hxx: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: + +src/cpp/XMLAttrFieldsGetter.hxx: + +src/cpp/XMLNsFieldsGetter.hxx: + +src/cpp/XMLListFieldsGetter.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLFieldsGetter.Plo new file mode 100755 index 000000000..a2b580e4b --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLFieldsGetter.Plo @@ -0,0 +1,690 @@ +src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo: \ + src/cpp/XMLFieldsGetter.cpp /usr/include/stdc-predef.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLFieldsGetter.hxx /usr/include/c++/5/cstring \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + src/cpp/XMLDocFieldsGetter.hxx ../../modules/xml/src/cpp/XMLDocument.hxx \ + /usr/include/c++/5/cstdio /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/5/list \ + /usr/include/c++/5/bits/stl_list.h /usr/include/c++/5/bits/list.tcc \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx src/cpp/XMLElemFieldsGetter.hxx \ + src/cpp/XMLAttrFieldsGetter.hxx src/cpp/XMLNsFieldsGetter.hxx \ + src/cpp/XMLListFieldsGetter.hxx src/cpp/XMLSetFieldsGetter.hxx + +/usr/include/stdc-predef.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +src/cpp/XMLDocFieldsGetter.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: + +src/cpp/XMLElemFieldsGetter.hxx: + +src/cpp/XMLAttrFieldsGetter.hxx: + +src/cpp/XMLNsFieldsGetter.hxx: + +src/cpp/XMLListFieldsGetter.hxx: + +src/cpp/XMLSetFieldsGetter.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLListFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLListFieldsGetter.Plo new file mode 100755 index 000000000..520ae5a67 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLListFieldsGetter.Plo @@ -0,0 +1,678 @@ +src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo: \ + src/cpp/XMLListFieldsGetter.cpp /usr/include/stdc-predef.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLListFieldsGetter.hxx /usr/include/c++/5/cstring \ + src/cpp/XMLFieldsGetter.hxx ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/c++/5/list /usr/include/c++/5/bits/stl_list.h \ + /usr/include/c++/5/bits/list.tcc ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx + +/usr/include/stdc-predef.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLListFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLNsFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLNsFieldsGetter.Plo new file mode 100755 index 000000000..245cd4339 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLNsFieldsGetter.Plo @@ -0,0 +1,678 @@ +src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo: \ + src/cpp/XMLNsFieldsGetter.cpp /usr/include/stdc-predef.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLNsFieldsGetter.hxx /usr/include/c++/5/cstring \ + src/cpp/XMLFieldsGetter.hxx ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/c++/5/list /usr/include/c++/5/bits/stl_list.h \ + /usr/include/c++/5/bits/list.tcc ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx + +/usr/include/stdc-predef.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLNsFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLSetFieldsGetter.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLSetFieldsGetter.Plo new file mode 100755 index 000000000..a6cb553b1 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-XMLSetFieldsGetter.Plo @@ -0,0 +1,678 @@ +src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo: \ + src/cpp/XMLSetFieldsGetter.cpp /usr/include/stdc-predef.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/core/includes/stack-c.h /usr/include/string.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/core_math.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/huge_val.h \ + /usr/include/x86_64-linux-gnu/bits/huge_valf.h \ + /usr/include/x86_64-linux-gnu/bits/huge_vall.h \ + /usr/include/x86_64-linux-gnu/bits/inf.h \ + /usr/include/x86_64-linux-gnu/bits/nan.h \ + /usr/include/x86_64-linux-gnu/bits/mathdef.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + ../../modules/core/includes/stack-def.h \ + ../../modules/core/includes/machine.h \ + ../../modules/core/includes/stackTypeVariable.h \ + ../../modules/core/includes/BOOL.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/core/includes/stack1.h \ + ../../modules/core/includes/scisparse.h \ + ../../modules/core/includes/stack2.h \ + ../../modules/core/includes/stack3.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/core/includes/sci_types.h \ + ../../modules/api_scilab/includes/api_common.h \ + ../../modules/api_scilab/includes/api_scilab.h \ + ../../modules/api_scilab/includes/api_double.h \ + ../../modules/core/includes/doublecomplex.h \ + ../../modules/api_scilab/includes/api_string.h /usr/include/wchar.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + ../../modules/api_scilab/includes/api_int.h \ + ../../modules/api_scilab/includes/api_poly.h \ + ../../modules/api_scilab/includes/api_sparse.h \ + ../../modules/api_scilab/includes/api_boolean.h \ + ../../modules/api_scilab/includes/api_boolean_sparse.h \ + ../../modules/api_scilab/includes/api_pointer.h \ + ../../modules/api_scilab/includes/api_list.h \ + ../../modules/api_scilab/includes/api_error.h \ + ../../modules/api_scilab/includes/api_handle.h \ + ../../modules/api_scilab/includes/api_optional.h \ + ../../modules/core/includes/stack-optional.h \ + ../../modules/api_scilab/includes/api_hypermat.h \ + ../../modules/core/includes/core_math.h \ + ../../modules/core/includes/sci_types.h src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/ext/alloc_traits.h /usr/include/c++/5/bits/stl_map.h \ + /usr/include/c++/5/bits/stl_multimap.h \ + /usr/include/c++/5/bits/range_access.h /usr/include/c++/5/string \ + /usr/include/c++/5/bits/stringfwd.h \ + /usr/include/c++/5/bits/char_traits.h /usr/include/c++/5/bits/postypes.h \ + /usr/include/c++/5/cwchar /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsGetter.hxx \ + src/cpp/XMLSetFieldsGetter.hxx /usr/include/c++/5/cstring \ + src/cpp/XMLFieldsGetter.hxx ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h \ + ../../modules/xml/includes/xmlObjects.h \ + ../../modules/xml/src/cpp/XMLObject.hxx /usr/include/c++/5/iostream \ + /usr/include/c++/5/ostream /usr/include/c++/5/ios \ + /usr/include/c++/5/bits/ios_base.h \ + /usr/include/c++/5/bits/locale_classes.h \ + /usr/include/c++/5/bits/locale_classes.tcc /usr/include/c++/5/stdexcept \ + /usr/include/c++/5/streambuf /usr/include/c++/5/bits/streambuf.tcc \ + /usr/include/c++/5/bits/basic_ios.h \ + /usr/include/c++/5/bits/locale_facets.h /usr/include/c++/5/cwctype \ + /usr/include/wctype.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h \ + /usr/include/c++/5/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h \ + /usr/include/c++/5/bits/locale_facets.tcc \ + /usr/include/c++/5/bits/basic_ios.tcc \ + /usr/include/c++/5/bits/ostream.tcc /usr/include/c++/5/istream \ + /usr/include/c++/5/bits/istream.tcc /usr/include/c++/5/sstream \ + /usr/include/c++/5/bits/sstream.tcc /usr/include/c++/5/typeinfo \ + /usr/include/c++/5/set /usr/include/c++/5/bits/stl_set.h \ + /usr/include/c++/5/bits/stl_multiset.h \ + ../../modules/xml/includes/xml_mlist.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/includes/dynlib_xml_scilab.h \ + ../../modules/xml/src/cpp/XMLNodeList.hxx \ + ../../modules/xml/src/cpp/XMLList.hxx \ + ../../modules/xml/src/cpp/XMLRemovable.hxx \ + ../../modules/xml/includes/xml.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h \ + /usr/include/libio.h /usr/include/_G_config.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h \ + /usr/include/iconv.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h \ + /home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h \ + ../../modules/xml/src/cpp/XMLNodeSet.hxx \ + ../../modules/xml/src/cpp/XMLAttr.hxx \ + ../../modules/xml/src/cpp/XMLNs.hxx \ + ../../modules/xml/src/cpp/XMLDocument.hxx /usr/include/c++/5/cstdio \ + /usr/include/c++/5/list /usr/include/c++/5/bits/stl_list.h \ + /usr/include/c++/5/bits/list.tcc ../../modules/xml/src/cpp/XMLObject.hxx \ + ../../modules/xml/src/cpp/XMLElement.hxx \ + ../../modules/xml/src/cpp/XMLNotHandledElement.hxx \ + ../../modules/xml/src/cpp/XMLXPath.hxx + +/usr/include/stdc-predef.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/core/includes/stack-c.h: + +/usr/include/string.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/core_math.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h: + +/usr/include/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix1_lim.h: + +/usr/include/x86_64-linux-gnu/bits/local_lim.h: + +/usr/include/linux/limits.h: + +/usr/include/x86_64-linux-gnu/bits/posix2_lim.h: + +/usr/include/x86_64-linux-gnu/bits/xopen_lim.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/math.h: + +/usr/include/x86_64-linux-gnu/bits/math-vector.h: + +/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h: + +/usr/include/x86_64-linux-gnu/bits/huge_val.h: + +/usr/include/x86_64-linux-gnu/bits/huge_valf.h: + +/usr/include/x86_64-linux-gnu/bits/huge_vall.h: + +/usr/include/x86_64-linux-gnu/bits/inf.h: + +/usr/include/x86_64-linux-gnu/bits/nan.h: + +/usr/include/x86_64-linux-gnu/bits/mathdef.h: + +/usr/include/x86_64-linux-gnu/bits/mathcalls.h: + +/usr/include/x86_64-linux-gnu/bits/mathinline.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +../../modules/core/includes/stack-def.h: + +../../modules/core/includes/machine.h: + +../../modules/core/includes/stackTypeVariable.h: + +../../modules/core/includes/BOOL.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/core/includes/stack1.h: + +../../modules/core/includes/scisparse.h: + +../../modules/core/includes/stack2.h: + +../../modules/core/includes/stack3.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/core/includes/sci_types.h: + +../../modules/api_scilab/includes/api_common.h: + +../../modules/api_scilab/includes/api_scilab.h: + +../../modules/api_scilab/includes/api_double.h: + +../../modules/core/includes/doublecomplex.h: + +../../modules/api_scilab/includes/api_string.h: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +../../modules/api_scilab/includes/api_int.h: + +../../modules/api_scilab/includes/api_poly.h: + +../../modules/api_scilab/includes/api_sparse.h: + +../../modules/api_scilab/includes/api_boolean.h: + +../../modules/api_scilab/includes/api_boolean_sparse.h: + +../../modules/api_scilab/includes/api_pointer.h: + +../../modules/api_scilab/includes/api_list.h: + +../../modules/api_scilab/includes/api_error.h: + +../../modules/api_scilab/includes/api_handle.h: + +../../modules/api_scilab/includes/api_optional.h: + +../../modules/core/includes/stack-optional.h: + +../../modules/api_scilab/includes/api_hypermat.h: + +../../modules/core/includes/core_math.h: + +../../modules/core/includes/sci_types.h: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/string: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLSetFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +src/cpp/XMLFieldsGetter.hxx: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +../../modules/xml/includes/xmlObjects.h: + +../../modules/xml/src/cpp/XMLObject.hxx: + +/usr/include/c++/5/iostream: + +/usr/include/c++/5/ostream: + +/usr/include/c++/5/ios: + +/usr/include/c++/5/bits/ios_base.h: + +/usr/include/c++/5/bits/locale_classes.h: + +/usr/include/c++/5/bits/locale_classes.tcc: + +/usr/include/c++/5/stdexcept: + +/usr/include/c++/5/streambuf: + +/usr/include/c++/5/bits/streambuf.tcc: + +/usr/include/c++/5/bits/basic_ios.h: + +/usr/include/c++/5/bits/locale_facets.h: + +/usr/include/c++/5/cwctype: + +/usr/include/wctype.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_base.h: + +/usr/include/c++/5/bits/streambuf_iterator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/ctype_inline.h: + +/usr/include/c++/5/bits/locale_facets.tcc: + +/usr/include/c++/5/bits/basic_ios.tcc: + +/usr/include/c++/5/bits/ostream.tcc: + +/usr/include/c++/5/istream: + +/usr/include/c++/5/bits/istream.tcc: + +/usr/include/c++/5/sstream: + +/usr/include/c++/5/bits/sstream.tcc: + +/usr/include/c++/5/typeinfo: + +/usr/include/c++/5/set: + +/usr/include/c++/5/bits/stl_set.h: + +/usr/include/c++/5/bits/stl_multiset.h: + +../../modules/xml/includes/xml_mlist.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/includes/dynlib_xml_scilab.h: + +../../modules/xml/src/cpp/XMLNodeList.hxx: + +../../modules/xml/src/cpp/XMLList.hxx: + +../../modules/xml/src/cpp/XMLRemovable.hxx: + +../../modules/xml/includes/xml.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/tree.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlversion.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlexports.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlstring.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlregexp.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/dict.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlmemory.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/threads.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/globals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/parser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/hash.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/valid.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlerror.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/list.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlautomata.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/entities.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/encoding.h: + +/usr/include/iconv.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlIO.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xlink.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/SAX2.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpath.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xpathInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/schemasInternals.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlschemas.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/relaxng.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlreader.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/HTMLparser.h: + +/home/shashank/scilab-master_5.5.2/usr/include/libxml2/libxml/xmlsave.h: + +../../modules/xml/src/cpp/XMLNodeSet.hxx: + +../../modules/xml/src/cpp/XMLAttr.hxx: + +../../modules/xml/src/cpp/XMLNs.hxx: + +../../modules/xml/src/cpp/XMLDocument.hxx: + +/usr/include/c++/5/cstdio: + +/usr/include/c++/5/list: + +/usr/include/c++/5/bits/stl_list.h: + +/usr/include/c++/5/bits/list.tcc: + +../../modules/xml/src/cpp/XMLObject.hxx: + +../../modules/xml/src/cpp/XMLElement.hxx: + +../../modules/xml/src/cpp/XMLNotHandledElement.hxx: + +../../modules/xml/src/cpp/XMLXPath.hxx: diff --git a/modules/completion/src/cpp/.deps/libscicompletion_algo_la-getfields.Plo b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-getfields.Plo new file mode 100755 index 000000000..b7aa38733 --- /dev/null +++ b/modules/completion/src/cpp/.deps/libscicompletion_algo_la-getfields.Plo @@ -0,0 +1,308 @@ +src/cpp/libscicompletion_algo_la-getfields.lo: src/cpp/getfields.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/5/string \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h \ + /usr/include/c++/5/bits/stringfwd.h /usr/include/c++/5/bits/memoryfwd.h \ + /usr/include/c++/5/bits/char_traits.h \ + /usr/include/c++/5/bits/stl_algobase.h \ + /usr/include/c++/5/bits/functexcept.h \ + /usr/include/c++/5/bits/exception_defines.h \ + /usr/include/c++/5/bits/cpp_type_traits.h \ + /usr/include/c++/5/ext/type_traits.h \ + /usr/include/c++/5/ext/numeric_traits.h \ + /usr/include/c++/5/bits/stl_pair.h /usr/include/c++/5/bits/move.h \ + /usr/include/c++/5/bits/concept_check.h \ + /usr/include/c++/5/bits/stl_iterator_base_types.h \ + /usr/include/c++/5/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/5/debug/debug.h /usr/include/c++/5/bits/stl_iterator.h \ + /usr/include/c++/5/bits/ptr_traits.h \ + /usr/include/c++/5/bits/predefined_ops.h \ + /usr/include/c++/5/bits/postypes.h /usr/include/c++/5/cwchar \ + /usr/include/wchar.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h /usr/include/xlocale.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/5/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h \ + /usr/include/c++/5/ext/new_allocator.h /usr/include/c++/5/new \ + /usr/include/c++/5/exception \ + /usr/include/c++/5/bits/atomic_lockfree_defines.h \ + /usr/include/c++/5/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h \ + /usr/include/c++/5/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/5/iosfwd \ + /usr/include/c++/5/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/c++/5/bits/ostream_insert.h \ + /usr/include/c++/5/bits/cxxabi_forced.h \ + /usr/include/c++/5/bits/stl_function.h \ + /usr/include/c++/5/backward/binders.h \ + /usr/include/c++/5/bits/range_access.h \ + /usr/include/c++/5/bits/basic_string.h \ + /usr/include/c++/5/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h \ + /usr/include/c++/5/ext/alloc_traits.h \ + /usr/include/c++/5/bits/basic_string.tcc src/cpp/FieldsManager.hxx \ + /usr/include/c++/5/map /usr/include/c++/5/bits/stl_tree.h \ + /usr/include/c++/5/bits/stl_map.h /usr/include/c++/5/bits/stl_multimap.h \ + src/cpp/FieldsGetter.hxx src/cpp/XMLFieldsGetter.hxx \ + /usr/include/c++/5/cstring /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h src/cpp/EOFieldsGetter.hxx \ + /usr/include/c++/5/vector /usr/include/c++/5/bits/stl_construct.h \ + /usr/include/c++/5/bits/stl_uninitialized.h \ + /usr/include/c++/5/bits/stl_vector.h \ + /usr/include/c++/5/bits/stl_bvector.h /usr/include/c++/5/bits/vector.tcc \ + src/cpp/StructFieldsGetter.hxx includes/getfields.h + +/usr/include/stdc-predef.h: + +/usr/include/c++/5/string: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++config.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/os_defines.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/cpu_defines.h: + +/usr/include/c++/5/bits/stringfwd.h: + +/usr/include/c++/5/bits/memoryfwd.h: + +/usr/include/c++/5/bits/char_traits.h: + +/usr/include/c++/5/bits/stl_algobase.h: + +/usr/include/c++/5/bits/functexcept.h: + +/usr/include/c++/5/bits/exception_defines.h: + +/usr/include/c++/5/bits/cpp_type_traits.h: + +/usr/include/c++/5/ext/type_traits.h: + +/usr/include/c++/5/ext/numeric_traits.h: + +/usr/include/c++/5/bits/stl_pair.h: + +/usr/include/c++/5/bits/move.h: + +/usr/include/c++/5/bits/concept_check.h: + +/usr/include/c++/5/bits/stl_iterator_base_types.h: + +/usr/include/c++/5/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/5/debug/debug.h: + +/usr/include/c++/5/bits/stl_iterator.h: + +/usr/include/c++/5/bits/ptr_traits.h: + +/usr/include/c++/5/bits/predefined_ops.h: + +/usr/include/c++/5/bits/postypes.h: + +/usr/include/c++/5/cwchar: + +/usr/include/wchar.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/wchar2.h: + +/usr/include/c++/5/bits/allocator.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++allocator.h: + +/usr/include/c++/5/ext/new_allocator.h: + +/usr/include/c++/5/new: + +/usr/include/c++/5/exception: + +/usr/include/c++/5/bits/atomic_lockfree_defines.h: + +/usr/include/c++/5/bits/localefwd.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/c++locale.h: + +/usr/include/c++/5/clocale: + +/usr/include/locale.h: + +/usr/include/x86_64-linux-gnu/bits/locale.h: + +/usr/include/c++/5/iosfwd: + +/usr/include/c++/5/cctype: + +/usr/include/ctype.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/c++/5/bits/ostream_insert.h: + +/usr/include/c++/5/bits/cxxabi_forced.h: + +/usr/include/c++/5/bits/stl_function.h: + +/usr/include/c++/5/backward/binders.h: + +/usr/include/c++/5/bits/range_access.h: + +/usr/include/c++/5/bits/basic_string.h: + +/usr/include/c++/5/ext/atomicity.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/gthr-default.h: + +/usr/include/pthread.h: + +/usr/include/sched.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/bits/sched.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/x86_64-linux-gnu/bits/setjmp.h: + +/usr/include/x86_64-linux-gnu/c++/5/bits/atomic_word.h: + +/usr/include/c++/5/ext/alloc_traits.h: + +/usr/include/c++/5/bits/basic_string.tcc: + +src/cpp/FieldsManager.hxx: + +/usr/include/c++/5/map: + +/usr/include/c++/5/bits/stl_tree.h: + +/usr/include/c++/5/bits/stl_map.h: + +/usr/include/c++/5/bits/stl_multimap.h: + +src/cpp/FieldsGetter.hxx: + +src/cpp/XMLFieldsGetter.hxx: + +/usr/include/c++/5/cstring: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +src/cpp/EOFieldsGetter.hxx: + +/usr/include/c++/5/vector: + +/usr/include/c++/5/bits/stl_construct.h: + +/usr/include/c++/5/bits/stl_uninitialized.h: + +/usr/include/c++/5/bits/stl_vector.h: + +/usr/include/c++/5/bits/stl_bvector.h: + +/usr/include/c++/5/bits/vector.tcc: + +src/cpp/StructFieldsGetter.hxx: + +includes/getfields.h: diff --git a/modules/completion/src/cpp/.dirstamp b/modules/completion/src/cpp/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-EOFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-EOFieldsGetter.o new file mode 100755 index 000000000..f97254d25 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-EOFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-FieldsManager.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-FieldsManager.o new file mode 100755 index 000000000..2243c2507 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-FieldsManager.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-HandleFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-HandleFieldsGetter.o new file mode 100755 index 000000000..5c0524e85 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-HandleFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-StructFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-StructFieldsGetter.o new file mode 100755 index 000000000..96aeb7494 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-StructFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-UnknownMlistFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-UnknownMlistFieldsGetter.o new file mode 100755 index 000000000..7ab4aed37 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-UnknownMlistFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLAttrFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLAttrFieldsGetter.o new file mode 100755 index 000000000..075ebc144 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLAttrFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLDocFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLDocFieldsGetter.o new file mode 100755 index 000000000..6973a5c7a Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLDocFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLElemFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLElemFieldsGetter.o new file mode 100755 index 000000000..01c84dba5 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLElemFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLFieldsGetter.o new file mode 100755 index 000000000..e7e25debe Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLListFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLListFieldsGetter.o new file mode 100755 index 000000000..70df97183 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLListFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLNsFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLNsFieldsGetter.o new file mode 100755 index 000000000..2aaf28d85 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLNsFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLSetFieldsGetter.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLSetFieldsGetter.o new file mode 100755 index 000000000..903c0f4d7 Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-XMLSetFieldsGetter.o differ diff --git a/modules/completion/src/cpp/.libs/libscicompletion_algo_la-getfields.o b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-getfields.o new file mode 100755 index 000000000..1aa18ac2a Binary files /dev/null and b/modules/completion/src/cpp/.libs/libscicompletion_algo_la-getfields.o differ diff --git a/modules/completion/src/cpp/EOFieldsGetter.cpp b/modules/completion/src/cpp/EOFieldsGetter.cpp new file mode 100755 index 000000000..2373349b8 --- /dev/null +++ b/modules/completion/src/cpp/EOFieldsGetter.cpp @@ -0,0 +1,59 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include +#include + +#include "FieldsManager.hxx" +#include "EOFieldsGetter.hxx" +#include "ScilabObjects.hxx" + +extern "C" +{ +#include "api_scilab.h" +#include "MALLOC.h" +} + +using namespace org_modules_external_objects; + +namespace org_modules_completion +{ + +const char ** EOFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int envId = ScilabObjects::getEnvironmentId(mlist, pvApiCtx); + int idObj = ScilabObjects::getExternalId(mlist, pvApiCtx); + ScilabAbstractEnvironment & env = ScilabEnvironments::getEnvironment(envId); + ScilabObjects::initialization(env, pvApiCtx); + std::vector fields; + const char ** ret = 0; + + try + { + fields = env.getCompletion(idObj, fieldPath, fieldPathLen); + } + catch (const std::exception & e) + { + return 0; + } + + *fieldsSize = (int)fields.size(); + ret = (const char **)MALLOC(sizeof(char *) **fieldsSize); + + for (int i = 0; i < *fieldsSize; i++) + { + ret[i] = strdup(fields.at(i).c_str()); + } + + return ret; +} +} diff --git a/modules/completion/src/cpp/EOFieldsGetter.hxx b/modules/completion/src/cpp/EOFieldsGetter.hxx new file mode 100755 index 000000000..abe208e38 --- /dev/null +++ b/modules/completion/src/cpp/EOFieldsGetter.hxx @@ -0,0 +1,63 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __EOFIELDSGETTER_HXX__ +#define __EOFIELDSGETTER_HXX__ + +#include +#include +#include +#include "FieldsGetter.hxx" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name in objects wrapped by External Objects module + */ +class EOFieldsGetter : FieldsGetter +{ + +public : + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + /** + * Initialization + */ + static void initializeEO() + { + EOFieldsGetter * getter = new EOFieldsGetter(); + FieldsManager::addFieldsGetter(std::string("_EClass"), getter); + FieldsManager::addFieldsGetter(std::string("_EObj"), getter); + } + +private : + + EOFieldsGetter() { } + + virtual ~EOFieldsGetter() { } +}; +} + +#endif diff --git a/modules/completion/src/cpp/FieldsGetter.hxx b/modules/completion/src/cpp/FieldsGetter.hxx new file mode 100755 index 000000000..3f874d8a5 --- /dev/null +++ b/modules/completion/src/cpp/FieldsGetter.hxx @@ -0,0 +1,48 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __FIELDSGETTER_HXX__ +#define __FIELDSGETTER_HXX__ + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to retrieve the fields name of an uncomplete mlist + */ +class FieldsGetter +{ + +public : + + /** + * Default constructor + */ + FieldsGetter() { } + + /** + * Destructor + */ + virtual ~FieldsGetter() { } + + /** + * @param typeName the type name + * @param mlist the mlist addr + */ + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const = 0; +}; +} + +#endif diff --git a/modules/completion/src/cpp/FieldsManager.cpp b/modules/completion/src/cpp/FieldsManager.cpp new file mode 100755 index 000000000..4a29806be --- /dev/null +++ b/modules/completion/src/cpp/FieldsManager.cpp @@ -0,0 +1,142 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include +#include +#include +#include +#include + +#include "FieldsManager.hxx" +#include "UnknownMlistFieldsGetter.hxx" +#include "HandleFieldsGetter.hxx" + +extern "C" { +#include "api_scilab.h" +#include "Scierror.h" +#include "code2str.h" +} + +#include + +namespace org_modules_completion +{ + +std::map FieldsManager::typeToFieldsGetter = std::map(); + +void FieldsManager::addFieldsGetter(const std::string & typeName, FieldsGetter * getter) +{ + typeToFieldsGetter[typeName] = getter; +} + +const char ** FieldsManager::getFieldsForType(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + std::map::const_iterator it = typeToFieldsGetter.find(typeName); + *fieldsSize = 0; + if (it == typeToFieldsGetter.end()) + { + UnknownMlistFieldsGetter getter; + return getter.getFieldsName(typeName, mlist, fieldPath, fieldPathLen, fieldsSize); + } + return it->second->getFieldsName(typeName, mlist, fieldPath, fieldPathLen, fieldsSize); +} + +const char ** FieldsManager::getFields(int * addr, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + int type; + const char ** fields = 0; + SciErr sciErr = getVarType(pvApiCtx, addr, &type); + if (sciErr.iErr) + { + return 0; + } + + if (type == sci_mlist || type == sci_tlist) + { + int * strs = 0; + const int nbItem = addr[1]; + sciErr = getListItemAddress(pvApiCtx, addr, 1, &strs); + if (sciErr.iErr) + { + return 0; + } + + const int r = strs[1]; + const int c = strs[2]; + int typeLen = strs[5] - 1; + char * str = new char[typeLen + 1]; + code2str(&str, strs + 5 + r * c, typeLen); + str[typeLen] = 0; + fields = getFieldsForType(str, addr, fieldPath, fieldPathLen, fieldsSize); + delete[] str; + } + else if (type == sci_handles) + { + HandleFieldsGetter getter; + fields = getter.getFieldsName("", addr, fieldPath, fieldPathLen, fieldsSize); + } + + return fields; +} + +char ** FieldsManager::getFieldPath(const char * _str, int * len) +{ + std::vector v; + std::string str(_str); + int pos = (int)str.length(); + const char symbs[27] = "+-*/\\([ ^,;={&|])}:\"\'><~@\t"; + char ** ret = 0; + + if (str.at(pos - 1) == '.') + { + pos--; + } + + for (int i = pos - 1; i >= 0; i--) + { + const char c = str.at(i); + if (c == '.') + { + v.push_back(str.substr(i + 1, pos - i - 1)); + pos = i; + } + else + { + for (int j = 0; j < 27; j++) + { + if (c == symbs[j]) + { + v.push_back(str.substr(i + 1, pos - i - 1)); + goto finish; + } + } + } + } + + v.push_back(str.substr(0, pos)); + +finish : + + *len = (int)v.size(); + if (*len != 0) + { + ret = (char **) malloc(sizeof(char *) **len); + for (int i = 0; i < *len; i++) + { + ret[i] = strdup(v.at(*len - i - 1).c_str()); + } + } + + return ret; +} +} diff --git a/modules/completion/src/cpp/FieldsManager.hxx b/modules/completion/src/cpp/FieldsManager.hxx new file mode 100755 index 000000000..a652775aa --- /dev/null +++ b/modules/completion/src/cpp/FieldsManager.hxx @@ -0,0 +1,60 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __FIELDSMANAGER_HXX__ +#define __FIELDSMANAGER_HXX__ + +#include +#include +#include "FieldsGetter.hxx" + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to handle the mapping between XMLObjects and their id + */ +class FieldsManager +{ + + static std::map typeToFieldsGetter; + +public : + + /** + * Add a FieldGetter to the map + * @param typeName the type name + * @param getter a pointer to a FieldGetter + */ + static void addFieldsGetter(const std::string & typeName, FieldsGetter * getter); + + /** + * Retrieve the fields name for a given type and a given mlist + * @param typeName the type name + * @param mlist the mlist address + * @return the array of fields name + */ + static const char ** getFieldsForType(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize); + + static char ** getFieldPath(const char * _str, int * len); + + static const char ** getFields(int * addr, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + + + +#endif diff --git a/modules/completion/src/cpp/HandleFieldsGetter.cpp b/modules/completion/src/cpp/HandleFieldsGetter.cpp new file mode 100755 index 000000000..6f8c5cbed --- /dev/null +++ b/modules/completion/src/cpp/HandleFieldsGetter.cpp @@ -0,0 +1,29 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include "FieldsManager.hxx" +#include "HandleFieldsGetter.hxx" + + +namespace org_modules_completion +{ + +const char ** HandleFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + return getFieldsName(mlist, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** HandleFieldsGetter::getFieldsName(int * handle, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + return const_cast(completionOnHandleGraphicsProperties("", fieldsSize)); +} +} diff --git a/modules/completion/src/cpp/HandleFieldsGetter.hxx b/modules/completion/src/cpp/HandleFieldsGetter.hxx new file mode 100755 index 000000000..84e934e8b --- /dev/null +++ b/modules/completion/src/cpp/HandleFieldsGetter.hxx @@ -0,0 +1,53 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __HANDLEFIELDSGETTER_HXX__ +#define __HANDLEFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +#include "completion.h" +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class HandleFieldsGetter : public FieldsGetter +{ + +public : + HandleFieldsGetter() { } + + virtual ~HandleFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(int * handle, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/StructFieldsGetter.cpp b/modules/completion/src/cpp/StructFieldsGetter.cpp new file mode 100755 index 000000000..801e12746 --- /dev/null +++ b/modules/completion/src/cpp/StructFieldsGetter.cpp @@ -0,0 +1,106 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include "FieldsManager.hxx" +#include "StructFieldsGetter.hxx" + +extern "C" +{ +#include "freeArrayOfString.h" +#include "api_scilab.h" +#include "MALLOC.h" +} + +namespace org_modules_completion +{ + +const char ** StructFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + return getFieldsName(mlist, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** StructFieldsGetter::getFieldsName(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + int rows; + int cols; + int rc; + int * piLen = 0; + char ** pstData = 0; + int nbItem; + int * fieldsAddr = 0; + SciErr sciErr; + const char ** fields = 0; + + *fieldsSize = 0; + + sciErr = getListItemNumber(pvApiCtx, mlist, &nbItem); + if (sciErr.iErr) + { + return 0; + } + + if (nbItem == 0) + { + return 0; + } + + sciErr = getListItemAddress(pvApiCtx, mlist, 1, &fieldsAddr); + if (sciErr.iErr) + { + return 0; + } + + if (getAllocatedMatrixOfString(pvApiCtx, fieldsAddr, &rows, &cols, &pstData)) + { + return 0; + } + + rc = rows * cols; + if (rc == 1 || rc == 2) + { + freeArrayOfString(pstData, rc); + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = rc - 2; + fields = (const char **)MALLOC(sizeof(char *) **fieldsSize); + memcpy(fields, pstData + 2, sizeof(char *) **fieldsSize); + FREE(pstData[0]); + FREE(pstData[1]); + FREE(pstData); + + return fields; + } + + for (int i = 2; i < rc; i++) + { + if (!strcmp(pstData[i], fieldPath[0])) + { + freeArrayOfString(pstData, rc); + int * itemAddr = 0; + sciErr = getListItemAddress(pvApiCtx, mlist, i + 1, &itemAddr); + if (sciErr.iErr) + { + return 0; + } + + return FieldsManager::getFields(itemAddr, fieldPath, fieldPathLen, fieldsSize); + } + } + + freeArrayOfString(pstData, rc); + + return 0; +} +} diff --git a/modules/completion/src/cpp/StructFieldsGetter.hxx b/modules/completion/src/cpp/StructFieldsGetter.hxx new file mode 100755 index 000000000..af8a2209f --- /dev/null +++ b/modules/completion/src/cpp/StructFieldsGetter.hxx @@ -0,0 +1,53 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __STRUCTFIELDSGETTER_HXX__ +#define __STRUCTFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class StructFieldsGetter : public FieldsGetter +{ + +public : + + StructFieldsGetter() { } + + virtual ~StructFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/UnknownMlistFieldsGetter.cpp b/modules/completion/src/cpp/UnknownMlistFieldsGetter.cpp new file mode 100755 index 000000000..2b4c4a13d --- /dev/null +++ b/modules/completion/src/cpp/UnknownMlistFieldsGetter.cpp @@ -0,0 +1,103 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include "FieldsManager.hxx" +#include "UnknownMlistFieldsGetter.hxx" + +extern "C" +{ +#include "freeArrayOfString.h" +#include "api_scilab.h" +#include "MALLOC.h" +} + +namespace org_modules_completion +{ + +const char ** UnknownMlistFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + return getFieldsName(mlist, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** UnknownMlistFieldsGetter::getFieldsName(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + int rows; + int cols; + int rc; + int * piLen = 0; + char ** pstData = 0; + int nbItem; + int * fieldsAddr = 0; + SciErr sciErr; + const char ** fields = 0; + + *fieldsSize = 0; + + sciErr = getListItemNumber(pvApiCtx, mlist, &nbItem); + if (sciErr.iErr) + { + return 0; + } + + if (nbItem == 0) + { + return 0; + } + + sciErr = getListItemAddress(pvApiCtx, mlist, 1, &fieldsAddr); + if (sciErr.iErr) + { + return 0; + } + + if (getAllocatedMatrixOfString(pvApiCtx, fieldsAddr, &rows, &cols, &pstData)) + { + return 0; + } + + rc = rows * cols; + if (rc == 1) + { + freeArrayOfString(pstData, rc); + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = rc - 1; + fields = (const char **)MALLOC(sizeof(char *) **fieldsSize); + memcpy(fields, pstData + 1, sizeof(char *) **fieldsSize); + FREE(pstData[0]); + FREE(pstData); + + return fields; + } + + for (int i = 1; i < rc; i++) + { + if (!strcmp(pstData[i], fieldPath[0])) + { + freeArrayOfString(pstData, rc); + int * itemAddr = 0; + sciErr = getListItemAddress(pvApiCtx, mlist, i + 1, &itemAddr); + if (sciErr.iErr) + { + return 0; + } + + return FieldsManager::getFields(itemAddr, fieldPath, fieldPathLen, fieldsSize); + } + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/UnknownMlistFieldsGetter.hxx b/modules/completion/src/cpp/UnknownMlistFieldsGetter.hxx new file mode 100755 index 000000000..d29d21067 --- /dev/null +++ b/modules/completion/src/cpp/UnknownMlistFieldsGetter.hxx @@ -0,0 +1,52 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __UNKNOWNMLISTFIELDSGETTER_HXX__ +#define __UNKNOWNMLISTFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class UnknownMlistFieldsGetter : public FieldsGetter +{ + +public : + UnknownMlistFieldsGetter() { } + + virtual ~UnknownMlistFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLAttrFieldsGetter.cpp b/modules/completion/src/cpp/XMLAttrFieldsGetter.cpp new file mode 100755 index 000000000..d957f04d5 --- /dev/null +++ b/modules/completion/src/cpp/XMLAttrFieldsGetter.cpp @@ -0,0 +1,60 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLAttrFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +const char ** XMLAttrFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + XMLAttr * a = XMLObject::getFromId(id); + + return getFieldsName(a, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLAttrFieldsGetter::getFieldsName(const XMLAttr * a, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!a) + { + return 0; + } + + if (fieldPathLen == 0) + { + const char ** fieldsName = a->getNames(); + int size = 0; + for (; fieldsName[size]; size++) + { + ; + } + + const char ** cpy = copy(fieldsName, size); + delete [] fieldsName; + *fieldsSize = size; + + return cpy; + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLAttrFieldsGetter.hxx b/modules/completion/src/cpp/XMLAttrFieldsGetter.hxx new file mode 100755 index 000000000..a72bbc487 --- /dev/null +++ b/modules/completion/src/cpp/XMLAttrFieldsGetter.hxx @@ -0,0 +1,54 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLATTRFIELDSGETTER_HXX__ +#define __XMLATTRFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLAttrFieldsGetter : public XMLFieldsGetter +{ + +public : + XMLAttrFieldsGetter() { } + + virtual ~XMLAttrFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const org_modules_xml::XMLAttr * a, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLDocFieldsGetter.cpp b/modules/completion/src/cpp/XMLDocFieldsGetter.cpp new file mode 100755 index 000000000..0d19217f9 --- /dev/null +++ b/modules/completion/src/cpp/XMLDocFieldsGetter.cpp @@ -0,0 +1,57 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLDocFieldsGetter.hxx" +#include "XMLElemFieldsGetter.hxx" + + +namespace org_modules_completion +{ + +const char ** XMLDocFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + org_modules_xml::XMLDocument * doc = XMLObject::getFromId(id); + + return getFieldsName(doc, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLDocFieldsGetter::getFieldsName(const org_modules_xml::XMLDocument * doc, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!doc) + { + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = 2; + const char * fieldsName[2] = {"root", "url"}; + return XMLFieldsGetter::copy(fieldsName, 2); + } + + if (!strcmp(fieldPath[0], "root")) + { + return XMLElemFieldsGetter::getFieldsName(doc->getRoot(), fieldPath + 1, fieldPathLen - 1, fieldsSize); + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLDocFieldsGetter.hxx b/modules/completion/src/cpp/XMLDocFieldsGetter.hxx new file mode 100755 index 000000000..809e1fd75 --- /dev/null +++ b/modules/completion/src/cpp/XMLDocFieldsGetter.hxx @@ -0,0 +1,55 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLDOCFIELDSGETTER_HXX__ +#define __XMLDOCFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "XMLDocument.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLDocFieldsGetter : public XMLFieldsGetter +{ + +public : + + XMLDocFieldsGetter() { } + + virtual ~XMLDocFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const org_modules_xml::XMLDocument * doc, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLElemFieldsGetter.cpp b/modules/completion/src/cpp/XMLElemFieldsGetter.cpp new file mode 100755 index 000000000..a8493a58e --- /dev/null +++ b/modules/completion/src/cpp/XMLElemFieldsGetter.cpp @@ -0,0 +1,76 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLElemFieldsGetter.hxx" +#include "XMLAttrFieldsGetter.hxx" +#include "XMLNsFieldsGetter.hxx" +#include "XMLListFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +const char ** XMLElemFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + XMLElement * e = XMLObject::getFromId(id); + + return getFieldsName(e, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLElemFieldsGetter::getFieldsName(const XMLElement * e, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!e) + { + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = 7; + const char * fieldsName[7] = {"name", "namespace", "content", "type", "parent", "attributes", "children"}; + return XMLFieldsGetter::copy(fieldsName, 7); + } + + if (!strcmp(fieldPath[0], "namespace")) + { + return XMLNsFieldsGetter::getFieldsName(e->getNodeNameSpace(), fieldPath + 1, fieldPathLen - 1, fieldsSize); + } + + if (!strcmp(fieldPath[0], "parent")) + { + return XMLElemFieldsGetter::getFieldsName(e->getParentElement(), fieldPath + 1, fieldPathLen - 1, fieldsSize); + } + + if (!strcmp(fieldPath[0], "attributes")) + { + return XMLAttrFieldsGetter::getFieldsName(e->getAttributes(), fieldPath + 1, fieldPathLen - 1, fieldsSize); + } + + if (!strcmp(fieldPath[0], "children")) + { + return XMLListFieldsGetter::getFieldsName(e->getChildren(), fieldPath + 1, fieldPathLen - 1, fieldsSize); + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLElemFieldsGetter.hxx b/modules/completion/src/cpp/XMLElemFieldsGetter.hxx new file mode 100755 index 000000000..95198f632 --- /dev/null +++ b/modules/completion/src/cpp/XMLElemFieldsGetter.hxx @@ -0,0 +1,56 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLELEMFIELDSGETTER_HXX__ +#define __XMLELEMFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLElemFieldsGetter : public XMLFieldsGetter +{ + +public : + XMLElemFieldsGetter() { } + + virtual ~XMLElemFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const XMLElement * e, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLFieldsGetter.cpp b/modules/completion/src/cpp/XMLFieldsGetter.cpp new file mode 100755 index 000000000..9a6d55542 --- /dev/null +++ b/modules/completion/src/cpp/XMLFieldsGetter.cpp @@ -0,0 +1,43 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLFieldsGetter.hxx" +#include "XMLDocFieldsGetter.hxx" +#include "XMLElemFieldsGetter.hxx" +#include "XMLAttrFieldsGetter.hxx" +#include "XMLNsFieldsGetter.hxx" +#include "XMLListFieldsGetter.hxx" +#include "XMLSetFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +void XMLFieldsGetter::initializeXML() +{ + FieldsManager::addFieldsGetter(std::string("XMLDoc"), new XMLDocFieldsGetter()); + FieldsManager::addFieldsGetter(std::string("XMLElem"), new XMLElemFieldsGetter()); + FieldsManager::addFieldsGetter(std::string("XMLNs"), new XMLNsFieldsGetter()); + FieldsManager::addFieldsGetter(std::string("XMLAttr"), new XMLAttrFieldsGetter()); + FieldsManager::addFieldsGetter(std::string("XMLList"), new XMLListFieldsGetter()); + FieldsManager::addFieldsGetter(std::string("XMLSet"), new XMLSetFieldsGetter()); +} +} diff --git a/modules/completion/src/cpp/XMLFieldsGetter.hxx b/modules/completion/src/cpp/XMLFieldsGetter.hxx new file mode 100755 index 000000000..cd04ce006 --- /dev/null +++ b/modules/completion/src/cpp/XMLFieldsGetter.hxx @@ -0,0 +1,77 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLFIELDSGETTER_HXX__ +#define __XMLFIELDSGETTER_HXX__ + +#include +#include +#include "FieldsGetter.hxx" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLFieldsGetter : public FieldsGetter +{ + +public : + + XMLFieldsGetter() { } + + virtual ~XMLFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const + { + return NULL; + } + + /** + * Initialization + */ + static void initializeXML(); + +protected : + + /** + * Copy a char * array and prepend typeName + * @param typeName the type name + * @param arr the arry to copy + * @return the copy + */ + static inline const char ** copy(const char ** arr, const int size) + { + char ** cpy = (char **)MALLOC(sizeof(char *) * size); + for (int i = 0; i < size; i++) + { + cpy[i] = strdup(arr[i]); + } + + return const_cast(cpy); + } +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLListFieldsGetter.cpp b/modules/completion/src/cpp/XMLListFieldsGetter.cpp new file mode 100755 index 000000000..b5c3eb493 --- /dev/null +++ b/modules/completion/src/cpp/XMLListFieldsGetter.cpp @@ -0,0 +1,51 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLListFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +const char ** XMLListFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + XMLList * l = XMLObject::getFromId(id); + + return getFieldsName(l, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLListFieldsGetter::getFieldsName(const XMLList * l, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!l) + { + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = 1; + const char * fieldsName[1] = {"size"}; + return XMLFieldsGetter::copy(fieldsName, 1); + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLListFieldsGetter.hxx b/modules/completion/src/cpp/XMLListFieldsGetter.hxx new file mode 100755 index 000000000..a47141a96 --- /dev/null +++ b/modules/completion/src/cpp/XMLListFieldsGetter.hxx @@ -0,0 +1,56 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licelisted as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLLISTFIELDSGETTER_HXX__ +#define __XMLLISTFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLListFieldsGetter : public XMLFieldsGetter +{ + +public : + XMLListFieldsGetter() { } + + virtual ~XMLListFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const XMLList * list, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLNsFieldsGetter.cpp b/modules/completion/src/cpp/XMLNsFieldsGetter.cpp new file mode 100755 index 000000000..25da29428 --- /dev/null +++ b/modules/completion/src/cpp/XMLNsFieldsGetter.cpp @@ -0,0 +1,51 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLNsFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +const char ** XMLNsFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + XMLNs * ns = XMLObject::getFromId(id); + + return getFieldsName(ns, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLNsFieldsGetter::getFieldsName(const XMLNs * ns, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!ns) + { + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = 2; + const char * fieldsName[2] = {"href", "prefix"}; + return XMLFieldsGetter::copy(fieldsName, 2); + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLNsFieldsGetter.hxx b/modules/completion/src/cpp/XMLNsFieldsGetter.hxx new file mode 100755 index 000000000..31052b839 --- /dev/null +++ b/modules/completion/src/cpp/XMLNsFieldsGetter.hxx @@ -0,0 +1,56 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLNSFIELDSGETTER_HXX__ +#define __XMLNSFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLNsFieldsGetter : public XMLFieldsGetter +{ + +public : + XMLNsFieldsGetter() { } + + virtual ~XMLNsFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const XMLNs * ns, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/XMLSetFieldsGetter.cpp b/modules/completion/src/cpp/XMLSetFieldsGetter.cpp new file mode 100755 index 000000000..fd325d9de --- /dev/null +++ b/modules/completion/src/cpp/XMLSetFieldsGetter.cpp @@ -0,0 +1,51 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +extern "C" +{ +#include "api_scilab.h" +} + +#include "FieldsManager.hxx" +#include "XMLSetFieldsGetter.hxx" + + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +const char ** XMLSetFieldsGetter::getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const +{ + int id = getXMLObjectId(mlist, pvApiCtx); + XMLNodeSet * s = XMLObject::getFromId(id); + + return getFieldsName(s, fieldPath + 1, fieldPathLen - 1, fieldsSize); +} + +const char ** XMLSetFieldsGetter::getFieldsName(const XMLNodeSet * s, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + if (!s) + { + return 0; + } + + if (fieldPathLen == 0) + { + *fieldsSize = 1; + const char * fieldsName[1] = {"size"}; + return copy(fieldsName, 1); + } + + return 0; +} +} diff --git a/modules/completion/src/cpp/XMLSetFieldsGetter.hxx b/modules/completion/src/cpp/XMLSetFieldsGetter.hxx new file mode 100755 index 000000000..2e5c93cd7 --- /dev/null +++ b/modules/completion/src/cpp/XMLSetFieldsGetter.hxx @@ -0,0 +1,56 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2013 - Scilab Enterprises - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#ifndef __XMLSETFIELDSGETTER_HXX__ +#define __XMLSETFIELDSGETTER_HXX__ + +#include +#include + +#include "FieldsGetter.hxx" +#include "XMLFieldsGetter.hxx" +#include "xmlObjects.h" + +extern "C" +{ +#include "MALLOC.h" +#ifdef _MSC_VER +#include "strdup_windows.h" +#endif +} + +using namespace org_modules_xml; + +namespace org_modules_completion +{ + +/** + * @file + * @author Calixte DENIZET + * + * Class to manage the retrievment of the fields name of a XML object + */ +class XMLSetFieldsGetter : public XMLFieldsGetter +{ + +public : + XMLSetFieldsGetter() { } + + virtual ~XMLSetFieldsGetter() { } + + virtual const char ** getFieldsName(const std::string & typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) const; + + static const char ** getFieldsName(const XMLNodeSet * set, char ** fieldPath, const int fieldPathLen, int * fieldsSize); +}; +} + +#endif diff --git a/modules/completion/src/cpp/getfields.cpp b/modules/completion/src/cpp/getfields.cpp new file mode 100755 index 000000000..5beda9a89 --- /dev/null +++ b/modules/completion/src/cpp/getfields.cpp @@ -0,0 +1,46 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2011 - DIGITEO - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +#include +#include "FieldsManager.hxx" +#include "XMLFieldsGetter.hxx" +#include "EOFieldsGetter.hxx" +#include "StructFieldsGetter.hxx" + +extern "C" +{ +#include "getfields.h" +} + +using namespace org_modules_completion; + +const char ** getFieldsForType(const char * typeName, int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + return FieldsManager::getFieldsForType(std::string(typeName), mlist, fieldPath, fieldPathLen, fieldsSize); +} + +const char ** getFields(int * mlist, char ** fieldPath, const int fieldPathLen, int * fieldsSize) +{ + return FieldsManager::getFields(mlist, fieldPath, fieldPathLen, fieldsSize); +} + +char ** getFieldPath(const char * _str, int * len) +{ + return FieldsManager::getFieldPath(_str, len); +} + +void initializeFieldsGetter() +{ + XMLFieldsGetter::initializeXML(); + EOFieldsGetter::initializeEO(); + FieldsManager::addFieldsGetter(std::string("st"), new StructFieldsGetter()); +} diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo new file mode 100755 index 000000000..2b929ebbf --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-EOFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-EOFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-FieldsManager.lo b/modules/completion/src/cpp/libscicompletion_algo_la-FieldsManager.lo new file mode 100755 index 000000000..63408659d --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-FieldsManager.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-FieldsManager.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-FieldsManager.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo new file mode 100755 index 000000000..4a2843ebd --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-HandleFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-HandleFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo new file mode 100755 index 000000000..21f36f90d --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-StructFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-StructFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo new file mode 100755 index 000000000..0aee2545e --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-UnknownMlistFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-UnknownMlistFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo new file mode 100755 index 000000000..0344d6b8b --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLAttrFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLAttrFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo new file mode 100755 index 000000000..dfc9fac35 --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLDocFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLDocFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo new file mode 100755 index 000000000..5759698d8 --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLElemFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLElemFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo new file mode 100755 index 000000000..1926bf4df --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo new file mode 100755 index 000000000..1cd16bc98 --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLListFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLListFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo new file mode 100755 index 000000000..664fd140e --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLNsFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLNsFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo b/modules/completion/src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo new file mode 100755 index 000000000..7e883eda1 --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-XMLSetFieldsGetter.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-XMLSetFieldsGetter.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/cpp/libscicompletion_algo_la-getfields.lo b/modules/completion/src/cpp/libscicompletion_algo_la-getfields.lo new file mode 100755 index 000000000..086b93216 --- /dev/null +++ b/modules/completion/src/cpp/libscicompletion_algo_la-getfields.lo @@ -0,0 +1,12 @@ +# src/cpp/libscicompletion_algo_la-getfields.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-getfields.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/java/org/scilab/modules/completion/AbstractSciCompletionWindow.java b/modules/completion/src/java/org/scilab/modules/completion/AbstractSciCompletionWindow.java new file mode 100755 index 000000000..42be1af73 --- /dev/null +++ b/modules/completion/src/java/org/scilab/modules/completion/AbstractSciCompletionWindow.java @@ -0,0 +1,447 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007-2008 - INRIA - Vincent COUVERT + * Copyright (C) 2010-2011 - Calixte DENIZET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +package org.scilab.modules.completion; + +import java.awt.BorderLayout; +import java.awt.Component; +import java.awt.Cursor; +import java.awt.Dimension; +import java.awt.Point; +import java.awt.event.FocusEvent; +import java.awt.event.FocusListener; +import java.awt.event.KeyEvent; +import java.awt.event.KeyListener; +import java.awt.event.MouseEvent; +import java.awt.event.MouseListener; +import java.awt.event.MouseMotionListener; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import javax.swing.AbstractListModel; +import javax.swing.JComponent; +import javax.swing.text.JTextComponent; +import javax.swing.JLabel; +import javax.swing.JList; +import javax.swing.JPanel; +import javax.swing.JScrollPane; + +import com.artenum.rosetta.ui.CompletionItemListCellRenderer; +import com.artenum.rosetta.interfaces.core.CompletionItem; +import com.artenum.rosetta.interfaces.core.InputParsingManager; +import com.artenum.rosetta.interfaces.ui.CompletionWindow; + +import org.scilab.modules.completion.Completion; +import org.scilab.modules.localization.Messages; + +/** + * Scilab completion window main class + * @author Vincent COUVERT + * @author Calixte DENIZET + */ +public abstract class AbstractSciCompletionWindow implements CompletionWindow, KeyListener, FocusListener, MouseMotionListener, MouseListener { + + private static final int WINDOW_WIDTH = 300; + private static final int WINDOW_HEIGHT = 100; + + protected JPanel window; + protected CompletionItemListModel model; + protected JList listUI; + protected JScrollPane scrollPane; + protected InputParsingManager inputParsingManager; + protected JComponent focusOutComponent; + + protected int currentCaretPosition; + + /** + * Default constructor + */ + public AbstractSciCompletionWindow() { + } + + /** + * @return the JTextComponent where the CompletionWindow will be drawn + */ + public abstract JTextComponent getTextComponent(); + + /** + * @return the list of the possibilities to complete + */ + public abstract List getCompletionItems(); + + /** + * Set the component that should take the focus when the completion window is hidden + * @param component the component to focus + * @see com.artenum.rosetta.interfaces.ui.CompletionWindow#setFocusOut(javax.swing.JComponent) + */ + public void setFocusOut(JComponent component) { + focusOutComponent = component; + } + + /** + * Set the input parsing manager associated to this completion window + * @param inputParsingManager the input parsing manager to set + * @see com.artenum.rosetta.interfaces.ui.CompletionWindow#setInputParsingManager(com.artenum.rosetta.interfaces.core.InputParsingManager) + */ + public void setInputParsingManager(InputParsingManager inputParsingManager) { + this.inputParsingManager = inputParsingManager; + } + + /** + * Set the parent component for the completion window + * @param component the parent component + * Caution, the component shouldn't be null otherwise the completion window + * will never get the focus + */ + public void setGraphicalContext(Component component) { + + /* List to display all completion items */ + model = new CompletionItemListModel(); + listUI = new JList(model); + listUI.setCellRenderer(new CompletionItemListCellRenderer()); + scrollPane = new JScrollPane(listUI, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); + + /* Utility to able the user to resize the window */ + JLabel windowResizeCorner = new JLabel("~", JLabel.CENTER); + windowResizeCorner.addMouseMotionListener(this); + scrollPane.setCorner(JScrollPane.LOWER_RIGHT_CORNER, windowResizeCorner); + + /* Completion window */ + window = new JPanel(new BorderLayout()); + window.add(scrollPane, BorderLayout.CENTER); + window.setSize(new Dimension(WINDOW_WIDTH, WINDOW_HEIGHT)); + window.setCursor(new Cursor(Cursor.DEFAULT_CURSOR)); + + /* Overide Listener */ + listUI.getInputMap().clear(); + scrollPane.getInputMap().clear(); + /* Item selection is available using the keyboard */ + listUI.addKeyListener(this); + /* Item selection is available using the mouse */ + listUI.addFocusListener(this); + listUI.addMouseListener(this); + + getTextComponent().add(window); + + setVisible(false); + } + + /** + * Make the completion window visible and update its content + * @param list list of items matching completion + * @param location position of the top left corner of the window + * @see com.artenum.rosetta.interfaces.ui.CompletionWindow#show(java.util.List, java.awt.Point) + */ + public abstract void show(List list, Point location); + + /** + * Get the character string selected by the user as a completion + * @return the character string + * @see com.artenum.rosetta.interfaces.ui.CompletionWindow#getCompletionResult() + */ + public String getCompletionResult() { + return ((CompletionItem) listUI.getSelectedValue()).getReturnValue(); + } + + /** + * Get type of the character string selected by the user as a completion + * @return the character string + */ + + public String getCompletionResultType() { + return ((CompletionItem) listUI.getSelectedValue()).getType(); + } + + /** + * Get the visibility status of the completion window + * @return true if the window is visible (false else) + */ + public boolean isVisible() { + return window.isVisible(); + } + + /** + * Set the visibility status of the completion window + * @param status true if the window is visible (false else) + */ + public void setVisible(boolean status) { + window.setVisible(status); + if (!status) { + focusOutComponent.grabFocus(); + } + } + /** + * List model which allow filter on completion item + * In Scilab, filter and sort are done by Scilab and have not to be done here + */ + protected static class CompletionItemListModel extends AbstractListModel { + private static final long serialVersionUID = 1L; + private List data; + private String filter; + + /** + * Default constructor + */ + public CompletionItemListModel() { + data = new ArrayList(); + } + + /** + * Get element in the data list + * @param index the index of the element to get + * @return the corresponding element + * @see javax.swing.ListModel#getElementAt(int) + */ + public Object getElementAt(int index) { + /* Filtering is done by Scilab */ + return data.get(index); + } + + /** + * Get the number of entries in the list + * @return the size + * @see javax.swing.ListModel#getSize() + */ + public int getSize() { + /* Filtering is done by Scilab */ + return data.size(); + } + + /** + * Set the filter to apply to the dictionnary + * @param filterToSet the filter to set + */ + public void setFilter(String filterToSet) { + + if ((filterToSet == null) || ((filterToSet != null) && (filterToSet.length() == 0))) { + filter = null; + } else { + filter = filterToSet; + } + fireContentsChanged(this, 0, getSize()); + } + + /** + * Update the list items + * @param list list of item to set to the list + * @param list + */ + public void updateData(List list) { + data.clear(); + data.addAll(list); + Collections.sort(data); + setFilter(null); + } + } + + /** + * Add the completed word in the TextComponent + * @param position where to append the completed word + */ + public void addCompletedWord(int position) { + String currentLine = inputParsingManager.getCommandLine(); + String lineBeforeCaret = currentLine.substring(0, position); + String lineAfterCaret = currentLine.substring(position); + + String stringToAdd = getCompletionResult(); + String stringToAddType = getCompletionResultType(); + + boolean typeStringIsFile = false; + + if (stringToAddType.equals(Messages.gettext("File or Directory"))) { + typeStringIsFile = true; + } + + String newLine = Completion.completelineforjava(lineBeforeCaret, stringToAdd, typeStringIsFile, lineAfterCaret); + + inputParsingManager.reset(); + inputParsingManager.append(newLine); + } + + /** + * Add the completed word in the TextComponent + * @param stringToAdd the string to add + * @param position where to append the completed word + */ + public void addCompletedWord(String stringToAdd, int position) { + String currentLine = inputParsingManager.getCommandLine(); + String lineBeforeCaret = currentLine.substring(0, position); + String lineAfterCaret = currentLine.substring(position); + + String newLine = Completion.completelineforjava(lineBeforeCaret, stringToAdd, false, lineAfterCaret); + + inputParsingManager.reset(); + inputParsingManager.append(newLine); + } + + /** + * Management of the key typing for the filtering + * @param e event + */ + public void keyPressed(KeyEvent e) { + if (e.getKeyCode() == KeyEvent.VK_ENTER) { + /* The user validates an entry in the list */ + + /* Add text to the input command view */ + if (listUI.getModel().getSize() != 0) { + addCompletedWord(currentCaretPosition); + } + + /* Hide the completion window and give the focus to the console */ + setVisible(false); + focusOutComponent.grabFocus(); + } else if (e.getKeyCode() == KeyEvent.VK_ESCAPE) { + /* The user want to exit from completion mode */ + + /* Hide the completion window and give the focus to the console */ + setVisible(false); + focusOutComponent.grabFocus(); + } else if (e.getKeyCode() == KeyEvent.VK_DOWN) { + /* The user want to select next item */ + + if (model.getSize() > 0) { + listUI.setSelectedIndex((listUI.getSelectedIndex()) % model.getSize()); + } + } else if (e.getKeyCode() == KeyEvent.VK_UP) { + /* The user want to select previous item */ + + if (model.getSize() > 0) { + listUI.setSelectedIndex((model.getSize() + listUI.getSelectedIndex()) % model.getSize()); + } + } else if (e.getKeyCode() == KeyEvent.VK_BACK_SPACE) { + /* Delete a character in Scilab input command view */ + if (inputParsingManager.getPartLevel(inputParsingManager.getCompletionLevel()) != null) { + // Remove a key in input command line + inputParsingManager.backspace(); + + // Display new completion list + Point location = inputParsingManager.getWindowCompletionLocation(); + this.show(getCompletionItems(), location); + listUI.setSelectedIndex(0); + } else { + /* Hide the completion window and give the focus to the console */ + setVisible(false); + focusOutComponent.grabFocus(); + } + } else if (e.getKeyCode() != KeyEvent.VK_TAB) { // IGNORE TAB KEYS BECAUSE ALREADY IN COMPLETION MODE + // Add a character in Scilab input command view + if (e.getKeyChar() != KeyEvent.CHAR_UNDEFINED) { + // Add a key in input command line + inputParsingManager.append(String.valueOf(e.getKeyChar())); + + // Display new completion list + Point location = inputParsingManager.getWindowCompletionLocation(); + this.show(getCompletionItems(), location); + listUI.setSelectedIndex(0); + } + } + } + + /** + * What to do when a key is released ? + * @param e event + */ + public void keyReleased(KeyEvent e) { + } + + /** + * What to do when a key is typed ? + * @param e event + */ + public void keyTyped(KeyEvent e) { + } + + /** + * What to do when the completion window gets the focus ? + * @param e event + */ + public void focusGained(FocusEvent e) { + } + + /** + * To support the auto hide when focus is lost + * @param e event + */ + public void focusLost(FocusEvent e) { + setVisible(false); + } + + /** + * To support the completion window resize + * @param e event + */ + public void mouseDragged(MouseEvent e) { + Point origine = window.getLocationOnScreen(); + Point destination = ((Component) e.getSource()).getLocationOnScreen(); + destination.x += e.getX(); + destination.y += e.getY(); + destination.translate(-origine.x, -origine.y); + window.setSize(destination.x, destination.y); + } + + /** + * What to do when the mouse is moved over the completion window ? + * @param e event + */ + public void mouseMoved(MouseEvent e) { + } + + /** + * What to do when a mouse button is clicked over the completion window ? + * @param e event + */ + public void mouseClicked(MouseEvent e) { + if (model.getSize() > 0) { + /* Select the list item under the mouse */ + listUI.setSelectedIndex((listUI.getSelectedIndex()) % model.getSize()); + + if (e.getClickCount() >= 2) { /* Double click = the user validates the item */ + addCompletedWord(currentCaretPosition); + + /* Hide the completion window and give the focus to the console */ + setVisible(false); + focusOutComponent.grabFocus(); + } + } + } + + /** + * What to do when the mouse enters the completion window ? + * @param e event + */ + public void mouseEntered(MouseEvent e) { + } + + /** + * What to do when the mouse exits over the completion window ? + * @param e event + */ + public void mouseExited(MouseEvent e) { + } + + /** + * What to do when a mouse button mouse is pressed over the completion window ? + * @param e event + */ + public void mousePressed(MouseEvent e) { + } + + /** + * What to do when a mouse button mouse is released over the completion window ? + * @param e event + */ + public void mouseReleased(MouseEvent e) { + window.validate(); + } +} diff --git a/modules/completion/src/java/org/scilab/modules/completion/Completion.java b/modules/completion/src/java/org/scilab/modules/completion/Completion.java new file mode 100755 index 000000000..be32fddda --- /dev/null +++ b/modules/completion/src/java/org/scilab/modules/completion/Completion.java @@ -0,0 +1,149 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 2.0.7 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +package org.scilab.modules.completion; + + +/** + * @author Allan CORNET + * @copyright INRIA 2007 + */ +public class Completion { + + /** + * Constructor + */ + protected Completion() { + throw new UnsupportedOperationException(); + } + + /** + * completion function on all types for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchAllDictionaries(String somechars) { + return CompletionJNI.searchAllDictionaries(somechars); + } + + + /** + * completion function on Functions for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchFunctionsDictionary(String somechars) { + return CompletionJNI.searchFunctionsDictionary(somechars); + } + + + /** + * completion function on command words for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchCommandsDictionary(String somechars) { + return CompletionJNI.searchCommandsDictionary(somechars); + } + + + /** + * completion function on Macros in libraries for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchMacrosDictionary(String somechars) { + return CompletionJNI.searchMacrosDictionary(somechars); + } + + + /** + * completion function on Variables for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchVariablesDictionary(String somechars) { + return CompletionJNI.searchVariablesDictionary(somechars); + } + + + /** + * completion function on files for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchFilesDictionary(String somechars) { + return CompletionJNI.searchFilesDictionary(somechars); + } + + + /** + * completion function on files for scilab + * @param[in] the line before the caret + * @param[in] the part + * @return an array of chars + */ + public static String[] searchFieldsDictionary(String lineBeforeCaret, String pattern) { + return CompletionJNI.searchFieldsDictionary(lineBeforeCaret, pattern); + } + + + /** + * completion handle graphics properties for scilab + * @param[in] somechars first characters of a word + * @return an array of chars + */ + public static String[] searchHandleGraphicsPropertiesDictionary(String somechars) { + return CompletionJNI.searchHandleGraphicsPropertiesDictionary(somechars); + } + + + /** + * pre parsing current line to search with completion + * @param[in] current line + * @return word to find with completion + */ + public static String getPartLevel(String line) { + return CompletionJNI.getPartLevel(line); + } + + + /** + * pre parsing current line to search with completion (file) + * @param[in] current line + * @return word to find with completion + */ + public static String getFilePartLevel(String line) { + return CompletionJNI.getFilePartLevel(line); + } + + + /** + * Get common part to a array + * @param[in] string array + * @param[in] size of string array + * @return common part + */ + public static String getCommonPart(String[] dictionnary, int sizeDictionnary) { + return CompletionJNI.getCommonPart(dictionnary, sizeDictionnary); + } + + + /** + * complete line + * @param[in] current line (before caret) + * @param[in] line to add + * @param[in] type of line to add + * @param[in] line after caret + * @return modified line + */ + public static String completelineforjava(String currentLine, String stringToAdd, boolean isFile, String postCaretLine) { + return CompletionJNI.completelineforjava(currentLine, stringToAdd, isFile, postCaretLine); + } + +} diff --git a/modules/completion/src/java/org/scilab/modules/completion/CompletionJNI.java b/modules/completion/src/java/org/scilab/modules/completion/CompletionJNI.java new file mode 100755 index 000000000..358657ff2 --- /dev/null +++ b/modules/completion/src/java/org/scilab/modules/completion/CompletionJNI.java @@ -0,0 +1,53 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 2.0.7 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +package org.scilab.modules.completion; + + +/* It is generated code. Disable checkstyle */ +//CHECKSTYLE:OFF +/** + * @author Allan CORNET + * @copyright INRIA 2007 + */ +public class CompletionJNI { + + /** + * Constructor + */ + protected CompletionJNI() { + throw new UnsupportedOperationException(); + } + + static { + try { + System.loadLibrary("scicompletion"); + } catch (SecurityException e) { + System.err.println("A security manager exists and does not allow the loading of the specified dynamic library."); + System.err.println(e.getLocalizedMessage()); + e.printStackTrace(System.err); + } catch (UnsatisfiedLinkError e) { + System.err.println("The native library scicompletion does not exist or cannot be found."); + System.err.println(e.getLocalizedMessage()); + e.printStackTrace(System.err); + } + } + + public final static native String[] searchAllDictionaries(String jarg1); + public final static native String[] searchFunctionsDictionary(String jarg1); + public final static native String[] searchCommandsDictionary(String jarg1); + public final static native String[] searchMacrosDictionary(String jarg1); + public final static native String[] searchVariablesDictionary(String jarg1); + public final static native String[] searchFilesDictionary(String jarg1); + public final static native String[] searchFieldsDictionary(String jarg1, String jarg2); + public final static native String[] searchHandleGraphicsPropertiesDictionary(String jarg1); + public final static native String getPartLevel(String jarg1); + public final static native String getFilePartLevel(String jarg1); + public final static native String getCommonPart(String[] jarg1, int jarg2); + public final static native String completelineforjava(String jarg1, String jarg2, boolean jarg3, String jarg4); +} diff --git a/modules/completion/src/jni/.deps/.dirstamp b/modules/completion/src/jni/.deps/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/jni/.deps/libscicompletion_algo_la-Completion_wrap.Plo b/modules/completion/src/jni/.deps/libscicompletion_algo_la-Completion_wrap.Plo new file mode 100755 index 000000000..44abd3c88 --- /dev/null +++ b/modules/completion/src/jni/.deps/libscicompletion_algo_la-Completion_wrap.Plo @@ -0,0 +1,147 @@ +src/jni/libscicompletion_algo_la-Completion_wrap.lo: \ + src/jni/Completion_wrap.c /usr/include/stdc-predef.h \ + /usr/lib/jvm/java-8-openjdk-amd64/include/jni.h /usr/include/stdio.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/libio.h \ + /usr/include/_G_config.h /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/lib/jvm/java-8-openjdk-amd64/include/linux/jni_md.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/sigset.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/sys/sysmacros.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ + /usr/include/x86_64-linux-gnu/bits/string2.h \ + /usr/include/x86_64-linux-gnu/bits/string3.h \ + src/jni/../c/completion_wrap_java.h \ + src/jni/../c/completeLine_wrap_java.h ../../modules/core/includes/BOOL.h \ + includes/getCommonPart.h includes/dynlib_completion.h \ + includes/getPartLine.h ../../modules/core/includes/MALLOC.h \ + ../../modules/core/includes/sci_mem_alloc.h + +/usr/include/stdc-predef.h: + +/usr/lib/jvm/java-8-openjdk-amd64/include/jni.h: + +/usr/include/stdio.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/libio.h: + +/usr/include/_G_config.h: + +/usr/include/wchar.h: + +/usr/lib/gcc/x86_64-linux-gnu/5/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/usr/include/x86_64-linux-gnu/bits/sys_errlist.h: + +/usr/include/x86_64-linux-gnu/bits/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/stdio2.h: + +/usr/lib/jvm/java-8-openjdk-amd64/include/linux/jni_md.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap-16.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/time.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/x86_64-linux-gnu/bits/sigset.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/select2.h: + +/usr/include/x86_64-linux-gnu/sys/sysmacros.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib.h: + +/usr/include/string.h: + +/usr/include/xlocale.h: + +/usr/include/x86_64-linux-gnu/bits/string.h: + +/usr/include/x86_64-linux-gnu/bits/string2.h: + +/usr/include/x86_64-linux-gnu/bits/string3.h: + +src/jni/../c/completion_wrap_java.h: + +src/jni/../c/completeLine_wrap_java.h: + +../../modules/core/includes/BOOL.h: + +includes/getCommonPart.h: + +includes/dynlib_completion.h: + +includes/getPartLine.h: + +../../modules/core/includes/MALLOC.h: + +../../modules/core/includes/sci_mem_alloc.h: diff --git a/modules/completion/src/jni/.dirstamp b/modules/completion/src/jni/.dirstamp new file mode 100755 index 000000000..e69de29bb diff --git a/modules/completion/src/jni/.libs/libscicompletion_algo_la-Completion_wrap.o b/modules/completion/src/jni/.libs/libscicompletion_algo_la-Completion_wrap.o new file mode 100755 index 000000000..0e2ef806f Binary files /dev/null and b/modules/completion/src/jni/.libs/libscicompletion_algo_la-Completion_wrap.o differ diff --git a/modules/completion/src/jni/Completion.i b/modules/completion/src/jni/Completion.i new file mode 100755 index 000000000..759c6660a --- /dev/null +++ b/modules/completion/src/jni/Completion.i @@ -0,0 +1,205 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +/* Completion.i */ +/** + * Windows: swig -java -package org.scilab.modules.completion -outdir ../java/org/scilab/modules/completion/ Completion.i + * Other: Use the option --enable-build-swig to the configure +*/ +%module Completion + +%{ +#include "../c/completion_wrap_java.h" +#include "../c/completeLine_wrap_java.h" +#include "getCommonPart.h" +#include "getPartLine.h" +#include "MALLOC.h" +%} + +%include "../../../jvm/src/jni/scilab_typemaps.i" + +/* JavaDoc for CompletioJNI class */ +%pragma(java) jniclassclassmodifiers=%{ +/* It is generated code. Disable checkstyle */ +//CHECKSTYLE:OFF + /** + * @author Allan CORNET + * @copyright INRIA 2007 + */ +public class%} + +/* Constructor for CompletionJNI class */ +%pragma(java) jniclasscode=" + /** + * Constructor + */ + protected CompletionJNI() { + throw new UnsupportedOperationException(); + }"; + +/* static load of library */ +%pragma(java) jniclasscode=%{ + static { + try { + System.loadLibrary("scicompletion"); + } catch (SecurityException e) { + System.err.println("A security manager exists and does not allow the loading of the specified dynamic library."); + System.err.println(e.getLocalizedMessage()); + e.printStackTrace(System.err); + } catch (UnsatisfiedLinkError e) { + System.err.println("The native library scicompletion does not exist or cannot be found."); + System.err.println(e.getLocalizedMessage()); + e.printStackTrace(System.err); + } + } +%} + +/* JavaDoc for Completion class */ +%pragma(java) moduleclassmodifiers=" + /** + * @author Allan CORNET + * @copyright INRIA 2007 + */ +public class"; + +/* Constructor for Completion class */ +%pragma(java) modulecode=" + /** + * Constructor + */ + protected Completion() { + throw new UnsupportedOperationException(); + }"; + +/* JavaDoc */ +%javamethodmodifiers searchAllDictionaries(char *somechars) " +/** +* completion function on all types for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchAllDictionaries(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchFunctionsDictionary(char *somechars) " +/** +* completion function on Functions for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchFunctionsDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchCommandsDictionary(char *somechars) " +/** +* completion function on command words for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchCommandsDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchMacrosDictionary(char *somechars) " +/** +* completion function on Macros in libraries for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchMacrosDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchVariablesDictionary(char *somechars) " +/** +* completion function on Variables for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchVariablesDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchFilesDictionary(char *somechars) " +/** +* completion function on files for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchFilesDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers searchFieldsDictionary(char *lineBeforeCaret, char *pattern) " +/** +* completion function on files for scilab +* @param[in] the line before the caret +* @param[in] the part +* @return an array of chars +*/ +public"; +char **searchFieldsDictionary(char *lineBeforeCaret, char *pattern); + +/* JavaDoc */ +%javamethodmodifiers searchHandleGraphicsPropertiesDictionary(char *somechars) " +/** +* completion handle graphics properties for scilab +* @param[in] somechars first characters of a word +* @return an array of chars +*/ +public"; +char **searchHandleGraphicsPropertiesDictionary(char *somechars); + +/* JavaDoc */ +%javamethodmodifiers getPartLevel(char *line) " +/** +* pre parsing current line to search with completion +* @param[in] current line +* @return word to find with completion +*/ +public"; +char *getPartLevel(char *line); + +/* JavaDoc */ +%javamethodmodifiers getFilePartLevel(char *line) " +/** +* pre parsing current line to search with completion (file) +* @param[in] current line +* @return word to find with completion +*/ +public"; +char *getFilePartLevel(char *line); + +/* JavaDoc */ +%javamethodmodifiers getCommonPart(char **dictionnary, int sizeDictionnary) " +/** +* Get common part to a array +* @param[in] string array +* @param[in] size of string array +* @return common part +*/ +public"; +char *getCommonPart(char **dictionnary, int sizeDictionnary); + +/* JavaDoc */ +%javamethodmodifiers completelineforjava(char *currentLine, char *stringToAdd, BOOL isFile, char *postCaretLine) " +/** +* complete line +* @param[in] current line (before caret) +* @param[in] line to add +* @param[in] type of line to add +* @param[in] line after caret +* @return modified line +*/ +public"; +char *completelineforjava(char *currentLine,char *stringToAdd,BOOL isFile, char *postCaretLine); diff --git a/modules/completion/src/jni/Completion_wrap.c b/modules/completion/src/jni/Completion_wrap.c new file mode 100755 index 000000000..fbf19e99e --- /dev/null +++ b/modules/completion/src/jni/Completion_wrap.c @@ -0,0 +1,683 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 2.0.7 + * + * This file is not intended to be easily readable and contains a number of + * coding conventions designed to improve portability and efficiency. Do not make + * changes to this file unless you know what you are doing--modify the SWIG + * interface file instead. + * ----------------------------------------------------------------------------- */ + +#define SWIGJAVA + +/* ----------------------------------------------------------------------------- + * This section contains generic SWIG labels for method/variable + * declarations/attributes, and other compiler dependent labels. + * ----------------------------------------------------------------------------- */ + +/* template workaround for compilers that cannot correctly implement the C++ standard */ +#ifndef SWIGTEMPLATEDISAMBIGUATOR +# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) +# define SWIGTEMPLATEDISAMBIGUATOR template +# elif defined(__HP_aCC) +/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ +/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ +# define SWIGTEMPLATEDISAMBIGUATOR template +# else +# define SWIGTEMPLATEDISAMBIGUATOR +# endif +#endif + +/* inline attribute */ +#ifndef SWIGINLINE +# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) +# define SWIGINLINE inline +# else +# define SWIGINLINE +# endif +#endif + +/* attribute recognised by some compilers to avoid 'unused' warnings */ +#ifndef SWIGUNUSED +# if defined(__GNUC__) +# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +# elif defined(__ICC) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +#endif + +#ifndef SWIG_MSC_UNSUPPRESS_4505 +# if defined(_MSC_VER) +# pragma warning(disable : 4505) /* unreferenced local function has been removed */ +# endif +#endif + +#ifndef SWIGUNUSEDPARM +# ifdef __cplusplus +# define SWIGUNUSEDPARM(p) +# else +# define SWIGUNUSEDPARM(p) p SWIGUNUSED +# endif +#endif + +/* internal SWIG method */ +#ifndef SWIGINTERN +# define SWIGINTERN static SWIGUNUSED +#endif + +/* internal inline SWIG method */ +#ifndef SWIGINTERNINLINE +# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE +#endif + +/* exporting methods */ +#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +# ifndef GCC_HASCLASSVISIBILITY +# define GCC_HASCLASSVISIBILITY +# endif +#endif + +#ifndef SWIGEXPORT +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# if defined(STATIC_LINKED) +# define SWIGEXPORT +# else +# define SWIGEXPORT __declspec(dllexport) +# endif +# else +# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) +# define SWIGEXPORT __attribute__ ((visibility("default"))) +# else +# define SWIGEXPORT +# endif +# endif +#endif + +/* calling conventions for Windows */ +#ifndef SWIGSTDCALL +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# define SWIGSTDCALL __stdcall +# else +# define SWIGSTDCALL +# endif +#endif + +/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ +#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) +# define _CRT_SECURE_NO_DEPRECATE +#endif + +/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ +#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) +# define _SCL_SECURE_NO_DEPRECATE +#endif + + + +/* Fix for jlong on some versions of gcc on Windows */ +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) + typedef long long __int64; +#endif + +/* Fix for jlong on 64-bit x86 Solaris */ +#if defined(__x86_64) +# ifdef _LP64 +# undef _LP64 +# endif +#endif + +#include +#include +#include + + +/* Support for throwing Java exceptions */ +typedef enum { + SWIG_JavaOutOfMemoryError = 1, + SWIG_JavaIOException, + SWIG_JavaRuntimeException, + SWIG_JavaIndexOutOfBoundsException, + SWIG_JavaArithmeticException, + SWIG_JavaIllegalArgumentException, + SWIG_JavaNullPointerException, + SWIG_JavaDirectorPureVirtual, + SWIG_JavaUnknownError +} SWIG_JavaExceptionCodes; + +typedef struct { + SWIG_JavaExceptionCodes code; + const char *java_exception; +} SWIG_JavaExceptions_t; + + +static void SWIGUNUSED SWIG_JavaThrowException(JNIEnv *jenv, SWIG_JavaExceptionCodes code, const char *msg) { + jclass excep; + static const SWIG_JavaExceptions_t java_exceptions[] = { + { SWIG_JavaOutOfMemoryError, "java/lang/OutOfMemoryError" }, + { SWIG_JavaIOException, "java/io/IOException" }, + { SWIG_JavaRuntimeException, "java/lang/RuntimeException" }, + { SWIG_JavaIndexOutOfBoundsException, "java/lang/IndexOutOfBoundsException" }, + { SWIG_JavaArithmeticException, "java/lang/ArithmeticException" }, + { SWIG_JavaIllegalArgumentException, "java/lang/IllegalArgumentException" }, + { SWIG_JavaNullPointerException, "java/lang/NullPointerException" }, + { SWIG_JavaDirectorPureVirtual, "java/lang/RuntimeException" }, + { SWIG_JavaUnknownError, "java/lang/UnknownError" }, + { (SWIG_JavaExceptionCodes)0, "java/lang/UnknownError" } + }; + const SWIG_JavaExceptions_t *except_ptr = java_exceptions; + + while (except_ptr->code != code && except_ptr->code) + except_ptr++; + + (*jenv)->ExceptionClear(jenv); + excep = (*jenv)->FindClass(jenv, except_ptr->java_exception); + if (excep) + (*jenv)->ThrowNew(jenv, excep, msg); +} + + +/* Contract support */ + +#define SWIG_contract_assert(nullreturn, expr, msg) if (!(expr)) {SWIG_JavaThrowException(jenv, SWIG_JavaIllegalArgumentException, msg); return nullreturn; } else + + +#include "../c/completion_wrap_java.h" +#include "../c/completeLine_wrap_java.h" +#include "getCommonPart.h" +#include "getPartLine.h" +#include "MALLOC.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchAllDictionaries(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchAllDictionaries(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchFunctionsDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchFunctionsDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchCommandsDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchCommandsDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchMacrosDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchMacrosDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchVariablesDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchVariablesDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchFilesDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchFilesDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchFieldsDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1, jstring jarg2) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char *arg2 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + arg2 = 0; + if (jarg2) { + arg2 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg2, 0); + if (!arg2) return 0; + } + result = (char **)searchFieldsDictionary(arg1,arg2); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + if (arg2) (*jenv)->ReleaseStringUTFChars(jenv, jarg2, (const char *)arg2); + return jresult; +} + + +SWIGEXPORT jobjectArray JNICALL Java_org_scilab_modules_completion_CompletionJNI_searchHandleGraphicsPropertiesDictionary(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jobjectArray jresult = 0 ; + char *arg1 = (char *) 0 ; + char **result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char **)searchHandleGraphicsPropertiesDictionary(arg1); + { + if (result != NULL) + { + int i; + int len=0; + jstring temp_string; + const jclass clazz = (*jenv)->FindClass(jenv, "java/lang/String"); + + while (result[len]) len++; + jresult = (*jenv)->NewObjectArray(jenv, len, clazz, NULL); + /* exception checking omitted */ + + for (i=0; iNewStringUTF(jenv, result[i]); + (*jenv)->SetObjectArrayElement(jenv, jresult, i, temp_string); + (*jenv)->DeleteLocalRef(jenv, temp_string); + FREE(result[i]); + result[i] = NULL; + } + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jstring JNICALL Java_org_scilab_modules_completion_CompletionJNI_getPartLevel(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jstring jresult = 0 ; + char *arg1 = (char *) 0 ; + char *result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char *)getPartLevel(arg1); + { + if (result != NULL) + { + jresult = (*jenv)->NewStringUTF(jenv, (const char *)result); + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jstring JNICALL Java_org_scilab_modules_completion_CompletionJNI_getFilePartLevel(JNIEnv *jenv, jclass jcls, jstring jarg1) { + jstring jresult = 0 ; + char *arg1 = (char *) 0 ; + char *result = 0 ; + + (void)jenv; + (void)jcls; + arg1 = 0; + if (jarg1) { + arg1 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + result = (char *)getFilePartLevel(arg1); + { + if (result != NULL) + { + jresult = (*jenv)->NewStringUTF(jenv, (const char *)result); + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + return jresult; +} + + +SWIGEXPORT jstring JNICALL Java_org_scilab_modules_completion_CompletionJNI_getCommonPart(JNIEnv *jenv, jclass jcls, jobjectArray jarg1, jint jarg2) { + jstring jresult = 0 ; + char **arg1 = (char **) 0 ; + int arg2 ; + jint size1 ; + char *result = 0 ; + + (void)jenv; + (void)jcls; + { + int i = 0; + size1 = (*jenv)->GetArrayLength(jenv, jarg1); + arg1 = (char **) MALLOC((size1+1)*sizeof(char *)); + /* make a copy of each string */ + for (i = 0; iGetObjectArrayElement(jenv, jarg1, i); + const char * c_string = (*jenv)->GetStringUTFChars(jenv, j_string, 0); + arg1[i] = MALLOC((strlen(c_string)+1)*sizeof(const char *)); + strcpy(arg1[i], c_string); + (*jenv)->ReleaseStringUTFChars(jenv, j_string, c_string); + (*jenv)->DeleteLocalRef(jenv, j_string); + } + arg1[i] = 0; + } + arg2 = (int)jarg2; + result = (char *)getCommonPart(arg1,arg2); + { + if (result != NULL) + { + jresult = (*jenv)->NewStringUTF(jenv, (const char *)result); + FREE(result); + result = NULL; + } + } + { + int i; + for (i=0; iGetStringUTFChars(jenv, jarg1, 0); + if (!arg1) return 0; + } + arg2 = 0; + if (jarg2) { + arg2 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg2, 0); + if (!arg2) return 0; + } + { + if (jarg3 == JNI_TRUE) arg3 = TRUE; + else arg3 = FALSE; + } + arg4 = 0; + if (jarg4) { + arg4 = (char *)(*jenv)->GetStringUTFChars(jenv, jarg4, 0); + if (!arg4) return 0; + } + result = (char *)completelineforjava(arg1,arg2,arg3,arg4); + { + if (result != NULL) + { + jresult = (*jenv)->NewStringUTF(jenv, (const char *)result); + FREE(result); + result = NULL; + } + } + if (arg1) (*jenv)->ReleaseStringUTFChars(jenv, jarg1, (const char *)arg1); + if (arg2) (*jenv)->ReleaseStringUTFChars(jenv, jarg2, (const char *)arg2); + if (arg4) (*jenv)->ReleaseStringUTFChars(jenv, jarg4, (const char *)arg4); + return jresult; +} + + +#ifdef __cplusplus +} +#endif + diff --git a/modules/completion/src/jni/libscicompletion_algo_la-Completion_wrap.lo b/modules/completion/src/jni/libscicompletion_algo_la-Completion_wrap.lo new file mode 100755 index 000000000..e0351f980 --- /dev/null +++ b/modules/completion/src/jni/libscicompletion_algo_la-Completion_wrap.lo @@ -0,0 +1,12 @@ +# src/jni/libscicompletion_algo_la-Completion_wrap.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libscicompletion_algo_la-Completion_wrap.o' + +# Name of the non-PIC object +non_pic_object=none + diff --git a/modules/completion/src/nocompletion/nocompletion.c b/modules/completion/src/nocompletion/nocompletion.c new file mode 100755 index 000000000..63bfdf8d7 --- /dev/null +++ b/modules/completion/src/nocompletion/nocompletion.c @@ -0,0 +1,22 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007 - INRIA - Allan CORNET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ +#include "completion.h" +#include "Scierror.h" +#include "localization.h" +#include "gw_completion.h" +/*--------------------------------------------------------------------------*/ +int gw_completion(void) +{ + Scierror(999, _("Scilab completion module not installed.\n")); + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/src/nocompletion/nocompletion.rc b/modules/completion/src/nocompletion/nocompletion.rc new file mode 100755 index 000000000..55f86eac6 --- /dev/null +++ b/modules/completion/src/nocompletion/nocompletion.rc @@ -0,0 +1,97 @@ +// Microsoft Visual C++ generated resource script. +// + + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +//#include "afxres.h" +#define APSTUDIO_HIDDEN_SYMBOLS +#include "windows.h" +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// French (France) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) +#ifdef _WIN32 +LANGUAGE LANG_FRENCH, SUBLANG_FRENCH +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 5,5,2,0 + PRODUCTVERSION 5,5,2,0 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x0L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040c04b0" + BEGIN + VALUE "FileDescription", "nocompletion module" + VALUE "FileVersion", "5, 5, 2, 0" + VALUE "InternalName", "nocompletion module" + VALUE "LegalCopyright", "Copyright (C) 2017" + VALUE "OriginalFilename", "nocompletion.dll" + VALUE "ProductName", " nocompletion" + VALUE "ProductVersion", "5, 5, 2, 0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x40c, 1200 + END +END + +#endif // French (France) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/modules/completion/src/nocompletion/nocompletion.vcxproj b/modules/completion/src/nocompletion/nocompletion.vcxproj new file mode 100755 index 000000000..59f0d148e --- /dev/null +++ b/modules/completion/src/nocompletion/nocompletion.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {D1586C83-3F16-467B-85C6-6A12A08CCB8D} + nocompletion + Win32Proj + + + + DynamicLibrary + MultiByte + false + v110 + + + DynamicLibrary + MultiByte + v110 + + + DynamicLibrary + MultiByte + false + v110 + + + DynamicLibrary + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + $(SolutionDir)bin\ + $(ProjectDir)$(Configuration)\ + false + + + + Disabled + ../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../includes;../../../../libs/intl;../../../api_scilab/includes;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_DEPRECATE;FORDLL;_DEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + + + ../../../../bin/libintl.lib;%(AdditionalDependencies) + $(SolutionDir)bin\$(ProjectName).dll + true + Windows + $(SolutionDir)bin\$(ProjectName).lib + MachineX86 + true + false + + + + + X64 + + + Disabled + ../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../includes;../../../../libs/intl;../../../api_scilab/includes;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_DEPRECATE;FORDLL;_DEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + + + ../../../../bin/libintl.lib;%(AdditionalDependencies) + $(SolutionDir)bin\$(ProjectName).dll + true + Windows + $(SolutionDir)bin\$(ProjectName).lib + MachineX64 + true + false + + + + + Speed + false + ../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../includes;../../../../libs/intl;../../../api_scilab/includes;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_DEPRECATE;FORDLL;NDEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + Level3 + true + + + ../../../../bin/libintl.lib;%(AdditionalDependencies) + $(SolutionDir)bin\$(ProjectName).dll + false + Windows + true + true + $(SolutionDir)bin\$(ProjectName).lib + MachineX86 + true + false + + + + + X64 + + + Speed + false + ../../../core/includes;../../../output_stream/includes;../../../localization/includes;../../includes;../../../../libs/intl;../../../api_scilab/includes;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_DEPRECATE;FORDLL;NDEBUG;_WINDOWS;_USRDLL;COMPLETION_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + Level3 + true + + + ../../../../bin/libintl.lib;%(AdditionalDependencies) + $(SolutionDir)bin\$(ProjectName).dll + false + Windows + true + true + $(SolutionDir)bin\$(ProjectName).lib + MachineX64 + true + false + + + + + + + + + + + + + + + {3170e4c2-1173-4264-a222-7ee8ccb3ddf7} + false + + + {ecffeb0c-1eda-45ee-9a10-b18143852e17} + false + + + {a5911cd7-f8e8-440c-a23e-4843a0636f3a} + false + + + + + + \ No newline at end of file diff --git a/modules/completion/src/nocompletion/nocompletion.vcxproj.filters b/modules/completion/src/nocompletion/nocompletion.vcxproj.filters new file mode 100755 index 000000000..ef06ec9ab --- /dev/null +++ b/modules/completion/src/nocompletion/nocompletion.vcxproj.filters @@ -0,0 +1,38 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + {871b4e56-b56f-40fd-8143-4bd6132b4964} + + + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/modules/completion/tests/nonreg_tests/bug_10982.dia.ref b/modules/completion/tests/nonreg_tests/bug_10982.dia.ref new file mode 100755 index 000000000..fb5cd2f85 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_10982.dia.ref @@ -0,0 +1,45 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2012 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- JAVA NOT MANDATORY --> +// +// <-- Non-regression test for bug 10982 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=10982 +// +// <-- Short Description --> +// Completion failed when space are used before the command. +// +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +REF = 'cd cudascilab/sci_gateway/'; +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, REF); +REF = "~/Downl"; +currentline = 'ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); +currentline = 'out=ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); +currentline = 'out =ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); +currentline = 'out = ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); +REF = 'c:\Program files'; +currentline = ' cd c:\Program files'; +r = getfilepartlevel(currentline); +REF = 'c:\'; +currentline = 'for s=ls(""c:\'; +r = getfilepartlevel(currentline); diff --git a/modules/completion/tests/nonreg_tests/bug_10982.tst b/modules/completion/tests/nonreg_tests/bug_10982.tst new file mode 100755 index 000000000..aad867d71 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_10982.tst @@ -0,0 +1,53 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2012 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- JAVA NOT MANDATORY --> +// +// <-- Non-regression test for bug 10982 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=10982 +// +// <-- Short Description --> +// Completion failed when space are used before the command. +// + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +REF = 'cd cudascilab/sci_gateway/'; +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, REF); + +REF = "~/Downl"; +currentline = 'ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); + +currentline = 'out=ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); + +currentline = 'out =ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); + +currentline = 'out = ls(""~/Downl'; +r = getfilepartlevel(currentline); +assert_checkequal(r, REF); + +REF = 'c:\Program files'; +currentline = ' cd c:\Program files'; +r = getfilepartlevel(currentline); + +REF = 'c:\'; +currentline = 'for s=ls(""c:\'; +r = getfilepartlevel(currentline); diff --git a/modules/completion/tests/nonreg_tests/bug_12393.dia.ref b/modules/completion/tests/nonreg_tests/bug_12393.dia.ref new file mode 100755 index 000000000..dfdf71375 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_12393.dia.ref @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- JAVA NOT MANDATORY --> +// +// <-- Non-regression test for bug 10393 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=12393 +// +// <-- Short Description --> +// Replacment by common part during completion does not work +ilib_verbose(0); +ierr = exec(SCI + "/modules/completion/tests/utilities/build_primitives.sce", .. + "errcatch", -1); +assert_checkequal(ierr, 0); +ierr = exec(TMPDIR + "/completion/loader.sce", "errcatch", -1); +assert_checkequal(ierr, 0); +// Suggested words for 'setdefau' are 'setdefaultlanguage', 'setDefaultColor' +// We must replace 'setdefau' by common part of this words: 'set' +currentline = 'setdefau'; +r = completeline('setdefau', 'set', getfilepartlevel(currentline), .. + getpartlevel(currentline), %t); +assert_checkequal(r, 'set'); diff --git a/modules/completion/tests/nonreg_tests/bug_12393.tst b/modules/completion/tests/nonreg_tests/bug_12393.tst new file mode 100755 index 000000000..410743ff4 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_12393.tst @@ -0,0 +1,30 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- JAVA NOT MANDATORY --> +// +// <-- Non-regression test for bug 10393 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=12393 +// +// <-- Short Description --> +// During completion replacment by common part of suggested words does not work + +ilib_verbose(0); +ierr = exec(SCI + "/modules/completion/tests/utilities/build_primitives.sce", .. + "errcatch", -1); +assert_checkequal(ierr, 0); +ierr = exec(TMPDIR + "/completion/loader.sce", "errcatch", -1); +assert_checkequal(ierr, 0); + +// Suggested words for 'setdefau' are 'setdefaultlanguage', 'setDefaultColor' +// We must replace 'setdefau' by common part of this words: 'set' +currentline = 'setdefau'; +r = completeline('setdefau', 'set', getfilepartlevel(currentline), .. + getpartlevel(currentline), %t); +assert_checkequal(r, 'set'); diff --git a/modules/completion/tests/nonreg_tests/bug_2848.dia.ref b/modules/completion/tests/nonreg_tests/bug_2848.dia.ref new file mode 100755 index 000000000..b096732dc --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_2848.dia.ref @@ -0,0 +1,44 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - INRIA - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +// <-- Non-regression test for bug 2848 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=2848 +// +// <-- Short Description --> +// When using the TAB key for completion in the console, after using once a Scilab +// macro, its name appears twice in the completion list: as a macro and as a variable. +[a, b, c, d] = completion("with"); +assert_checkequal(c, []); +with_tk(); +[a, b, c, d]=completion("with"); +assert_checkequal(c, []); +clear with_tk +[a, b, c, d]=completion("with"); +assert_checkequal(c, []); +with_tk(); +function x = with_foo(y, z) + x = y + z; +endfunction +[a, b, c, d] = completion("with"); +ref_a = ["with_module"]; +ref_b = []; +ref_c = []; +ref_d = ["with_foo"; .. +"with_javasci"; .. +"with_macros_source"; .. +"with_modelica_compiler"; .. +"with_tk"]; +assert_checkequal(a, ref_a); +assert_checkequal(b, ref_b); +assert_checkequal(c, ref_c); +assert_checkequal(d, ref_d); +clear with_tk +clear with_foo +[a,b,c,d] = completion("with"); +assert_checkequal(c, []); diff --git a/modules/completion/tests/nonreg_tests/bug_2848.tst b/modules/completion/tests/nonreg_tests/bug_2848.tst new file mode 100755 index 000000000..7a159f77f --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_2848.tst @@ -0,0 +1,56 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - INRIA - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- CLI SHELL MODE --> + +// <-- Non-regression test for bug 2848 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=2848 +// +// <-- Short Description --> +// When using the TAB key for completion in the console, after using once a Scilab +// macro, its name appears twice in the completion list: as a macro and as a variable. + + +[a, b, c, d] = completion("with"); +assert_checkequal(c, []); + +with_tk(); +[a, b, c, d]=completion("with"); +assert_checkequal(c, []); + +clear with_tk +[a, b, c, d]=completion("with"); +assert_checkequal(c, []); + +with_tk(); + +function x = with_foo(y, z) + x = y + z; +endfunction + +[a, b, c, d] = completion("with"); +ref_a = ["with_module"]; +ref_b = []; +ref_c = []; +ref_d = ["with_foo"; .. +"with_javasci"; .. +"with_macros_source"; .. +"with_modelica_compiler"; .. +"with_tk"]; + +assert_checkequal(a, ref_a); +assert_checkequal(b, ref_b); +assert_checkequal(c, ref_c); +assert_checkequal(d, ref_d); + +clear with_tk +clear with_foo + +[a,b,c,d] = completion("with"); +assert_checkequal(c, []); diff --git a/modules/completion/tests/nonreg_tests/bug_3051.dia.ref b/modules/completion/tests/nonreg_tests/bug_3051.dia.ref new file mode 100755 index 000000000..463b9597f --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3051.dia.ref @@ -0,0 +1,35 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3051 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3051 +// +// <-- Short Description --> +// +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// gethi +currentline = 'gethi'; +ref = ['gethistory';'gethistoryfile']; +r = completion(currentline); +if ~and(r == ref) then bugmes();quit;end +if getcommonpart(r) <> 'gethistory' then bugmes();quit;end +cd SCI/contrib/; +//cd toolbo[TAB] +currentline = 'cd toolbo'; +r = getfilepartlevel(currentline); +if r <> 'toolbo' then bugmes();quit;end; +r2 = completion(r,'files'); +if r2 <> 'toolbox_skeleton' + filesep() then bugmes();quit;end +pos = find(r2 == 'toolbox_skeleton'+filesep()); +r = completeline(currentline,r2(pos),getpartlevel(currentline),getfilepartlevel(currentline),%t); +if r <> 'cd toolbox_skeleton' + filesep() then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_3051.tst b/modules/completion/tests/nonreg_tests/bug_3051.tst new file mode 100755 index 000000000..94bcc13e3 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3051.tst @@ -0,0 +1,45 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3051 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3051 +// +// <-- Short Description --> +// + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +// gethi +currentline = 'gethi'; + +ref = ['gethistory';'gethistoryfile']; +r = completion(currentline); +if ~and(r == ref) then pause,end + +if getcommonpart(r) <> 'gethistory' then pause,end + +cd SCI/contrib/; +//cd toolbo[TAB] +currentline = 'cd toolbo'; +r = getfilepartlevel(currentline); +if r <> 'toolbo' then pause,end; + +r2 = completion(r,'files'); +if r2 <> 'toolbox_skeleton' + filesep() then pause,end + +pos = find(r2 == 'toolbox_skeleton'+filesep()); + +r = completeline(currentline,r2(pos),getpartlevel(currentline),getfilepartlevel(currentline),%t); +if r <> 'cd toolbox_skeleton' + filesep() then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_3297.dia.ref b/modules/completion/tests/nonreg_tests/bug_3297.dia.ref new file mode 100755 index 000000000..718826397 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3297.dia.ref @@ -0,0 +1,27 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3306 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3306 +// +// <-- Short Description --> +// Wildcards should not be interpreted as such in completion, but as literal text. +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// get* +currentline = 'get*'; +r = getpartlevel(currentline); +if r <> '' then bugmes();quit;end +r = getfilepartlevel(currentline); +if r <> '' then bugmes();quit;end +r = completeline(currentline,'',getpartlevel(currentline),getfilepartlevel(currentline),%f); +if r <> currentline then bugmes();quit;end; diff --git a/modules/completion/tests/nonreg_tests/bug_3297.tst b/modules/completion/tests/nonreg_tests/bug_3297.tst new file mode 100755 index 000000000..0e9307edd --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3297.tst @@ -0,0 +1,35 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3306 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3306 +// +// <-- Short Description --> +// Wildcards should not be interpreted as such in completion, but as literal text. + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +// get* +currentline = 'get*'; + +r = getpartlevel(currentline); +if r <> '' then pause,end + +r = getfilepartlevel(currentline); +if r <> '' then pause,end + +r = completeline(currentline,'',getpartlevel(currentline),getfilepartlevel(currentline),%f); +if r <> currentline then pause,end; + diff --git a/modules/completion/tests/nonreg_tests/bug_3306.dia.ref b/modules/completion/tests/nonreg_tests/bug_3306.dia.ref new file mode 100755 index 000000000..2f97e32c6 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3306.dia.ref @@ -0,0 +1,38 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3306 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3306 +// +// <-- Short Description --> +// Automatic completion swallows the first completed letter when using double quotes (") around a string, while it gives good +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +fd = mopen(TMPDIR+'/foofile.ext','wt'); +mclose(fd); +cd TMPDIR; +//scipad('foof[TAB] +currentline = "scipad(''foof"; +r = getfilepartlevel(currentline); +if r <> 'foof' then bugmes();quit;end; +r = completion(getfilepartlevel(currentline)); +if r <> 'foofile.ext' then bugmes();quit;end +r = completeline(currentline,'foofile.ext',getpartlevel(currentline),getfilepartlevel(currentline),%t); +if r <> 'scipad(''foofile.ext' then bugmes();quit;end; +//scipad("foof[TAB] +currentline = "scipad(""foof"; +r = getfilepartlevel(currentline); +if r <> 'foof' then bugmes();quit;end +r = completion(getfilepartlevel(currentline)); +if r <> 'foofile.ext' then bugmes();quit;end +r = completeline(currentline,'foofile.ext',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad(""foofile.ext' then bugmes();quit;end; diff --git a/modules/completion/tests/nonreg_tests/bug_3306.tst b/modules/completion/tests/nonreg_tests/bug_3306.tst new file mode 100755 index 000000000..91957cdb5 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3306.tst @@ -0,0 +1,53 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3306 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3306 +// +// <-- Short Description --> +// Automatic completion swallows the first completed letter when using double quotes (") around a string, while it gives good + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +fd = mopen(TMPDIR+'/foofile.ext','wt'); +mclose(fd); + +cd TMPDIR; + +//scipad('foof[TAB] +currentline = "scipad(''foof"; + +r = getfilepartlevel(currentline); +if r <> 'foof' then pause,end; + +r = completion(getfilepartlevel(currentline)); +if r <> 'foofile.ext' then pause,end + +r = completeline(currentline,'foofile.ext',getpartlevel(currentline),getfilepartlevel(currentline),%t); +if r <> 'scipad(''foofile.ext' then pause,end; + +//scipad("foof[TAB] +currentline = "scipad(""foof"; + +r = getfilepartlevel(currentline); +if r <> 'foof' then pause,end + +r = completion(getfilepartlevel(currentline)); +if r <> 'foofile.ext' then pause,end + +r = completeline(currentline,'foofile.ext',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad(""foofile.ext' then pause,end; + + \ No newline at end of file diff --git a/modules/completion/tests/nonreg_tests/bug_3398.dia.ref b/modules/completion/tests/nonreg_tests/bug_3398.dia.ref new file mode 100755 index 000000000..8a2911e8e --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3398.dia.ref @@ -0,0 +1,27 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3398 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3398 +// +// <-- Short Description --> +// A bug in the completion: +// it removes the line. It should add it at the end instead instead. +// exec le +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'exec le'; +r = getpartlevel(currentline); +if r <> 'le' then bugmes();quit;end +if size(completion(r),'*') == [] then bugmes();quit;end +r = completeline(currentline,'',getpartlevel(currentline),getfilepartlevel(currentline),%f); +if r <> currentline then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_3398.tst b/modules/completion/tests/nonreg_tests/bug_3398.tst new file mode 100755 index 000000000..9d6fa9ecf --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3398.tst @@ -0,0 +1,35 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3398 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3398 +// +// <-- Short Description --> +// A bug in the completion: +// it removes the line. It should add it at the end instead instead. +// exec le + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +currentline = 'exec le'; +r = getpartlevel(currentline); +if r <> 'le' then pause,end + +if size(completion(r),'*') == [] then pause,end + +r = completeline(currentline,'',getpartlevel(currentline),getfilepartlevel(currentline),%f); +if r <> currentline then pause,end + + \ No newline at end of file diff --git a/modules/completion/tests/nonreg_tests/bug_3399.dia.ref b/modules/completion/tests/nonreg_tests/bug_3399.dia.ref new file mode 100755 index 000000000..746e2cce5 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3399.dia.ref @@ -0,0 +1,23 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3399 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3399 +// +// <-- Short Description --> +// Completion is eating a character. +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +//cd /h +currentline = 'cd /h'; +newline = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd /home' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_3399.tst b/modules/completion/tests/nonreg_tests/bug_3399.tst new file mode 100755 index 000000000..9ac4e3ef7 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3399.tst @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3399 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3399 +// +// <-- Short Description --> +// Completion is eating a character. + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +//cd /h + +currentline = 'cd /h'; +newline = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd /home' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_3681.dia.ref b/modules/completion/tests/nonreg_tests/bug_3681.dia.ref new file mode 100755 index 000000000..083016c94 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3681.dia.ref @@ -0,0 +1,15 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +// <-- Non-regression test for bug 3681 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3681 +// +// <-- Short Description --> +// Disable automatic completion if there are only spaces in a line +if completion(" ") <> [] then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_3681.tst b/modules/completion/tests/nonreg_tests/bug_3681.tst new file mode 100755 index 000000000..215b5607c --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3681.tst @@ -0,0 +1,18 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- CLI SHELL MODE --> + +// <-- Non-regression test for bug 3681 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3681 +// +// <-- Short Description --> +// Disable automatic completion if there are only spaces in a line + +if completion(" ") <> [] then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_3757.dia.ref b/modules/completion/tests/nonreg_tests/bug_3757.dia.ref new file mode 100755 index 000000000..210d352f6 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3757.dia.ref @@ -0,0 +1,23 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 3757 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3757 +// +// <-- Short Description --> +// Under Scilex, the completion of paths is incorrect +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// cd d:\Pro[TAB] +currentline = 'cd d:\Pro'; +newline = completeline(currentline,'Projects',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd d:\Projects' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_3757.tst b/modules/completion/tests/nonreg_tests/bug_3757.tst new file mode 100755 index 000000000..310a0d8c7 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_3757.tst @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 3757 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=3757 +// +// <-- Short Description --> +// Under Scilex, the completion of paths is incorrect + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +// cd d:\Pro[TAB] +currentline = 'cd d:\Pro'; +newline = completeline(currentline,'Projects',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd d:\Projects' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4039.dia.ref b/modules/completion/tests/nonreg_tests/bug_4039.dia.ref new file mode 100755 index 000000000..0263c989a --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4039.dia.ref @@ -0,0 +1,32 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4039 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4039 +// +// <-- Short Description --> +// Problem of completion with version 5.1: +// (With NW mode). +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// wavread("/ho[TAB] +currentline = 'wavread(""/ho'; +r = getfilepartlevel(currentline); +if r <> '/ho' then bugmes();quit;end +newline = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'wavread(""/home' then bugmes();quit;end +// wavread("/home/sy[TAB] +currentline = 'wavread(""/home/sy'; +r = getfilepartlevel(currentline); +if r <> '/home/sy' then bugmes();quit;end +newline = completeline(currentline,'sylvestre',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'wavread(""/home/sylvestre' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4039.tst b/modules/completion/tests/nonreg_tests/bug_4039.tst new file mode 100755 index 000000000..1381ca7a0 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4039.tst @@ -0,0 +1,39 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4039 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4039 +// +// <-- Short Description --> +// Problem of completion with version 5.1: +// (With NW mode). + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +// wavread("/ho[TAB] +currentline = 'wavread(""/ho'; +r = getfilepartlevel(currentline); +if r <> '/ho' then pause,end + +newline = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'wavread(""/home' then pause,end + +// wavread("/home/sy[TAB] +currentline = 'wavread(""/home/sy'; +r = getfilepartlevel(currentline); +if r <> '/home/sy' then pause,end + +newline = completeline(currentline,'sylvestre',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'wavread(""/home/sylvestre' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4067.dia.ref b/modules/completion/tests/nonreg_tests/bug_4067.dia.ref new file mode 100755 index 000000000..c3cd4b211 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4067.dia.ref @@ -0,0 +1,40 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4067 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4067 +// +// <-- Short Description --> +// Completion STD mode. +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +chdir(TMPDIR); +mkdir('bug_4067'); +chdir('bug_4067'); +fd = mopen('bugA.sce','wt'); +mclose(fd); +fd = mopen('bugB.sce','wt'); +mclose(fd); +//exec bug +currentline = 'exec bug'; +r = getfilepartlevel(currentline); +if r <> 'bug' then bugmes();quit;end +r = completion(getfilepartlevel(currentline),'files'); +if and(gsort(r) <> gsort(['bugA.sce';'bugB.sce'])) then bugmes();quit;end +newline = completeline(currentline,'bugA.sce',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline<>'exec bugA.sce' then bugmes();quit;end +// -->cd /h +currentline = 'cd /h'; +r = getfilepartlevel(currentline); +if r <> '/h' then bugmes();quit;end +newline = completeline(currentline,'/home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline<>'cd /home' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4067.tst b/modules/completion/tests/nonreg_tests/bug_4067.tst new file mode 100755 index 000000000..cf3e3348d --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4067.tst @@ -0,0 +1,47 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4067 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4067 +// +// <-- Short Description --> +// Completion STD mode. + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +chdir(TMPDIR); +mkdir('bug_4067'); +chdir('bug_4067'); +fd = mopen('bugA.sce','wt'); +mclose(fd); +fd = mopen('bugB.sce','wt'); +mclose(fd); + +//exec bug +currentline = 'exec bug'; +r = getfilepartlevel(currentline); +if r <> 'bug' then pause,end +r = completion(getfilepartlevel(currentline),'files'); +if and(gsort(r) <> gsort(['bugA.sce';'bugB.sce'])) then pause,end + +newline = completeline(currentline,'bugA.sce',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline<>'exec bugA.sce' then pause,end + +// -->cd /h +currentline = 'cd /h'; +r = getfilepartlevel(currentline); +if r <> '/h' then pause,end +newline = completeline(currentline,'/home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline<>'cd /home' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4095.dia.ref b/modules/completion/tests/nonreg_tests/bug_4095.dia.ref new file mode 100755 index 000000000..e78b70e7e --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4095.dia.ref @@ -0,0 +1,51 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4095 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4095 +// +// <-- Short Description --> +// Completion delete some characters of the string we are typing (With NW mode). +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// cd SCI/mod +currentline = 'cd SCI/mod'; +r = getfilepartlevel(currentline); +if r <> 'SCI/mod' then bugmes();quit;end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'modules' + filesep() then bugmes();quit;end +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules' + filesep() then bugmes();quit;end +// cd SCI/modules/file +currentline = 'cd SCI/modules/file'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/file' then bugmes();quit;end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'fileio' + filesep() then bugmes();quit;end +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio' + filesep() then bugmes();quit;end +// cd SCI/modules/fileio/te +currentline = 'cd SCI/modules/fileio/te'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/fileio/te' then bugmes();quit;end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'tests' + filesep() then bugmes();quit;end +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio/tests' + filesep() then bugmes();quit;end +// cd SCI/modules/fileio/tests/u +currentline = 'cd SCI/modules/fileio/tests/u'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/fileio/tests/u' then bugmes();quit;end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'unit_tests' + filesep() then bugmes();quit;end +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio/tests/unit_tests' + filesep() then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4095.tst b/modules/completion/tests/nonreg_tests/bug_4095.tst new file mode 100755 index 000000000..850bd39c0 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4095.tst @@ -0,0 +1,63 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4095 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4095 +// +// <-- Short Description --> +// Completion delete some characters of the string we are typing (With NW mode). + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +// cd SCI/mod +currentline = 'cd SCI/mod'; +r = getfilepartlevel(currentline); +if r <> 'SCI/mod' then pause,end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'modules' + filesep() then pause,end + +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules' + filesep() then pause,end + +// cd SCI/modules/file +currentline = 'cd SCI/modules/file'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/file' then pause,end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'fileio' + filesep() then pause,end + +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio' + filesep() then pause,end + +// cd SCI/modules/fileio/te +currentline = 'cd SCI/modules/fileio/te'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/fileio/te' then pause,end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'tests' + filesep() then pause,end + +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio/tests' + filesep() then pause,end + +// cd SCI/modules/fileio/tests/u +currentline = 'cd SCI/modules/fileio/tests/u'; +r = getfilepartlevel(currentline); +if r <> 'SCI/modules/fileio/tests/u' then pause,end +r = completion(getfilepartlevel(currentline),'files'); +if r <> 'unit_tests' + filesep() then pause,end + +newline = completeline(currentline,r,getfilepartlevel(currentline),getpartlevel(currentline),%t); +if newline <> 'cd SCI/modules/fileio/tests/unit_tests' + filesep() then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4263.dia.ref b/modules/completion/tests/nonreg_tests/bug_4263.dia.ref new file mode 100755 index 000000000..33dfc1ae0 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4263.dia.ref @@ -0,0 +1,22 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4263 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4263 +// +// <-- Short Description --> +// completion cleans input line +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'cd d:\Sci'; +r = completeline(currentline,'d:\Scilab5',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd d:\Scilab5' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4263.tst b/modules/completion/tests/nonreg_tests/bug_4263.tst new file mode 100755 index 000000000..9c2e82934 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4263.tst @@ -0,0 +1,26 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4263 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4263 +// +// <-- Short Description --> +// completion cleans input line +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +currentline = 'cd d:\Sci'; +r = completeline(currentline,'d:\Scilab5',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd d:\Scilab5' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4315.dia.ref b/modules/completion/tests/nonreg_tests/bug_4315.dia.ref new file mode 100755 index 000000000..bc7f99be1 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4315.dia.ref @@ -0,0 +1,19 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4315 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4315 +// +// <-- Short Description --> +// --> completion("",["commands","macros"]) +// it will only returns commands +// <-- CLI SHELL MODE --> +w = ""; +c = ["commands","macros"]; +ierr = execstr("a=completion(w,c);","errcatch"); +if ierr <> 999 then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4315.tst b/modules/completion/tests/nonreg_tests/bug_4315.tst new file mode 100755 index 000000000..6fe6d76dc --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4315.tst @@ -0,0 +1,24 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4315 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4315 +// +// <-- Short Description --> +// --> completion("",["commands","macros"]) +// it will only returns commands + + +// <-- CLI SHELL MODE --> + +w = ""; +c = ["commands","macros"]; + +ierr = execstr("a=completion(w,c);","errcatch"); +if ierr <> 999 then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4332.dia.ref b/modules/completion/tests/nonreg_tests/bug_4332.dia.ref new file mode 100755 index 000000000..66f5f8df4 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4332.dia.ref @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4332 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4332 +// +// <-- Short Description --> +// completion copies selected item instead of completing according to this one. +// <-- ENGLISH IMPOSED --> +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +// You choose thermaSnap.img +currentline = 'scipad thermaSnap.'; +r = completeline(currentline,'thermaSnap.img',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad thermaSnap.img' then bugmes();quit;end +// You choose thermaSnap.sce +currentline = 'scipad thermaSnap.'; +r = completeline(currentline,'thermaSnap.sce',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad thermaSnap.sce' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4332.tst b/modules/completion/tests/nonreg_tests/bug_4332.tst new file mode 100755 index 000000000..02d18679a --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4332.tst @@ -0,0 +1,34 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4332 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4332 +// +// <-- Short Description --> +// completion copies selected item instead of completing according to this one. + + +// <-- ENGLISH IMPOSED --> +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +// You choose thermaSnap.img +currentline = 'scipad thermaSnap.'; +r = completeline(currentline,'thermaSnap.img',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad thermaSnap.img' then pause,end + +// You choose thermaSnap.sce +currentline = 'scipad thermaSnap.'; +r = completeline(currentline,'thermaSnap.sce',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'scipad thermaSnap.sce' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4365.dia.ref b/modules/completion/tests/nonreg_tests/bug_4365.dia.ref new file mode 100755 index 000000000..7f63fe3b8 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4365.dia.ref @@ -0,0 +1,47 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4365 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4365 +// +// <-- Short Description --> +// completion fails and returns a bad value if we try to use it on a path that doesn't exist +// cd SCI/modules/arnoldi/nonreg_tes[TAB] +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'cd SCI/modules/arnoldi/nonreg_tes'; +r = completeline(currentline,'nonreg_test_run',getfilepartlevel(currentline),getpartlevel(currentline),%f); +if r <> currentline then bugmes();quit;end +currentline = 'cd modules/arnoldi/src/c'; +r = completeline(currentline,'c/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd modules/arnoldi/src/c/' then bugmes();quit;end +currentline = 'cd reposit'; +r = completeline(currentline,'repositories/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/' then bugmes();quit;end +currentline = 'cd repositories/'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then bugmes();quit;end +currentline = 'cd repositories/to'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then bugmes();quit;end +currentline = 'cd repositories/tooboxes_google'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then bugmes();quit;end +currentline = 'cd repositories/tooboxes_google/sci'; +r = completeline(currentline,'scicoinor/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/' then bugmes();quit;end +currentline = 'cd repositories/tooboxes_google/scicoinor/sci'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/sci_gateway/' then bugmes();quit;end +currentline = 'cd repositories/tooboxes_google/scicoinor/'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/sci_gateway/' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4365.tst b/modules/completion/tests/nonreg_tests/bug_4365.tst new file mode 100755 index 000000000..fb949961c --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4365.tst @@ -0,0 +1,60 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4365 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4365 +// +// <-- Short Description --> +// completion fails and returns a bad value if we try to use it on a path that doesn't exist +// cd SCI/modules/arnoldi/nonreg_tes[TAB] + + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +currentline = 'cd SCI/modules/arnoldi/nonreg_tes'; +r = completeline(currentline,'nonreg_test_run',getfilepartlevel(currentline),getpartlevel(currentline),%f); +if r <> currentline then pause,end + +currentline = 'cd modules/arnoldi/src/c'; +r = completeline(currentline,'c/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd modules/arnoldi/src/c/' then pause,end + +currentline = 'cd reposit'; +r = completeline(currentline,'repositories/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/' then pause,end + +currentline = 'cd repositories/'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then pause,end + +currentline = 'cd repositories/to'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then pause,end + +currentline = 'cd repositories/tooboxes_google'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then pause,end + +currentline = 'cd repositories/tooboxes_google/sci'; +r = completeline(currentline,'scicoinor/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/' then pause,end + +currentline = 'cd repositories/tooboxes_google/scicoinor/sci'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/sci_gateway/' then pause,end + +currentline = 'cd repositories/tooboxes_google/scicoinor/'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/scicoinor/sci_gateway/' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4421.dia.ref b/modules/completion/tests/nonreg_tests/bug_4421.dia.ref new file mode 100755 index 000000000..b316b05ea --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4421.dia.ref @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4421 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4421 +// +// <-- Short Description --> +// bug with the completion +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +cd TMPDIR; +mkdir('scicoinor'); +mkdir('dir1'); +cd (TMPDIR+'/dir1'); +mkdir('dir2'); +cd (TMPDIR+'/dir1/dir2'); +currentline = 'cd ../../scicoi'; +r = completeline(currentline,'scicoinor',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ../../scicoinor' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4421.tst b/modules/completion/tests/nonreg_tests/bug_4421.tst new file mode 100755 index 000000000..67f6a7363 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4421.tst @@ -0,0 +1,33 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4421 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4421 +// +// <-- Short Description --> +// bug with the completion + + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +cd TMPDIR; +mkdir('scicoinor'); +mkdir('dir1'); +cd (TMPDIR+'/dir1'); +mkdir('dir2'); +cd (TMPDIR+'/dir1/dir2'); +currentline = 'cd ../../scicoi'; +r = completeline(currentline,'scicoinor',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ../../scicoinor' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4438.dia.ref b/modules/completion/tests/nonreg_tests/bug_4438.dia.ref new file mode 100755 index 000000000..0fa67b5f4 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4438.dia.ref @@ -0,0 +1,23 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4838 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4838 +// +// <-- Short Description --> +// bug in the completion (insertion) +// load(SCIH[TAB]/macros) +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'load(SCIH'; +r = completeline(currentline,'SCIHOME',getfilepartlevel(currentline),getpartlevel(currentline),%t,'/modules)'); +if r <> 'load(SCIHOME/modules)' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4438.tst b/modules/completion/tests/nonreg_tests/bug_4438.tst new file mode 100755 index 000000000..9f730c2cb --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4438.tst @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4838 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4838 +// +// <-- Short Description --> +// bug in the completion (insertion) +// load(SCIH[TAB]/macros) + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +currentline = 'load(SCIH'; +r = completeline(currentline,'SCIHOME',getfilepartlevel(currentline),getpartlevel(currentline),%t,'/modules)'); +if r <> 'load(SCIHOME/modules)' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4626.dia.ref b/modules/completion/tests/nonreg_tests/bug_4626.dia.ref new file mode 100755 index 000000000..332a20e9e --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4626.dia.ref @@ -0,0 +1,17 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4626 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4626 +// +// <-- Short Description --> +// +// when using the CLI version (NO GRAPHICS), the autocompletion feature make Scilab crash +// <-- CLI SHELL MODE --> +r = completion('a','graphic_properties'); +if ~isdef('r') then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4626.tst b/modules/completion/tests/nonreg_tests/bug_4626.tst new file mode 100755 index 000000000..c906e02cd --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4626.tst @@ -0,0 +1,20 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4626 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4626 +// +// <-- Short Description --> +// +// when using the CLI version (NO GRAPHICS), the autocompletion feature make Scilab crash + + +// <-- CLI SHELL MODE --> +r = completion('a','graphic_properties'); +if ~isdef('r') then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4737.dia.ref b/modules/completion/tests/nonreg_tests/bug_4737.dia.ref new file mode 100755 index 000000000..0c337cbe5 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4737.dia.ref @@ -0,0 +1,31 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4737 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4737 +// +// <-- Short Description --> +// bug with the completion +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +cd TMPDIR; +mkdir('modules'); +cd (TMPDIR+'/modules'); +mkdir('string'); +cd (TMPDIR+'/modules/string'); +mkdir('macros'); +cd (TMPDIR+'/modules/string/macros'); +mputl('TEST',TMPDIR+'/modules/string/macros/finddeps.sci'); +cd TMPDIR; +currentline = 'ls modules/string/macros/finddeps.'; +r = completeline(currentline,'finddeps.sci',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'ls modules/string/macros/finddeps.sci' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4737.tst b/modules/completion/tests/nonreg_tests/bug_4737.tst new file mode 100755 index 000000000..d4640bed0 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4737.tst @@ -0,0 +1,36 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4737 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4737 +// +// <-- Short Description --> +// bug with the completion + + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +cd TMPDIR; +mkdir('modules'); +cd (TMPDIR+'/modules'); +mkdir('string'); +cd (TMPDIR+'/modules/string'); +mkdir('macros'); +cd (TMPDIR+'/modules/string/macros'); +mputl('TEST',TMPDIR+'/modules/string/macros/finddeps.sci'); +cd TMPDIR; +currentline = 'ls modules/string/macros/finddeps.'; +r = completeline(currentline,'finddeps.sci',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'ls modules/string/macros/finddeps.sci' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_4838.dia.ref b/modules/completion/tests/nonreg_tests/bug_4838.dia.ref new file mode 100755 index 000000000..f85dff1be --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4838.dia.ref @@ -0,0 +1,24 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 4838 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4838 +// +// <-- Short Description --> +// completion returns wrong value with '..' +// cd SCI/modules +// cd ../et[tab] +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'cd ../et'; +r = completeline(currentline,'etc/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ../etc/' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_4838.tst b/modules/completion/tests/nonreg_tests/bug_4838.tst new file mode 100755 index 000000000..b26822fba --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_4838.tst @@ -0,0 +1,29 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 4838 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=4838 +// +// <-- Short Description --> +// completion returns wrong value with '..' +// cd SCI/modules +// cd ../et[tab] + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +currentline = 'cd ../et'; +r = completeline(currentline,'etc/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ../etc/' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_5105.dia.ref b/modules/completion/tests/nonreg_tests/bug_5105.dia.ref new file mode 100755 index 000000000..0f700a2a9 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_5105.dia.ref @@ -0,0 +1,24 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 5105 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=5105 +// +// <-- Short Description --> +// completion: cd "..\L does not work +// +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'cd ""../et'; +if getfilepartlevel(currentline) <> '../et' then bugmes();quit;end +r = completeline(currentline,'etc/', getfilepartlevel(currentline), getpartlevel(currentline), %t); +if r <> 'cd ""../etc/' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_5105.tst b/modules/completion/tests/nonreg_tests/bug_5105.tst new file mode 100755 index 000000000..97dd4cbd1 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_5105.tst @@ -0,0 +1,29 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 5105 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=5105 +// +// <-- Short Description --> +// completion: cd "..\L does not work +// + + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +currentline = 'cd ""../et'; +if getfilepartlevel(currentline) <> '../et' then pause,end +r = completeline(currentline,'etc/', getfilepartlevel(currentline), getpartlevel(currentline), %t); +if r <> 'cd ""../etc/' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_6320.dia.ref b/modules/completion/tests/nonreg_tests/bug_6320.dia.ref new file mode 100755 index 000000000..7f92d0ace --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6320.dia.ref @@ -0,0 +1,19 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2012 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +/// <-- Non-regression test for bug 6320 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6320 +// +// <-- Short Description --> +// completion should be case insensitive +// <-- CLI SHELL MODE --> +createNode = 1; +r = completion('createn'); +assert_checkequal(r, 'createNode'); +r = completion('CREATEN'); +assert_checkequal(r, 'createNode'); diff --git a/modules/completion/tests/nonreg_tests/bug_6320.tst b/modules/completion/tests/nonreg_tests/bug_6320.tst new file mode 100755 index 000000000..4388ec677 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6320.tst @@ -0,0 +1,24 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2012 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 6320 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6320 +// +// <-- Short Description --> +// completion should be case insensitive + +// <-- CLI SHELL MODE --> + +createNode = 1; + +r = completion('createn'); +assert_checkequal(r, 'createNode'); + +r = completion('CREATEN'); +assert_checkequal(r, 'createNode'); diff --git a/modules/completion/tests/nonreg_tests/bug_6739.dia.ref b/modules/completion/tests/nonreg_tests/bug_6739.dia.ref new file mode 100755 index 000000000..a40c6e7af --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6739.dia.ref @@ -0,0 +1,30 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 6739 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6739 +// +// <-- Short Description --> +// if a Scilab coded library function is redefined in a new library, completion +// on its name maked Scilab crashed +// +// <-- CLI SHELL MODE --> +mkdir(TMPDIR,'test'); +m=['function y = acosd(x)' +' r=180/%pi ' +' y = r*acos(x);' +'endfunction']; +mputl(m,TMPDIR+'/test/acosd.sci'); +genlib('testlib',TMPDIR+'/test/'); +acosd(3); //ok +[a,b,c,d,e]=completion('ac'); +if a <> 'acos' then bugmes();quit;end +if b <> [] then bugmes();quit;end +if c <> [] then bugmes();quit;end +if d == [] then bugmes();quit;end +if e <> [] then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_6739.tst b/modules/completion/tests/nonreg_tests/bug_6739.tst new file mode 100755 index 000000000..6870c1fe5 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6739.tst @@ -0,0 +1,36 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 6739 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6739 +// +// <-- Short Description --> +// if a Scilab coded library function is redefined in a new library, completion +// on its name maked Scilab crashed +// + + +// <-- CLI SHELL MODE --> + +mkdir(TMPDIR,'test'); +m=['function y = acosd(x)' +' r=180/%pi ' +' y = r*acos(x);' +'endfunction']; +mputl(m,TMPDIR+'/test/acosd.sci'); +genlib('testlib',TMPDIR+'/test/'); + +acosd(3); //ok + +[a,b,c,d,e]=completion('ac'); +if a <> 'acos' then pause,end +if b <> [] then pause,end +if c <> [] then pause,end +if d == [] then pause,end +if e <> [] then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_6751.dia.ref b/modules/completion/tests/nonreg_tests/bug_6751.dia.ref new file mode 100755 index 000000000..0eb3618e1 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6751.dia.ref @@ -0,0 +1,37 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- Non-regression test for bug 6751 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6751 +// +// <-- Short Description --> +// A completion bug: +// mkdir -p cudascilab/sci_gateway cudascilab/src +// scilab -nwni +// exec cudascilab/[TAB]s[TAB]c[TAB] +// shows cudascilab/ssci_gateway/ +// instead of +// cudascilab/sci_gateway/ +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd cudascilab/sci_gateway/' then bugmes();quit;end +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd cudascilab/sci_gateway/' then bugmes();quit;end +currentline = 'cd repositories/'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then bugmes();quit;end +currentline = 'cd ~/scilab/'; +r = completeline(currentline,'scilab/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ~/scilab/scilab/' then bugmes();quit;end diff --git a/modules/completion/tests/nonreg_tests/bug_6751.tst b/modules/completion/tests/nonreg_tests/bug_6751.tst new file mode 100755 index 000000000..72a5cf614 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_6751.tst @@ -0,0 +1,46 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2008 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- Non-regression test for bug 6751 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=6751 +// +// <-- Short Description --> +// A completion bug: +// mkdir -p cudascilab/sci_gateway cudascilab/src +// scilab -nwni +// exec cudascilab/[TAB]s[TAB]c[TAB] +// shows cudascilab/ssci_gateway/ +// instead of +// cudascilab/sci_gateway/ + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + + +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd cudascilab/sci_gateway/' then pause,end + + +currentline = 'cd cudascilab/sc'; +r = completeline(currentline,'sci_gateway/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd cudascilab/sci_gateway/' then pause,end + +currentline = 'cd repositories/'; +r = completeline(currentline,'tooboxes_google/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd repositories/tooboxes_google/' then pause,end + +currentline = 'cd ~/scilab/'; +r = completeline(currentline,'scilab/',getfilepartlevel(currentline),getpartlevel(currentline),%t); +if r <> 'cd ~/scilab/scilab/' then pause,end diff --git a/modules/completion/tests/nonreg_tests/bug_7123.dia.ref b/modules/completion/tests/nonreg_tests/bug_7123.dia.ref new file mode 100755 index 000000000..48b25bb0a --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_7123.dia.ref @@ -0,0 +1,44 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 7123 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=7123 +// +// <-- Short Description --> +// No completion was possible if the name of a variable is preceded by ~ or @ or < or > +// +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr <> 0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr <> 0 then bugmes();quit;end +blahblah = %t; +ref = 'blahbl'; +r = getpartlevel('if ~blahbl'); +if r <> ref then bugmes();quit;end; +r = getpartlevel('if @blahbl'); +if r <> ref then bugmes();quit;end; +r = getpartlevel('if %t==blahbl'); +if r <> ref then bugmes();quit;end; +r = getpartlevel('if %t == blahbl'); +if r <> ref then bugmes();quit;end; +blahblah = 3; +r = getpartlevel('if 2>blahbl'); +if r <> ref then bugmes();quit;end; +r = getpartlevel('if 2 > blahbl'); +if r <> ref then bugmes();quit;end; +r = getpartlevel('if 2 ref then bugmes();quit;end; +r = getpartlevel('if 2 < blahbl'); +if r <> ref then bugmes();quit;end; +// tabulation used in editor not in console +r = getpartlevel(ascii(9) + 'blahbl'); +if r <> ref then bugmes();quit;end; diff --git a/modules/completion/tests/nonreg_tests/bug_7123.tst b/modules/completion/tests/nonreg_tests/bug_7123.tst new file mode 100755 index 000000000..cdd230fb0 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_7123.tst @@ -0,0 +1,56 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 7123 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/show_bug.cgi?id=7123 +// +// <-- Short Description --> +// No completion was possible if the name of a variable is preceded by ~ or @ or < or > +// + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr <> 0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr <> 0 then pause, end + +blahblah = %t; +ref = 'blahbl'; + +r = getpartlevel('if ~blahbl'); +if r <> ref then pause, end; + +r = getpartlevel('if @blahbl'); +if r <> ref then pause, end; + +r = getpartlevel('if %t==blahbl'); +if r <> ref then pause, end; + +r = getpartlevel('if %t == blahbl'); +if r <> ref then pause, end; + +blahblah = 3; + +r = getpartlevel('if 2>blahbl'); +if r <> ref then pause, end; + +r = getpartlevel('if 2 > blahbl'); +if r <> ref then pause,end; + +r = getpartlevel('if 2 ref then pause,end; + +r = getpartlevel('if 2 < blahbl'); +if r <> ref then pause,end; + +// tabulation used in editor not in console +r = getpartlevel(ascii(9) + 'blahbl'); +if r <> ref then pause,end; diff --git a/modules/completion/tests/nonreg_tests/bug_9300.dia.ref b/modules/completion/tests/nonreg_tests/bug_9300.dia.ref new file mode 100755 index 000000000..72a21582c --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_9300.dia.ref @@ -0,0 +1,34 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2011 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 9300 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/9300 +// +// <-- Short Description --> +// Crash when try to complete a mlist without fields +// +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr <> 0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr <> 0 then bugmes();quit;end +a = mlist(['V']); +if getfields('a.') <> '' then bugmes();quit;end; +a = tlist(['V']); +if getfields('a.') <> '' then bugmes();quit;end; +a = struct(); +if getfields('a.') <> '' then bugmes();quit;end; +a = mlist(['V' 'f']); +if getfields('a.') <> 'f' then bugmes();quit;end; +a = tlist(['V' 'f']); +if getfields('a.') <> 'f' then bugmes();quit;end; +a = struct('f', 'v'); +if getfields('a.') <> 'f' then bugmes();quit;end; diff --git a/modules/completion/tests/nonreg_tests/bug_9300.tst b/modules/completion/tests/nonreg_tests/bug_9300.tst new file mode 100755 index 000000000..9de6ffa12 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_9300.tst @@ -0,0 +1,41 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2011 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 9300 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/9300 +// +// <-- Short Description --> +// Crash when try to complete a mlist without fields +// + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr <> 0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr <> 0 then pause, end + +a = mlist(['V']); +if getfields('a.') <> '' then pause, end; + +a = tlist(['V']); +if getfields('a.') <> '' then pause, end; + +a = struct(); +if getfields('a.') <> '' then pause, end; + +a = mlist(['V' 'f']); +if getfields('a.') <> 'f' then pause, end; + +a = tlist(['V' 'f']); +if getfields('a.') <> 'f' then pause, end; + +a = struct('f', 'v'); +if getfields('a.') <> 'f' then pause, end; diff --git a/modules/completion/tests/nonreg_tests/bug_9755.dia.ref b/modules/completion/tests/nonreg_tests/bug_9755.dia.ref new file mode 100755 index 000000000..72f5cf2c9 --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_9755.dia.ref @@ -0,0 +1,30 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2011 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 9755 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/9755 +// +// <-- Short Description --> +// Completion on paths was not case insensitive on Windows +// +if getos() == 'Windows' then + ilib_verbose(0); + ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); + if ierr <> 0 then bugmes();quit;end + ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); + if ierr <> 0 then bugmes();quit;end + currentline = 'cd c:/u'; + r = completeline(currentline,'Users',getfilepartlevel(currentline),getpartlevel(currentline),%t); + if r <> 'cd c:/Users' then bugmes();quit;end + currentline = 'cd c:/programs Files/f'; + r = completeline(currentline,'Fichiers',getfilepartlevel(currentline),getpartlevel(currentline),%t); + if r <> 'cd c:/programs Files/Fichiers' then bugmes();quit;end +end diff --git a/modules/completion/tests/nonreg_tests/bug_9755.tst b/modules/completion/tests/nonreg_tests/bug_9755.tst new file mode 100755 index 000000000..bc57639ac --- /dev/null +++ b/modules/completion/tests/nonreg_tests/bug_9755.tst @@ -0,0 +1,33 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2011 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// +// <-- CLI SHELL MODE --> +// +// <-- Non-regression test for bug 9755 --> +// +// <-- Bugzilla URL --> +// http://bugzilla.scilab.org/9755 +// +// <-- Short Description --> +// Completion on paths was not case insensitive on Windows +// + +if getos() == 'Windows' then + ilib_verbose(0); + ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); + if ierr <> 0 then pause, end + ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); + if ierr <> 0 then pause, end + + currentline = 'cd c:/u'; + r = completeline(currentline,'Users',getfilepartlevel(currentline),getpartlevel(currentline),%t); + if r <> 'cd c:/Users' then pause,end + + currentline = 'cd c:/programs Files/f'; + r = completeline(currentline,'Fichiers',getfilepartlevel(currentline),getpartlevel(currentline),%t); + if r <> 'cd c:/programs Files/Fichiers' then pause,end +end diff --git a/modules/completion/tests/unit_tests/completeline.dia.ref b/modules/completion/tests/unit_tests/completeline.dia.ref new file mode 100755 index 000000000..b16eb1716 --- /dev/null +++ b/modules/completion/tests/unit_tests/completeline.dia.ref @@ -0,0 +1,80 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +ilib_verbose(0); +exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +currentline = 'cd /t'; +r = completeline(currentline,'/tmp',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /tmp'); +currentline = 'cd /T'; +r = completeline(currentline,'/tmp',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /tmp'); +r = completeline('cd /home/sy','sylvestre',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /home/sylvestre'); +r = completeline('cd /home/sci','Scilab',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /home/Scilab'); +r = completeline('cd d:\GIT-scilab-','d:\GIT-scilab-branch',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd d:\GIT-scilab-branch'); +currentline = 'cd C:\ProgramD'; +r = completeline(currentline,'ProgramData',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\ProgramData'); +currentline = 'cd C:\programd'; +r = completeline(currentline,'ProgramData',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\ProgramData'); +currentline = 'cd C:\Program F'; +r = completeline(currentline,'Program Files',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Program Files'); +currentline = 'cd C:\program f'; +r = completeline(currentline,'Program Files',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Program Files'); +currentline = 'cd C:\Windows\Sys'; +r = completeline(currentline,'System32',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Windows\System32'); +currentline = 'cd C:\Windows\sys'; +r = completeline(currentline,'System32',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Windows\System32'); +currentline = 'ho'; +r = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'home'); +currentline = 'HO'; +r = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'home'); +currentline = 'tmp'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'TMPDIR'); +currentline = 'Tmp'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'TMPDIR'); +currentline = 'disp(TMP'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'disp(TMPDIR'); +currentline = '1 + ab'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, '1 + abs'); +currentline = '1 + AB'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, '1 + abs'); +currentline = 'tmpStr = ""TMP = "" + TMP'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'tmpStr = ""TMP = "" + TMPDIR'); +currentline = 'mytab = ab'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'mytab = abs'); +currentline = 't.fie'; +r = completeline(currentline,'field1',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 't.field1'); +currentline = 't.field1 = t.fie'; +r = completeline(currentline,'field2',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 't.field1 = t.field2'); +currentline = 'totoa'; +r = completeline(currentline,'toto',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'toto'); +currentline = 'totototoa'; +r = completeline(currentline,'toto',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'toto'); diff --git a/modules/completion/tests/unit_tests/completeline.tst b/modules/completion/tests/unit_tests/completeline.tst new file mode 100755 index 000000000..634c6aea7 --- /dev/null +++ b/modules/completion/tests/unit_tests/completeline.tst @@ -0,0 +1,106 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +exec(TMPDIR + "/completion/loader.sce","errcatch",-1); + +currentline = 'cd /t'; +r = completeline(currentline,'/tmp',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /tmp'); + +currentline = 'cd /T'; +r = completeline(currentline,'/tmp',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /tmp'); + +r = completeline('cd /home/sy','sylvestre',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /home/sylvestre'); + +r = completeline('cd /home/sci','Scilab',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'cd /home/Scilab'); + +r = completeline('cd d:\GIT-scilab-','d:\GIT-scilab-branch',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd d:\GIT-scilab-branch'); + +currentline = 'cd C:\ProgramD'; +r = completeline(currentline,'ProgramData',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\ProgramData'); + +currentline = 'cd C:\programd'; +r = completeline(currentline,'ProgramData',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\ProgramData'); + +currentline = 'cd C:\Program F'; +r = completeline(currentline,'Program Files',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Program Files'); + +currentline = 'cd C:\program f'; +r = completeline(currentline,'Program Files',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Program Files'); + +currentline = 'cd C:\Windows\Sys'; +r = completeline(currentline,'System32',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Windows\System32'); + +currentline = 'cd C:\Windows\sys'; +r = completeline(currentline,'System32',getpartlevel(currentline),getfilepartlevel(currentline),%t); +assert_checkequal(r, 'cd C:\Windows\System32'); + +currentline = 'ho'; +r = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'home'); + +currentline = 'HO'; +r = completeline(currentline,'home',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'home'); + +currentline = 'tmp'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'TMPDIR'); + +currentline = 'Tmp'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'TMPDIR'); + +currentline = 'disp(TMP'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'disp(TMPDIR'); + +currentline = '1 + ab'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, '1 + abs'); + +currentline = '1 + AB'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, '1 + abs'); + +currentline = 'tmpStr = ""TMP = "" + TMP'; +r = completeline(currentline,'TMPDIR',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'tmpStr = ""TMP = "" + TMPDIR'); + +currentline = 'mytab = ab'; +r = completeline(currentline,'abs',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'mytab = abs'); + +currentline = 't.fie'; +r = completeline(currentline,'field1',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 't.field1'); + +currentline = 't.field1 = t.fie'; +r = completeline(currentline,'field2',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 't.field1 = t.field2'); + +currentline = 'totoa'; +r = completeline(currentline,'toto',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'toto'); + +currentline = 'totototoa'; +r = completeline(currentline,'toto',getfilepartlevel(currentline),getpartlevel(currentline),%t); +assert_checkequal(r, 'toto'); diff --git a/modules/completion/tests/unit_tests/completion.dia.ref b/modules/completion/tests/unit_tests/completion.dia.ref new file mode 100755 index 000000000..9143214e6 --- /dev/null +++ b/modules/completion/tests/unit_tests/completion.dia.ref @@ -0,0 +1,146 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2007-2008 - INRIA +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +//=============================== +// unit tests completion +//=============================== +function [] = check_completion(actual, expected) + for i = 1 : size(actual, 'r') + [start,end,match] = regexp(actual(i,1), '/(?i)^(' + expected + ')/'); + assert_checktrue(match <> ''); + end +endfunction +// File paths +if (getos() == "Windows") then + r = completion('C:\Documents and'); + assert_checkequal(r, 'Documents and Settings\'); + r = completion('c:\documents And'); + assert_checkequal(r, 'Documents and Settings\'); +else + r = completion('/tm'); + assert_checkequal(r, 'tmp/'); + r = completion('/TM'); + // We are still case sensitive + assert_checkequal(r, []); +end +r = completion(SCI+'/to'); +r2 = completion(SCI+'/TO'); +if (getos() == "Windows") then + assert_checkequal(r, ['tools\']); + assert_checkequal(r2, ['tools\']); +else + assert_checkequal(r, ['tools/']); + assert_checkequal(r2, []); +end +// Predefined variables +r = completion('ho', 'variables'); +check_completion(r, 'home'); +r = completion('HO', 'variables'); +check_completion(r, 'home'); +r = completion('%na'); +check_completion(r, '%nan'); +r = completion('%Na'); +check_completion(r, '%nan'); +r = completion('tmp'); +check_completion(r, 'TMPDIR'); +r = completion('Tmp'); +check_completion(r, 'TMPDIR'); +r = completion('%', 'variables'); +rexpected = ['%F'; '%T'; '%e'; '%eps'; '%f'; '%fftw'; '%gui'; '%i';'%inf'; '%io'; + '%modalWarning'; '%nan'; '%pi'; '%s'; '%t'; '%tk'; '%toolboxes'; '%toolboxes_dir'; '%z']; +assert_checkequal(r, rexpected); +// User variables +variable1_completion1 = 1; +variable1_completion2 = 2; +r = completion('variable1_comp'); +assert_checkequal(r, ['variable1_completion1'; 'variable1_completion2']); +r = completion('VARIABLE1_COMP'); +assert_checkequal(r, ['variable1_completion1'; 'variable1_completion2']); +variable2_completion = 1; +VARIABLE2_COMPLETION = 2; +r = completion('variable2_comp'); +assert_checkequal(r, ['VARIABLE2_COMPLETION'; 'variable2_completion']); +r = completion('VARIABLE2_COMP'); +assert_checkequal(r, ['VARIABLE2_COMPLETION'; 'variable2_completion']); +// Predefined functions, macros and commands +r = completion('floo'); +check_completion(r, 'floor'); +r = completion('FLOO'); +check_completion(r, 'floor'); +r = completion('abort'); +check_completion(r, 'abort'); +r = completion('Abort'); +check_completion(r, 'abort'); +// User functions, macros, commands +function [] = function_completion(x); +endfunction; +r = completion('function_comp'); +assert_checkequal(r, 'function_completion'); +r = completion('FUNCTION_COMP'); +assert_checkequal(r, 'function_completion'); +function [] = FUNCTION_COMPLETION(x); +endfunction; +r = completion('function_comp'); +assert_checkequal(r, ['FUNCTION_COMPLETION'; 'function_completion']); +r = completion('FUNCTION_COMP'); +assert_checkequal(r, ['FUNCTION_COMPLETION'; 'function_completion']); +// Filter argument +r = completion('ho'); +assert_checkequal(r, ['home'; 'horizontalalignment'; 'horner'; 'host'; 'hotcolormap'; 'householder']); +r = completion('ho', 'functions'); +assert_checkequal(r, 'host'); +r = completion('ho', 'commands'); +assert_checkequal(r, []); +r = completion('ho', 'macros'); +assert_checkequal(r, ['horner'; 'hotcolormap'; 'householder']); +r = completion('ho', 'variables'); +assert_checkequal(r, 'home'); +r = completion('ho', 'graphic_properties'); +assert_checkequal(r, 'horizontalalignment'); +r = completion('ho', 'files'); +assert_checkequal(r, []); +r = completion('abo'); +assert_checkequal(r, ['abort'; 'about']); +r = completion('abo', 'functions'); +assert_checkequal(r, 'about'); +r = completion('abo', 'commands'); +assert_checkequal(r, 'abort'); +r = completion('abo', 'variables'); +assert_checkequal(r, []); +r = completion('abo', 'macros'); +assert_checkequal(r, []); +r = completion('abo', 'graphic_properties'); +assert_checkequal(r, []); +r = completion('abo', 'files'); +assert_checkequal(r, []); +// Output arguments +[functions,commands,variables,macros,graphic_properties,files] = completion('ho'); +assert_checkequal(functions, ['host']); +assert_checkequal(commands, []); +assert_checkequal(variables, ['home']); +assert_checkequal(macros, ['horner'; 'hotcolormap'; 'householder']); +assert_checkequal(graphic_properties, ['horizontalalignment']); +assert_checkequal(files, []); +[functions,commands,variables,macros,graphic_properties,files] = completion('abo'); +assert_checkequal(functions, ['about']); +assert_checkequal(commands, ['abort']); +assert_checkequal(variables, []); +assert_checkequal(macros, []); +assert_checkequal(graphic_properties, []); +assert_checkequal(files, []); +if (getos() == "Windows") then; + [functions,commands,variables,macros,graphic_properties,files] = completion('C:\Documents and'); + assert_checkequal(files, ['Documents and Settings\']); +else + [functions,commands,variables,macros,graphic_properties,files] = completion('/tm'); + assert_checkequal(files, ['tmp/']); +end +assert_checkerror("completion(2)",[], 999); +assert_checkerror("completion([''aze'',''bze''])",[], 999); +assert_checkerror("completion(''a'',''foo'')",[], 999); +assert_checkerror("completion(''a'',2)",[], 999); +assert_checkerror("[aazeaz,azeza,e,aze,azea,zazeaze,azeaze,azeze,aze,azeaz]=completion(""aaze"")",[],78); diff --git a/modules/completion/tests/unit_tests/completion.tst b/modules/completion/tests/unit_tests/completion.tst new file mode 100755 index 000000000..e5041a811 --- /dev/null +++ b/modules/completion/tests/unit_tests/completion.tst @@ -0,0 +1,199 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2007-2008 - INRIA +// Copyright (C) 2013 - Scilab Enterprises - Simon MARCHETTO +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +//=============================== +// unit tests completion +//=============================== + +function [] = check_completion(actual, expected) + for i = 1 : size(actual, 'r') + [start,end,match] = regexp(actual(i,1), '/(?i)^(' + expected + ')/'); + assert_checktrue(match <> ''); + end +endfunction + +// File paths + +if (getos() == "Windows") then + r = completion('C:\Documents and'); + assert_checkequal(r, 'Documents and Settings\'); + + r = completion('c:\documents And'); + assert_checkequal(r, 'Documents and Settings\'); +else + r = completion('/tm'); + assert_checkequal(r, 'tmp/'); + + r = completion('/TM'); + // We are still case sensitive + assert_checkequal(r, []); +end + +r = completion(SCI+'/to'); +r2 = completion(SCI+'/TO'); +if (getos() == "Windows") then + assert_checkequal(r, ['tools\']); + assert_checkequal(r2, ['tools\']); +else + assert_checkequal(r, ['tools/']); + assert_checkequal(r2, []); +end + + +// Predefined variables + +r = completion('ho', 'variables'); +check_completion(r, 'home'); + +r = completion('HO', 'variables'); +check_completion(r, 'home'); + +r = completion('%na'); +check_completion(r, '%nan'); + +r = completion('%Na'); +check_completion(r, '%nan'); + +r = completion('tmp'); +check_completion(r, 'TMPDIR'); + +r = completion('Tmp'); +check_completion(r, 'TMPDIR'); + +r = completion('%', 'variables'); +rexpected = ['%F'; '%T'; '%e'; '%eps'; '%f'; '%fftw'; '%gui'; '%i';'%inf'; '%io'; + '%modalWarning'; '%nan'; '%pi'; '%s'; '%t'; '%tk'; '%toolboxes'; '%toolboxes_dir'; '%z']; +assert_checkequal(r, rexpected); + + +// User variables + +variable1_completion1 = 1; +variable1_completion2 = 2; +r = completion('variable1_comp'); +assert_checkequal(r, ['variable1_completion1'; 'variable1_completion2']); +r = completion('VARIABLE1_COMP'); +assert_checkequal(r, ['variable1_completion1'; 'variable1_completion2']); + +variable2_completion = 1; +VARIABLE2_COMPLETION = 2; +r = completion('variable2_comp'); +assert_checkequal(r, ['VARIABLE2_COMPLETION'; 'variable2_completion']); +r = completion('VARIABLE2_COMP'); +assert_checkequal(r, ['VARIABLE2_COMPLETION'; 'variable2_completion']); + + +// Predefined functions, macros and commands + +r = completion('floo'); +check_completion(r, 'floor'); + +r = completion('FLOO'); +check_completion(r, 'floor'); + +r = completion('abort'); +check_completion(r, 'abort'); + +r = completion('Abort'); +check_completion(r, 'abort'); + + +// User functions, macros, commands + +function [] = function_completion(x); +endfunction; +r = completion('function_comp'); +assert_checkequal(r, 'function_completion'); +r = completion('FUNCTION_COMP'); +assert_checkequal(r, 'function_completion'); + +function [] = FUNCTION_COMPLETION(x); +endfunction; +r = completion('function_comp'); +assert_checkequal(r, ['FUNCTION_COMPLETION'; 'function_completion']); +r = completion('FUNCTION_COMP'); +assert_checkequal(r, ['FUNCTION_COMPLETION'; 'function_completion']); + + +// Filter argument + +r = completion('ho'); +assert_checkequal(r, ['home'; 'horizontalalignment'; 'horner'; 'host'; 'hotcolormap'; 'householder']); + +r = completion('ho', 'functions'); +assert_checkequal(r, 'host'); + +r = completion('ho', 'commands'); +assert_checkequal(r, []); + +r = completion('ho', 'macros'); +assert_checkequal(r, ['horner'; 'hotcolormap'; 'householder']); + +r = completion('ho', 'variables'); +assert_checkequal(r, 'home'); + +r = completion('ho', 'graphic_properties'); +assert_checkequal(r, 'horizontalalignment'); + +r = completion('ho', 'files'); +assert_checkequal(r, []); + +r = completion('abo'); +assert_checkequal(r, ['abort'; 'about']); + +r = completion('abo', 'functions'); +assert_checkequal(r, 'about'); + +r = completion('abo', 'commands'); +assert_checkequal(r, 'abort'); + +r = completion('abo', 'variables'); +assert_checkequal(r, []); + +r = completion('abo', 'macros'); +assert_checkequal(r, []); + +r = completion('abo', 'graphic_properties'); +assert_checkequal(r, []); + +r = completion('abo', 'files'); +assert_checkequal(r, []); + + +// Output arguments + +[functions,commands,variables,macros,graphic_properties,files] = completion('ho'); +assert_checkequal(functions, ['host']); +assert_checkequal(commands, []); +assert_checkequal(variables, ['home']); +assert_checkequal(macros, ['horner'; 'hotcolormap'; 'householder']); +assert_checkequal(graphic_properties, ['horizontalalignment']); +assert_checkequal(files, []); + +[functions,commands,variables,macros,graphic_properties,files] = completion('abo'); +assert_checkequal(functions, ['about']); +assert_checkequal(commands, ['abort']); +assert_checkequal(variables, []); +assert_checkequal(macros, []); +assert_checkequal(graphic_properties, []); +assert_checkequal(files, []); + +if (getos() == "Windows") then; + [functions,commands,variables,macros,graphic_properties,files] = completion('C:\Documents and'); + assert_checkequal(files, ['Documents and Settings\']); +else + [functions,commands,variables,macros,graphic_properties,files] = completion('/tm'); + assert_checkequal(files, ['tmp/']); +end + +assert_checkerror("completion(2)",[], 999); + +assert_checkerror("completion([''aze'',''bze''])",[], 999); +assert_checkerror("completion(''a'',''foo'')",[], 999); +assert_checkerror("completion(''a'',2)",[], 999); +assert_checkerror("[aazeaz,azeza,e,aze,azea,zazeaze,azeaze,azeze,aze,azeaz]=completion(""aaze"")",[],78); diff --git a/modules/completion/tests/unit_tests/getcommonpart.dia.ref b/modules/completion/tests/unit_tests/getcommonpart.dia.ref new file mode 100755 index 000000000..17c526dea --- /dev/null +++ b/modules/completion/tests/unit_tests/getcommonpart.dia.ref @@ -0,0 +1,30 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +r = getcommonpart(['home','homer']); +if r <> 'home' then bugmes();quit;end; +r = getcommonpart(['gethistory','gethistoryfile','gethis']); +if r <> 'gethis' then bugmes();quit;end; +r = getcommonpart(['gethistory','gethistoryfile','geths']); +if r <> 'geth' then bugmes();quit;end; +ws = ['umf_ludel', 'umf_lufact', 'umf_luget', 'umf_luinfo', 'umf_lusolve', 'umfpack', 'umfpacklib']; +r = getcommonpart(ws); +if r <> 'umf' then bugmes();quit;end; +ws = ['umf_ludel', 'umf_lufact', 'umf_luget', 'umf_luinfo', 'umf_lusolve']; +r = getcommonpart(ws); +if r <> 'umf_lu' then bugmes();quit;end; +ws = ['c:\Program files\GIT-scilab-branch-5.1','c:\Program files\GIT-scilab-master']; +r = getcommonpart(ws); +if r <> 'c:\Program files\GIT-scilab-' then bugmes();quit;end; +ws = ['/home/sylvestre/GIT-scilab-branch-5.1','/home/sylvestre/GIT-scilab-master']; +r = getcommonpart(ws); +if r <> '/home/sylvestre/GIT-scilab-' then bugmes();quit;end; diff --git a/modules/completion/tests/unit_tests/getcommonpart.tst b/modules/completion/tests/unit_tests/getcommonpart.tst new file mode 100755 index 000000000..12b32e84a --- /dev/null +++ b/modules/completion/tests/unit_tests/getcommonpart.tst @@ -0,0 +1,39 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +r = getcommonpart(['home','homer']); +if r <> 'home' then pause,end; + +r = getcommonpart(['gethistory','gethistoryfile','gethis']); +if r <> 'gethis' then pause,end; + +r = getcommonpart(['gethistory','gethistoryfile','geths']); +if r <> 'geth' then pause,end; + +ws = ['umf_ludel', 'umf_lufact', 'umf_luget', 'umf_luinfo', 'umf_lusolve', 'umfpack', 'umfpacklib']; +r = getcommonpart(ws); +if r <> 'umf' then pause,end; + +ws = ['umf_ludel', 'umf_lufact', 'umf_luget', 'umf_luinfo', 'umf_lusolve']; +r = getcommonpart(ws); +if r <> 'umf_lu' then pause,end; + +ws = ['c:\Program files\GIT-scilab-branch-5.1','c:\Program files\GIT-scilab-master']; +r = getcommonpart(ws); +if r <> 'c:\Program files\GIT-scilab-' then pause,end; + +ws = ['/home/sylvestre/GIT-scilab-branch-5.1','/home/sylvestre/GIT-scilab-master']; +r = getcommonpart(ws); +if r <> '/home/sylvestre/GIT-scilab-' then pause,end; diff --git a/modules/completion/tests/unit_tests/getfields.dia.ref b/modules/completion/tests/unit_tests/getfields.dia.ref new file mode 100755 index 000000000..9cdade933 --- /dev/null +++ b/modules/completion/tests/unit_tests/getfields.dia.ref @@ -0,0 +1,21 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +a=mlist(['TYPE' 'abcd' 'efgh' 'abce' 'ab']); +r = getfields('a.'); +if ~and(r==['ab'; 'abcd'; 'abce'; 'efgh']) then bugmes();quit;end; +r = getfields('a.a'); +if ~and(r==['ab'; 'abcd'; 'abce']) then bugmes();quit;end; +r = getfields('foo;a.abc'); +if ~and(r==['abcd'; 'abce']) then bugmes();quit;end; +r = getfields('b.'); +if ~isempty(r) then bugmes();quit;end diff --git a/modules/completion/tests/unit_tests/getfields.tst b/modules/completion/tests/unit_tests/getfields.tst new file mode 100755 index 000000000..45e815e77 --- /dev/null +++ b/modules/completion/tests/unit_tests/getfields.tst @@ -0,0 +1,26 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2010 - Calixte DENIZET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +a=mlist(['TYPE' 'abcd' 'efgh' 'abce' 'ab']); +r = getfields('a.'); +if ~and(r==['ab'; 'abcd'; 'abce'; 'efgh']) then pause,end; + +r = getfields('a.a'); +if ~and(r==['ab'; 'abcd'; 'abce']) then pause,end; + +r = getfields('foo;a.abc'); +if ~and(r==['abcd'; 'abce']) then pause,end; + +r = getfields('b.'); +if ~isempty(r) then pause,end \ No newline at end of file diff --git a/modules/completion/tests/unit_tests/getfilepartlevel.dia.ref b/modules/completion/tests/unit_tests/getfilepartlevel.dia.ref new file mode 100755 index 000000000..b94d35424 --- /dev/null +++ b/modules/completion/tests/unit_tests/getfilepartlevel.dia.ref @@ -0,0 +1,32 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +r = getfilepartlevel('cd c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd(""c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd(''c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd /home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd(""/home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd(''/home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then bugmes();quit;end; +r = getfilepartlevel('cd ../'); +if r <>'../' then bugmes();quit;end; +r = getfilepartlevel('cd ~/'); +if r <>'~/' then bugmes();quit;end; +r = getfilepartlevel('cd ~'); +if r <>'~' then bugmes();quit;end; +r = getfilepartlevel('cd '); +if r <>'' then bugmes();quit;end; diff --git a/modules/completion/tests/unit_tests/getfilepartlevel.tst b/modules/completion/tests/unit_tests/getfilepartlevel.tst new file mode 100755 index 000000000..8715a7411 --- /dev/null +++ b/modules/completion/tests/unit_tests/getfilepartlevel.tst @@ -0,0 +1,44 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= + +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +r = getfilepartlevel('cd c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then pause,end; + +r = getfilepartlevel('cd(""c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then pause,end; + +r = getfilepartlevel('cd(''c:\Program Files\scilab-5.1'); +if r <>'c:\Program Files\scilab-5.1' then pause,end; + +r = getfilepartlevel('cd /home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then pause,end; + +r = getfilepartlevel('cd(""/home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then pause,end; + +r = getfilepartlevel('cd(''/home/scilabs/scilab-5.1'); +if r <>'/home/scilabs/scilab-5.1' then pause,end; + +r = getfilepartlevel('cd ../'); +if r <>'../' then pause,end; + +r = getfilepartlevel('cd ~/'); +if r <>'~/' then pause,end; + +r = getfilepartlevel('cd ~'); +if r <>'~' then pause,end; + +r = getfilepartlevel('cd '); +if r <>'' then pause,end; diff --git a/modules/completion/tests/unit_tests/getpartlevel.dia.ref b/modules/completion/tests/unit_tests/getpartlevel.dia.ref new file mode 100755 index 000000000..9251c1067 --- /dev/null +++ b/modules/completion/tests/unit_tests/getpartlevel.dia.ref @@ -0,0 +1,22 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then bugmes();quit;end +r = getpartlevel('cd c:\Program Files\scilab-5.1'); +if r <>'1' then bugmes();quit;end; +r = getpartlevel('cd(""c:\Program Files\scilab-5.1'); +if r <>'1' then bugmes();quit;end; +r = getpartlevel('printf(""hello"")'); +if r <>'' then bugmes();quit;end; +r = getpartlevel('g.children'); +if r <> 'children' then bugmes();quit;end +r = getpartlevel('1+myvariable'); +if r <> 'myvariable' then bugmes();quit;end diff --git a/modules/completion/tests/unit_tests/getpartlevel.tst b/modules/completion/tests/unit_tests/getpartlevel.tst new file mode 100755 index 000000000..d00ecacb3 --- /dev/null +++ b/modules/completion/tests/unit_tests/getpartlevel.tst @@ -0,0 +1,28 @@ +// ============================================================================= +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// +// This file is distributed under the same license as the Scilab package. +// ============================================================================= +// <-- CLI SHELL MODE --> + +ilib_verbose(0); +ierr = exec(SCI+"/modules/completion/tests/utilities/build_primitives.sce","errcatch",-1); +if ierr<>0 then pause, end +ierr = exec(TMPDIR + "/completion/loader.sce","errcatch",-1); +if ierr<>0 then pause, end + +r = getpartlevel('cd c:\Program Files\scilab-5.1'); +if r <>'1' then pause,end; + +r = getpartlevel('cd(""c:\Program Files\scilab-5.1'); +if r <>'1' then pause,end; + +r = getpartlevel('printf(""hello"")'); +if r <>'' then pause,end; + +r = getpartlevel('g.children'); +if r <> 'children' then pause,end + +r = getpartlevel('1+myvariable'); +if r <> 'myvariable' then pause,end \ No newline at end of file diff --git a/modules/completion/tests/utilities/build_primitives.sce b/modules/completion/tests/utilities/build_primitives.sce new file mode 100755 index 000000000..06e698083 --- /dev/null +++ b/modules/completion/tests/utilities/build_primitives.sce @@ -0,0 +1,66 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO - Allan CORNET +// Copyright (C) 2009-2010 - DIGITEO - Pierre MARECHAL +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +previous_dir = pwd(); +cd(get_absolute_file_path("build_primitives.sce")); +file_path = pwd(); +mkdir(TMPDIR + "/completion"); +cd(TMPDIR + "/completion"); + +ilib_name = "completion_c"; +files = [ "sci_completeline.c" , .. +"sci_getpartlevel.c" , .. +"sci_getfilepartlevel.c", .. +"sci_getcommonpart.c" , .. +"sci_getfields.c" ]; + +for i = 1 : size(files, "*") + copyfile(file_path + "/" + files(i), TMPDIR + "/completion"); +end + +if getos() == "Windows" then + libs = SCI + "/bin/scicompletion"; + cflags = "-I " + SCI +"/modules/completion/includes"; + +elseif isdir(SCI+"/modules/completion/includes") + // Unix source version + libs = SCI + "/modules/completion/.libs/libscicompletion"; + cflags = "-I " + SCI +"/modules/completion/includes -I " + SCI + "/modules/localization/includes"; + +else + // Unix binary version + SCI_LIB = strsubst(SCI,"/share\/scilab$/","lib/scilab" ,"r"); + SCI_INCLUDE = strsubst(SCI,"/share\/scilab$/","include/scilab" ,"r"); + libs = SCI_LIB + "/libscicompletion"; + cflags = "-I " + SCI_INCLUDE +end + +// name known in scilab , C function called +table = ["completeline" ,"sci_completeline" ; +"getpartlevel" ,"sci_getpartlevel" ; +"getfilepartlevel","sci_getfilepartlevel"; +"getcommonpart" ,"sci_getcommonpart" ; +"getfields" ,"sci_getfields" ]; + + +libname = ilib_build(ilib_name,table,files,libs,[],"",cflags); + +cd(previous_dir); + +clear ilib_build; +clear libname; +clear table; +clear libs; +clear files; +clear ilib_name; +clear previous_dir; +clear gateway_c_dir; +clear SCI_LIB; +clear SCI_INCLUDE; diff --git a/modules/completion/tests/utilities/sci_completeline.c b/modules/completion/tests/utilities/sci_completeline.c new file mode 100755 index 000000000..ea87d0511 --- /dev/null +++ b/modules/completion/tests/utilities/sci_completeline.c @@ -0,0 +1,191 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#define __USE_DEPRECATED_STACK_FUNCTIONS__ +#include "stack-c.h" +#include "completeLine.h" +#include "localization.h" +#include "Scierror.h" +#include "BOOL.h" +#include "freeArrayOfString.h" +#include "MALLOC.h" +/*--------------------------------------------------------------------------*/ +int sci_completeline(char *fname, unsigned long fname_len) +{ + char *postCaretLine = NULL; + char **InputString_Parameter6 = NULL; + + CheckRhs(5, 6); + CheckLhs(1, 1); + + if (Rhs == 6) + { + if (GetType(6) == sci_strings) + { + int m6 = 0; + int n6 = 0; + + GetRhsVar(6, MATRIX_OF_STRING_DATATYPE, &m6, &n6, &InputString_Parameter6); + if ( (m6 == 1) && (n6 == 1) ) + { + postCaretLine = InputString_Parameter6[0]; + } + else + { + freeArrayOfString(InputString_Parameter6, m6 * n6); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 6); + return 0; + } + } + else + { + Scierror(999, _("%s: Wrong type for input arguments.\n"), fname); + return 0; + } + } + else + { + InputString_Parameter6 = (char**)MALLOC(sizeof(char*) * 1); + InputString_Parameter6[0] = (char*)MALLOC(sizeof(char) * ((int)strlen("") + 1)); + strcpy(InputString_Parameter6[0], ""); + postCaretLine = InputString_Parameter6[0]; + } + + if ( (GetType(1) == sci_strings) && + (GetType(2) == sci_strings) && + (GetType(3) == sci_strings) && + (GetType(4) == sci_strings) && + (GetType(5) == sci_boolean) ) + { + char *currentline = NULL; + char *stringToAdd = NULL; + char *filePattern = NULL; + char *defaultPattern = NULL; + BOOL stringToAddIsPath = FALSE; + int l5 = 0; + int m = 0, n = 0; + + char **InputString_Parameter1 = NULL; + char **InputString_Parameter2 = NULL; + char **InputString_Parameter3 = NULL; + char **InputString_Parameter4 = NULL; + + char *result = NULL; + + GetRhsVar(1, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString_Parameter1); + if ( (m == 1) && (n == 1) ) + { + currentline = InputString_Parameter1[0]; + } + else + { + freeArrayOfString(InputString_Parameter1, m * n); + freeArrayOfString(InputString_Parameter6, 1); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1); + return 0; + } + + GetRhsVar(2, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString_Parameter2); + if ( (m == 1) && (n == 1) ) + { + stringToAdd = InputString_Parameter2[0]; + } + else + { + freeArrayOfString(InputString_Parameter1, 1); + freeArrayOfString(InputString_Parameter2, m * n); + freeArrayOfString(InputString_Parameter6, 1); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 2); + return 0; + } + + GetRhsVar(3, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString_Parameter3); + if ( (m == 1) && (n == 1) ) + { + filePattern = InputString_Parameter3[0]; + } + else + { + freeArrayOfString(InputString_Parameter1, 1); + freeArrayOfString(InputString_Parameter2, 1); + freeArrayOfString(InputString_Parameter3, m * n); + freeArrayOfString(InputString_Parameter6, 1); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 3); + return 0; + } + + GetRhsVar(4, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString_Parameter4); + if ( (m == 1) && (n == 1) ) + { + defaultPattern = InputString_Parameter4[0]; + } + else + { + freeArrayOfString(InputString_Parameter1, 1); + freeArrayOfString(InputString_Parameter2, 1); + freeArrayOfString(InputString_Parameter3, 1); + freeArrayOfString(InputString_Parameter4, m * n); + freeArrayOfString(InputString_Parameter6, 1); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 4); + return 0; + } + + GetRhsVar(5, MATRIX_OF_BOOLEAN_DATATYPE, &m, &n, &l5); + if ( (m == 1) && (n == 1) ) + { + stringToAddIsPath = (BOOL) * istk(l5); + } + else + { + freeArrayOfString(InputString_Parameter1, 1); + freeArrayOfString(InputString_Parameter2, 1); + freeArrayOfString(InputString_Parameter3, 1); + freeArrayOfString(InputString_Parameter4, 1); + freeArrayOfString(InputString_Parameter6, 1); + Scierror(999, _("%s: Wrong size for input argument #%d: A boolean expected.\n"), fname, 4); + return 0; + } + + result = completeLine(currentline, stringToAdd, filePattern, defaultPattern, stringToAddIsPath, postCaretLine); + + if (result == NULL) + { + int l = 0; + m = 0, n = 0; + CreateVar(Rhs + 1, STRING_DATATYPE, &m, &n, &l); + } + else + { + n = 1; + CreateVarFromPtr(Rhs + 1, STRING_DATATYPE, (m = (int)strlen(result), &m), &n, &result); + if (result) + { + FREE(result); + result = NULL; + } + } + LhsVar(1) = Rhs + 1; + + freeArrayOfString(InputString_Parameter1, 1); + freeArrayOfString(InputString_Parameter2, 1); + freeArrayOfString(InputString_Parameter3, 1); + freeArrayOfString(InputString_Parameter4, 1); + freeArrayOfString(InputString_Parameter6, 1); + + } + else + { + Scierror(999, _("%s: Wrong type for input arguments.\n"), fname); + } + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/tests/utilities/sci_getcommonpart.c b/modules/completion/tests/utilities/sci_getcommonpart.c new file mode 100755 index 000000000..66022be78 --- /dev/null +++ b/modules/completion/tests/utilities/sci_getcommonpart.c @@ -0,0 +1,70 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#define __USE_DEPRECATED_STACK_FUNCTIONS__ +#include "stack-c.h" +#include "localization.h" +#include "Scierror.h" +#include "BOOL.h" +#include "freeArrayOfString.h" +#include "MALLOC.h" +#include "getCommonPart.h" +/*--------------------------------------------------------------------------*/ +int sci_getcommonpart(char *fname, unsigned long fname_len) +{ + CheckRhs(1, 1); + CheckLhs(1, 1); + + if (GetType(1) == sci_strings) + { + int m = 0, n = 0; + char **InputString = NULL; + char *Output = NULL; + + GetRhsVar(1, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString); + if ( ( (m == 1) && (n != 1) ) || ( (m != 1) && (n == 1) ) ) + { + Output = getCommonPart(InputString, m * n); + freeArrayOfString(InputString, m * n); + + if (Output == NULL) + { + int l = 0; + m = 0, n = 0; + CreateVar(Rhs + 1, STRING_DATATYPE, &m, &n, &l); + } + else + { + n = 1; + CreateVarFromPtr(Rhs + 1, STRING_DATATYPE, (m = (int)strlen(Output), &m), &n, &Output); + if (Output) + { + FREE(Output); + Output = NULL; + } + } + + LhsVar(1) = Rhs + 1; + } + else + { + freeArrayOfString(InputString, m * n); + Scierror(999, _("%s: Wrong size for input argument #%d.\n"), fname, 1); + } + } + else + { + Scierror(999, _("%s: Wrong type for input arguments.\n"), fname); + } + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/tests/utilities/sci_getfields.c b/modules/completion/tests/utilities/sci_getfields.c new file mode 100755 index 000000000..6d48bdbf3 --- /dev/null +++ b/modules/completion/tests/utilities/sci_getfields.c @@ -0,0 +1,93 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#include "api_scilab.h" +#include "localization.h" +#include "Scierror.h" +#include "freeArrayOfString.h" +#include "MALLOC.h" +#include "completion.h" +#include "getPartLine.h" +/*--------------------------------------------------------------------------*/ +int sci_getfields(char *fname, unsigned long fname_len) +{ + SciErr sciErr; + int *piAddr = NULL; + int rows = 0; + int cols = 0; + int length = 0; + char *line = NULL; + char **fields = NULL; + int sizefields = 0; + + CheckRhs(1, 1); + CheckLhs(1, 1); + + sciErr = getVarAddressFromPosition(pvApiCtx, 1, &piAddr); + if (sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + + sciErr = getMatrixOfString(pvApiCtx, piAddr, &rows, &cols, NULL, NULL); + if (sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + + if (rows != 1 || cols != 1) + { + Scierror(999, _("%s: Wrong size for input argument: A string expected.\n"), fname); + } + + sciErr = getMatrixOfString(pvApiCtx, piAddr, &rows, &cols, &length, NULL); + if (sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + + line = (char*)MALLOC(sizeof(char) * (length + 1)); + sciErr = getMatrixOfString(pvApiCtx, piAddr, &rows, &cols, &length, &line); + if (sciErr.iErr) + { + FREE(line); + printError(&sciErr, 0); + return 0; + } + + fields = completionOnFields(line, getPartLevel(line), &sizefields); + FREE(line); + + if (fields != NULL) + { + sciErr = createMatrixOfString(pvApiCtx, Rhs + 1, sizefields, 1, fields); + } + else + { + char *emptystr = ""; + sciErr = createMatrixOfString(pvApiCtx, Rhs + 1, 1, 1, &emptystr); + } + + freeArrayOfString(fields, sizefields); + if (sciErr.iErr) + { + printError(&sciErr, 0); + return 0; + } + + LhsVar(1) = Rhs + 1; + + return 0; +} diff --git a/modules/completion/tests/utilities/sci_getfilepartlevel.c b/modules/completion/tests/utilities/sci_getfilepartlevel.c new file mode 100755 index 000000000..8f3b8a304 --- /dev/null +++ b/modules/completion/tests/utilities/sci_getfilepartlevel.c @@ -0,0 +1,69 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#define __USE_DEPRECATED_STACK_FUNCTIONS__ +#include "stack-c.h" +#include "localization.h" +#include "Scierror.h" +#include "BOOL.h" +#include "freeArrayOfString.h" +#include "MALLOC.h" +#include "getPartLine.h" +/*--------------------------------------------------------------------------*/ +int sci_getfilepartlevel(char *fname, unsigned long fname_len) +{ + CheckRhs(1, 1); + CheckLhs(1, 1); + + if (GetType(1) == sci_strings) + { + int m = 0, n = 0; + char **InputString = NULL; + + GetRhsVar(1, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString); + if ( (m == 1) && (n == 1) ) + { + char *result = NULL; + result = getFilePartLevel(InputString[0]); + if (result == NULL) + { + int l = 0; + m = 0, n = 0; + CreateVar(Rhs + 1, STRING_DATATYPE, &m, &n, &l); + } + else + { + n = 1; + CreateVarFromPtr(Rhs + 1, STRING_DATATYPE, (m = (int)strlen(result), &m), &n, &result); + if (result) + { + FREE(result); + result = NULL; + } + } + + LhsVar(1) = Rhs + 1; + } + else + { + freeArrayOfString(InputString, m * n); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1); + } + } + else + { + Scierror(999, _("%s: Wrong type for input argument #%d: A string expected.\n"), fname, 1); + } + + return 0; +} +/*--------------------------------------------------------------------------*/ diff --git a/modules/completion/tests/utilities/sci_getpartlevel.c b/modules/completion/tests/utilities/sci_getpartlevel.c new file mode 100755 index 000000000..10e55108d --- /dev/null +++ b/modules/completion/tests/utilities/sci_getpartlevel.c @@ -0,0 +1,69 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ +/*--------------------------------------------------------------------------*/ +#define __USE_DEPRECATED_STACK_FUNCTIONS__ +#include "stack-c.h" +#include "localization.h" +#include "Scierror.h" +#include "BOOL.h" +#include "freeArrayOfString.h" +#include "MALLOC.h" +#include "getPartLine.h" +/*--------------------------------------------------------------------------*/ +int sci_getpartlevel(char *fname, unsigned long fname_len) +{ + CheckRhs(1, 1); + CheckLhs(1, 1); + + if (GetType(1) == sci_strings) + { + int m = 0, n = 0; + char **InputString = NULL; + + GetRhsVar(1, MATRIX_OF_STRING_DATATYPE, &m, &n, &InputString); + if ( (m == 1) && (n == 1) ) + { + char *result = NULL; + result = getPartLevel(InputString[0]); + + if (result == NULL) + { + int l = 0; + m = 0, n = 0; + CreateVar(Rhs + 1, STRING_DATATYPE, &m, &n, &l); + } + else + { + n = 1; + CreateVarFromPtr(Rhs + 1, STRING_DATATYPE, (m = (int)strlen(result), &m), &n, &result); + if (result) + { + FREE(result); + result = NULL; + } + } + LhsVar(1) = Rhs + 1; + } + else + { + freeArrayOfString(InputString, m * n); + Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1); + } + } + else + { + Scierror(999, _("%s: Wrong type for input argument #%d: A string expected.\n"), fname, 1); + } + + return 0; +} +/*--------------------------------------------------------------------------*/ -- cgit