Lines Matching refs:what
220 std::cerr << e.what() << std::endl; in scan_file()
226 std::cerr << e.what() << std::endl; in scan_file()
332 boost::smatch what; in process_script() local
341 if(regex_match(line, what, comment_parser)) in process_script()
345 else if(regex_match(line, what, scan_parser)) in process_script()
347 std::string f = unquote(what[1].str()); in process_script()
368 else if(regex_match(line, what, debug_parser)) in process_script()
370 debug = unquote(what[1].str()); in process_script()
372 else if(regex_match(line, what, define_scanner_parser)) in process_script()
374 add_file_scanner(unquote(what.str(1)), unquote(what.str(2)), unquote(what.str(3)), in process_script()
375 unquote(what.str(4)), unquote(what.str(5)), unquote(what.str(6))); in process_script()
377 else if(regex_match(line, what, scan_dir_parser)) in process_script()
379 std::string d = unquote(what[1].str()); in process_script()
380 std::string m = unquote(what[2].str()); in process_script()
381 bool r = unquote(what[3].str()) == "true"; in process_script()
404 else if(regex_match(line, what, rewrite_parser)) in process_script()
406 bool id = what[1] == "rewrite-id"; in process_script()
407 std::string a = unquote(what[2].str()); in process_script()
408 std::string b = unquote(what[3].str()); in process_script()
434 else if(regex_match(line, what, entry_parser)) in process_script()
443 info.term = escape_to_xml(unquote(what.str(1))); in process_script()
444 std::string s = unquote(what.str(2)); in process_script()
448 …info.search_text = boost::regex("\\<" + what.str(1) + "\\>", boost::regex::icase|boost::regex::per… in process_script()
450 s = unquote(what.str(3)); in process_script()
453 if(what[4].matched) in process_script()
454 info.category = unquote(what.str(4)); in process_script()