Lines Matching refs:it

280     for ( CommandList::const_iterator it = aCommands.begin();  in Run()  local
281 ok AND it != aCommands.end(); in Run()
282 ++it ) in Run()
284 ok = (*it)->Run(); in Run()
344 for ( StringVector::const_iterator it = aParameters.begin(); in do_Init() local
345 it != itEnd; in do_Init()
348 if ( *it == command::C_opt_Verbose ) in do_Init()
349 do_clVerbose(it,itEnd); in do_Init()
350 else if ( *it == command::C_opt_LangAll in do_Init()
351 OR *it == command::C_opt_Name in do_Init()
352 OR *it == command::C_opt_DevmanFile ) in do_Init()
353 do_clParse(it,itEnd); in do_Init()
354 else if (*it == command::C_opt_CreateHtml) in do_Init()
355 do_clCreateHtml(it,itEnd); in do_Init()
356 else if (*it == command::C_opt_SinceFile) in do_Init()
357 do_clSinceFile(it,itEnd); in do_Init()
358 else if (*it == command::C_opt_IgnoreDefine) in do_Init()
360 AddIgnoreDefine(*(++it)); in do_Init()
361 ++it; in do_Init()
363 else if (*it == command::C_opt_ExternNamespace) in do_Init()
365 sExternNamespace = *(++it); in do_Init()
366 ++it; in do_Init()
374 else if (*it == command::C_opt_ExternRoot) in do_Init()
376 ++it; in do_Init()
378 if ( csv::compare(*it, 0, "http://", 7) != 0 ) in do_Init()
380 sl() << "http://" << *it; in do_Init()
386 ++it; in do_Init()
394 else if (*it == "-h" OR *it == "-?" OR *it == "?") in do_Init()
397 else if ( *it == command::C_opt_Parse ) in do_Init()
400 ++it; in do_Init()
406 << *it in do_Init()
498 v_nr(StringVector::const_iterator it) in v_nr() argument
500 return int( *(*it).c_str() ) - int('0'); in v_nr()
505 CommandLine::do_clVerbose( opt_iter & it, in do_clVerbose() argument
508 ++it; in do_clVerbose()
509 if ( it == itEnd ? true : v_nr(it) < 0 OR v_nr(it) > 7 ) in do_clVerbose()
511 nDebugStyle = v_nr(it); in do_clVerbose()
512 ++it; in do_clVerbose()
516 CommandLine::do_clParse( opt_iter & it, in do_clParse() argument
521 pCmd_Parse->Init(it, itEnd); in do_clParse()
526 CommandLine::do_clCreateHtml( opt_iter & it, in do_clCreateHtml() argument
530 pCommand_CreateHtml->Init(it, itEnd); in do_clCreateHtml()
535 CommandLine::do_clSinceFile( opt_iter & it, in do_clSinceFile() argument
538 pSinceTransformator->Init(it, itEnd); in do_clSinceFile()