Home
last modified time | relevance | path

Searched refs:argValue (Results 1 – 4 of 4) sorted by relevance

/developtools/global_resource_tool/src/
Dcmd_parser.cpp111 uint32_t PackageParser::AddInput(const string& argValue) in AddInput() argument
113 string inputPath = ResourceUtil::RealPath(argValue); in AddInput()
115 cerr << "Error: invalid input '" << argValue << "'" << endl; in AddInput()
121 cerr << "Error: repeat input '" << argValue << "'" << endl; in AddInput()
132 uint32_t PackageParser::AddPackageName(const string& argValue) in AddPackageName() argument
135 cerr << "Error: double package name " << packageName_ << " vs " << argValue << endl; in AddPackageName()
139 packageName_ = argValue; in AddPackageName()
143 uint32_t PackageParser::AddOutput(const string& argValue) in AddOutput() argument
146 cerr << "Error: double output " << output_ << " vs " << argValue << endl; in AddOutput()
150 output_ = ResourceUtil::RealPath(argValue); in AddOutput()
[all …]
Dcmd_list.cpp102 if (GetArray(node, c, [&moduleNames](int c, const string &argValue) { in GetModuleNames() argument
106 moduleNames.append(argValue); in GetModuleNames()
/developtools/global_resource_tool/include/
Dcmd_parser.h60 uint32_t AddInput(const std::string& argValue);
61 uint32_t AddPackageName(const std::string& argValue);
62 uint32_t AddOutput(const std::string& argValue);
63 uint32_t AddResourceHeader(const std::string& argValue);
66 uint32_t AddMoudleNames(const std::string& argValue);
67 uint32_t AddConfig(const std::string& argValue);
68 uint32_t AddStartId(const std::string& argValue);
71 uint32_t HandleProcess(int c, const std::string& argValue);
73 uint32_t AddAppend(const std::string& argValue);
75 uint32_t AddDependEntry(const std::string& argValue);
[all …]
Dcmd_list.h30 using HandleBack = std::function<uint32_t(int c, const std::string &argValue)>;