Home
last modified time | relevance | path

Searched refs:Repeated (Results 1 – 25 of 104) sorted by relevance

12345

/external/libtextclassifier/native/utils/flatbuffers/
Dmutable_test.cc192 auto* reminders = buffer->Repeated("reminders"); in TEST_F()
195 auto* reminder1_notes = reminder1->Repeated("notes"); in TEST_F()
276 auto reminders = buffer->Repeated("reminders"); in TEST_F()
283 EXPECT_TRUE(buffer->Repeated("numbers")->Add(static_cast<int>(111))); in TEST_F()
284 EXPECT_TRUE(buffer->Repeated("numbers")->Add(static_cast<int>(222))); in TEST_F()
285 EXPECT_TRUE(buffer->Repeated("numbers")->Add(static_cast<int>(333))); in TEST_F()
296 auto reminders = buffer->Repeated("reminders"); in TEST_F()
300 auto notes = reminder->Repeated("notes"); in TEST_F()
326 EXPECT_FALSE(buffer->Repeated("numbers")->Add(static_cast<int64>(123))); in TEST_F()
327 EXPECT_FALSE(buffer->Repeated("numbers")->Add(static_cast<int8>(9))); in TEST_F()
[all …]
Dmutable.cc64 buffer->Repeated(field)->Add(value); in ParseAndSetField()
223 return Repeated(field)->Add(); in Add()
270 RepeatedField* MutableFlatbuffer::Repeated(StringPiece field_name) { in Repeated() function in libtextclassifier3::MutableFlatbuffer
272 return Repeated(field); in Repeated()
278 RepeatedField* MutableFlatbuffer::Repeated(const reflection::Field* field) { in Repeated() function in libtextclassifier3::MutableFlatbuffer
298 RepeatedField* MutableFlatbuffer::Repeated(const FlatbufferFieldPath* path) { in Repeated() function in libtextclassifier3::MutableFlatbuffer
304 return parent->Repeated(field); in Repeated()
467 if (RepeatedField* repeated_field = Repeated(field); in MergeFrom()
Dmutable.h144 RepeatedField* Repeated(StringPiece field_name);
145 RepeatedField* Repeated(const reflection::Field* field);
150 RepeatedField* Repeated(const FlatbufferFieldPath* path);
367 Repeated(field)->Add(value); in Add()
/external/rust/crates/protobuf-codegen/src/field/
Dmod.rs202 Repeated(RepeatedField<'a>), enumerator
213 &FieldKind::Repeated(ref r) => &r.elem, in elem()
481 (elem, _) => FieldKind::Repeated(RepeatedField { in parse()
543 FieldKind::Repeated(..) => true, in is_repeated_not_map()
550 FieldKind::Repeated(..) | FieldKind::Map(..) => true, in is_repeated_or_map()
557 FieldKind::Repeated(RepeatedField { packed: true, .. }) => true, in is_repeated_packed()
565 FieldKind::Repeated(ref repeated) => &repeated, in repeated()
597 FieldKind::Repeated(RepeatedField { ref elem, .. }) => &elem, in elem()
606 FieldKind::Repeated(ref repeated) => repeated.rust_type(), in full_storage_type()
649 FieldKind::Repeated(..) | FieldKind::Map(..) => self.full_storage_type(), in set_xxx_param_type()
[all …]
/external/libtextclassifier/native/utils/
Dlua-utils.cc270 buffer->Repeated(field)); in ReadFlatbuffer()
274 buffer->Repeated(field)); in ReadFlatbuffer()
278 buffer->Repeated(field)); in ReadFlatbuffer()
282 buffer->Repeated(field)); in ReadFlatbuffer()
286 buffer->Repeated(field)); in ReadFlatbuffer()
290 buffer->Repeated(field)); in ReadFlatbuffer()
294 buffer->Repeated(field)); in ReadFlatbuffer()
298 buffer->Repeated(field)); in ReadFlatbuffer()
302 buffer->Repeated(field)); in ReadFlatbuffer()
306 buffer->Repeated(field)); in ReadFlatbuffer()
[all …]
Dlua-utils_test.cc333 RepeatedField* repeated_field = buffer->Repeated("repeated_nested_field"); in TEST_F()
338 RepeatedField* nested_repeated = nested->Repeated("repeated_string_field"); in TEST_F()
/external/curl/tests/data/
Dtest1518 Repeated nonsense-headers
44 Repeated nonsense-headers
/external/rust/crates/protobuf/src/reflect/acc/
Dv1.rs150 Repeated(Box<dyn FieldAccessor2<M, dyn ReflectRepeated>>), enumerator
163 &FieldAccessorFunctions::Repeated(..) => write!(f, "Repeated(..)"), in fmt()
176 FieldAccessorFunctions::Repeated(..) | FieldAccessorFunctions::Map(..) => { in get_value_option()
207 FieldAccessorFunctions::Map(..) | FieldAccessorFunctions::Repeated(..) => { in has_field_generic()
215 FieldAccessorFunctions::Repeated(ref a) => a.get_field(message_down_cast(m)).len(), in len_field_generic()
330 FieldAccessorFunctions::Repeated(ref accessor2) => { in get_reflect()
331 ReflectFieldRef::Repeated(accessor2.get_field(message_down_cast(m))) in get_reflect()
573 FieldAccessorFunctions::Repeated(Box::new(MessageGetMut::<M, Vec<V::Value>> { in make_vec_accessor()
605 FieldAccessorFunctions::Repeated(Box::new(MessageGetMut::<M, RepeatedField<V::Value>> { in make_repeated_field_accessor()
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-07-09.data4 # Repeated end marker.
/external/llvm/test/YAMLParser/
Dspec-07-09.test6 # Repeated end marker.
/external/llvm-project/llvm/test/YAMLParser/
Dspec-07-09.test6 # Repeated end marker.
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
Dunittest_reference_types_nano.proto46 // Repeated
74 // Repeated packed
Dunittest_nano.proto86 // Repeated
119 // Repeated packed
Dunittest_has_nano.proto61 // Repeated
/external/protobuf/src/google/protobuf/
Dextension_set.h962 typedef RepeatedPrimitiveTypeTraits<Type> Repeated; typedef
1092 typedef RepeatedStringTypeTraits Repeated; typedef
1173 typedef RepeatedEnumTypeTraits<Type, IsValid> Repeated; typedef
1283 typedef RepeatedMessageTypeTraits<Type> Repeated; typedef
1491 inline typename _proto_TypeTraits::Repeated::ConstType GetExtension( \
1501 inline typename _proto_TypeTraits::Repeated::MutableType MutableExtension( \
1514 int index, typename _proto_TypeTraits::Repeated::ConstType value) { \
1521 inline typename _proto_TypeTraits::Repeated::MutableType AddExtension( \
1533 typename _proto_TypeTraits::Repeated::ConstType value) { \
1541 inline const typename _proto_TypeTraits::Repeated::RepeatedFieldType& \
[all …]
/external/libtextclassifier/native/utils/grammar/semantics/evaluators/
Dcompose-eval.cc50 if (!result->Repeated(field)->Add(value->Value<T>())) { in TryAddField()
60 if (!result->Repeated(field)->Add()->MergeFrom(value->Table())) { in TryAddField()
/external/protobuf/php/tests/proto/
Dtest_descriptors.proto10 // Repeated
/external/golang-protobuf/proto/
Dproperties.go138 Repeated bool member
166 if p.Repeated {
235 p.Repeated = true
/external/e2fsprogs/lib/et/test_cases/
Dsimple.et19 "Repeated request"
Dheimdal.et34 ec RD_AP_REPEAT, "Kerberos error: Repeated request"
/external/tensorflow/tensorflow/tools/proto_text/
Dtest.proto50 // Repeated
/external/grpc-grpc/src/proto/grpc/testing/
Dbenchmark_service.proto28 // Repeated sequence of one request followed by one response.
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dbenchmark_service.proto28 // Repeated sequence of one request followed by one response.
/external/rust/crates/protobuf/src/reflect/
Dfield.rs18 Repeated(&'a dyn ReflectRepeated), enumerator
/external/protobuf/objectivec/Tests/
DGPBDescriptorTests.m412 // Repeated Int
428 // Repeated Enum
444 // Repeated Message

12345