Searched refs:beginPos (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/bit/
H A Dmain.cpp499 size_t beginPos = colonPos+1; local
502 commaPos = arg.find(',', beginPos);
504 if (beginPos != arg.size()) {
505 target->actions.push_back(string(arg, beginPos, commaPos));
509 if (commaPos != beginPos) {
510 target->actions.push_back(string(arg, beginPos, commaPos-beginPos));
512 beginPos = commaPos+1;

Completed in 38 milliseconds