Lines Matching defs:parsed
22 // when it reaches an invalid item (including the wildcard character). |parsed|
24 // parsed successfully, false otherwise.
26 std::vector<uint16>* parsed) {
49 parsed->push_back(static_cast<uint16>(num));
89 std::vector<uint16> parsed;
90 if (!ParseVersionNumbers(version_str, &parsed))
93 components_.swap(parsed);
128 std::vector<uint16> parsed;
130 wildcard_string.substr(0, wildcard_string.length() - 2), &parsed);
132 const int comparison = CompareVersionComponents(components_, parsed);
133 // If the version is smaller than the wildcard version's |parsed| vector,
141 // Catch the case where the digits of |parsed| are found in |components_|,
142 // which means that the two are equal since |parsed| has a trailing "*".
145 DCHECK_GT(parsed.size(), 0UL);
146 const size_t min_num_comp = std::min(components_.size(), parsed.size());
148 if (components_[i] != parsed[i])