Searched refs:found_assign (Results 1 – 1 of 1) sorted by relevance
88 size_t found_assign = line.find('='); in next_token() local90 if (found_assign != std::string::npos && found_append == std::string::npos) { in next_token()91 *name = android::base::Trim(line.substr(0, found_assign)); in next_token()92 *value = android::base::Trim(line.substr(found_assign + 1)); in next_token()