Home
last modified time | relevance | path

Searched refs:argumentSpecs (Results 1 – 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/native/dicttoolkit/tests/utils/
Darguments_parser_test.cpp28 std::vector<ArgumentSpec> argumentSpecs; in TEST() local
30 ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)).validateSpecs()); in TEST()
35 const std::vector<ArgumentSpec> argumentSpecs = { in TEST() local
41 ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)).validateSpecs()); in TEST()
44 const std::vector<ArgumentSpec> argumentSpecs = { in TEST() local
49 std::move(argumentSpecs)).validateSpecs()); in TEST()
52 const std::vector<ArgumentSpec> argumentSpecs = { in TEST() local
58 std::move(argumentSpecs)).validateSpecs()); in TEST()
61 const std::vector<ArgumentSpec> argumentSpecs = { in TEST() local
67 std::move(argumentSpecs)).validateSpecs()); in TEST()
[all …]
/packages/inputmethods/LatinIME/native/dicttoolkit/src/command_executors/
Dheader_executor.cpp41 const std::vector<ArgumentSpec> argumentSpecs = { in getArgumentsParser() local
45 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)); in getArgumentsParser()
Ddiff_executor.cpp40 const std::vector<ArgumentSpec> argumentSpecs = { in getArgumentsParser() local
45 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)); in getArgumentsParser()
Dinfo_executor.cpp44 const std::vector<ArgumentSpec> argumentSpecs = { in getArgumentsParser() local
50 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)); in getArgumentsParser()
Dmakedict_executor.cpp52 const std::vector<ArgumentSpec> argumentSpecs = { in getArgumentsParser() local
57 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)); in getArgumentsParser()
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
Darguments_parser.h101 const std::vector<ArgumentSpec> &&argumentSpecs) in ArgumentsParser() argument
102 : mOptionSpecs(std::move(optionSpecs)), mArgumentSpecs(std::move(argumentSpecs)) {} in ArgumentsParser()