OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mArgumentSpecs
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.cpp
28
for (size_t i = 0; i <
mArgumentSpecs
.size() ; ++i) {
29
if (
mArgumentSpecs
[i].getMinCount() == 0 &&
mArgumentSpecs
[i].getMaxCount() == 0) {
30
AKLOGE("minCount = maxCount = 0 for %s.",
mArgumentSpecs
[i].getName().c_str());
33
if (
mArgumentSpecs
[i].getMinCount() !=
mArgumentSpecs
[i].getMaxCount()
34
&& i !=
mArgumentSpecs
.size() - 1) {
36
mArgumentSpecs
[i].getName().c_str()v );
39
if (argumentNameSet.count(
mArgumentSpecs
[i].getName()) > 0) {
41
mArgumentSpecs
[i].getName().c_str())
[
all
...]
arguments_parser.h
102
: mOptionSpecs(std::move(optionSpecs)),
mArgumentSpecs
(std::move(argumentSpecs)) {}
114
const std::vector<ArgumentSpec>
mArgumentSpecs
;
Completed in 43 milliseconds