Lines Matching refs:version
183 std::pair<size_t, size_t> version = compoundType.fqName().hasVersion() in processCompoundType()
196 processedType->fields.push_back({field, fieldNamePrefix + field->name(), version}); in processCompoundType()
209 if (version.first > it->version.first || in processCompoundType()
210 (version.first == it->version.first && version.second > it->version.second)) { in processCompoundType()
212 << "Keeping " << field->get()->typeName() << " from " << version.first in processCompoundType()
213 << "." << version.second << " and discarding " in processCompoundType()
214 << (it->field)->get()->typeName() << " from " << it->version.first in processCompoundType()
215 << "." << it->version.second << ".\n"; in processCompoundType()
218 it->version = version; in processCompoundType()
222 << it->version.first << "." << it->version.second << " and discarding " in processCompoundType()
223 << field->get()->typeName() << " from " << version.first << "." in processCompoundType()
224 << version.second << ".\n"; in processCompoundType()
227 processedType->fields.push_back({field, fieldNamePrefix + field->name(), version}); in processCompoundType()