Home | History | Annotate | Download | only in task

Lines Matching refs:item

264         std::vector<android::String8>& item = *(itemTokens.get());
265 if (StringUtil::compare(item[0], "id") == 0) {
266 Param param(EId, item[1]);
269 } else if (StringUtil::compare(item[0], "val") == 0) {
270 Param param(EVal, item[1]);
273 } else if (isInput && (StringUtil::compare(item[0], "consti") == 0)) {
274 int64_t value = atoll(item[1].string());
279 } else if (isInput && (StringUtil::compare(item[0], "constf") == 0)) {
280 double value = atof(item[1].string());
286 LOGE("unrecognized word %s", item[0].string());