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