Lines Matching refs:handles_

449     handles_.emplace(Option::INPUTPATH, bind(&PackageParser::AddInput, this, _1));
450 handles_.emplace(Option::PACKAGENAME, bind(&PackageParser::AddPackageName, this, _1));
451 handles_.emplace(Option::OUTPUTPATH, bind(&PackageParser::AddOutput, this, _1));
452 handles_.emplace(Option::RESHEADER, bind(&PackageParser::AddResourceHeader, this, _1));
453 handles_.emplace(Option::FORCEWRITE, [this](const string &) -> uint32_t { return ForceWrite(); });
454 handles_.emplace(Option::VERSION, [this](const string &) -> uint32_t { return PrintVersion(); });
455 handles_.emplace(Option::MODULES, bind(&PackageParser::AddMoudleNames, this, _1));
456 handles_.emplace(Option::JSON, bind(&PackageParser::AddConfig, this, _1));
457 handles_.emplace(Option::STARTID, bind(&PackageParser::AddStartId, this, _1));
458 handles_.emplace(Option::APPEND, bind(&PackageParser::AddAppend, this, _1));
459 handles_.emplace(Option::COMBINE, [this](const string &) -> uint32_t { return SetCombine(); });
460 handles_.emplace(Option::DEPENDENTRY, bind(&PackageParser::AddDependEntry, this, _1));
461 handles_.emplace(Option::HELP, [this](const string &) -> uint32_t { return ShowHelp(); });
462 handles_.emplace(Option::IDS, bind(&PackageParser::SetIdDefinedOutput, this, _1));
463 handles_.emplace(Option::DEFINED_IDS, bind(&PackageParser::SetIdDefinedInputPath, this, _1));
464 handles_.emplace(Option::ICON_CHECK, [this](const string &) -> uint32_t { return IconCheck(); });
465 handles_.emplace(Option::TARGET_CONFIG, bind(&PackageParser::ParseTargetConfig, this, _1));
466 handles_.emplace(Option::DEFINED_SYSIDS, bind(&PackageParser::AddSysIdDefined, this, _1));
467 handles_.emplace(Option::COMPRESSED_CONFIG, bind(&PackageParser::AddCompressionPath, this, _1));
472 auto handler = handles_.find(c);
473 if (handler == handles_.end()) {