Lines Matching refs:ScopedVector
251 class RepeatedValueConverter : public ValueConverter<ScopedVector<Element> > {
256 ScopedVector<Element>* field) const override { in Convert()
287 : public ValueConverter<ScopedVector<NestedType> > {
292 ScopedVector<NestedType>* field) const override { in Convert()
321 : public ValueConverter<ScopedVector<NestedType> > {
329 ScopedVector<NestedType>* field) const override { in Convert()
428 ScopedVector<int> StructType::* field) { in RegisterRepeatedInt()
430 new internal::FieldConverter<StructType, ScopedVector<int> >( in RegisterRepeatedInt()
435 ScopedVector<std::string> StructType::* field) { in RegisterRepeatedString()
437 new internal::FieldConverter<StructType, ScopedVector<std::string> >( in RegisterRepeatedString()
444 ScopedVector<string16> StructType::* field) { in RegisterRepeatedString()
446 new internal::FieldConverter<StructType, ScopedVector<string16> >( in RegisterRepeatedString()
453 ScopedVector<double> StructType::* field) { in RegisterRepeatedDouble()
455 new internal::FieldConverter<StructType, ScopedVector<double> >( in RegisterRepeatedDouble()
460 ScopedVector<bool> StructType::* field) { in RegisterRepeatedBool()
462 new internal::FieldConverter<StructType, ScopedVector<bool> >( in RegisterRepeatedBool()
469 ScopedVector<NestedType> StructType::* field, in RegisterRepeatedCustomValue()
472 new internal::FieldConverter<StructType, ScopedVector<NestedType> >( in RegisterRepeatedCustomValue()
481 ScopedVector<NestedType> StructType::* field) { in RegisterRepeatedMessage()
483 new internal::FieldConverter<StructType, ScopedVector<NestedType> >( in RegisterRepeatedMessage()
509 ScopedVector<internal::FieldConverterBase<StructType> > fields_;