• Home
  • Raw
  • Download

Lines Matching refs:cit

1104         for (std::vector<std::string>::const_iterator cit = syspaths.begin();  in initialise_options()  local
1105 cit != end; ++cit) in initialise_options()
1107 std::string full(*cit); in initialise_options()
1111 std::cerr << "initialise_options: option: -S" << *cit in initialise_options()
1124 for (std::vector<std::string>::const_iterator cit = ip.paths.begin(); in initialise_options() local
1125 cit != end; ++cit) in initialise_options()
1127 std::string full(*cit); in initialise_options()
1131 std::cerr << "initialise_options: option: -I" << *cit in initialise_options()
1163 for (std::vector<std::string>::const_iterator cit = macros.begin(); in initialise_options() local
1164 cit != end; ++cit) in initialise_options()
1167 std::cerr << "initialise_options: option: -D" << *cit in initialise_options()
1170 ctx.add_macro_definition(*cit, true); in initialise_options()
1179 for (std::vector<std::string>::const_iterator cit = predefmacros.begin(); in initialise_options() local
1180 cit != end; ++cit) in initialise_options()
1183 std::cerr << "initialise_options: option: -P" << *cit in initialise_options()
1186 ctx.add_macro_definition(*cit, true); in initialise_options()
1195 for (std::vector<std::string>::const_iterator cit = undefmacros.begin(); in initialise_options() local
1196 cit != end; ++cit) in initialise_options()
1199 std::cerr << "initialise_options: option: -U" << *cit in initialise_options()
1202 ctx.remove_macro_definition(*cit); in initialise_options()
1489 for (std::vector<std::string>::const_reverse_iterator cit = force.rbegin(); in preprocess_file() local
1490 cit != rend; /**/) in preprocess_file()
1492 std::string forceinclude(*cit); in preprocess_file()
1497 it.force_include(forceinclude.c_str(), ++cit == rend); in preprocess_file()