Home
last modified time | relevance | path

Searched refs:repeatedField (Results 1 – 20 of 20) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DProto2UnknownEnumValueTest.java43 FieldDescriptor repeatedField = field in Proto2UnknownEnumValueTest
57 repeatedField.getNumber(), in buildPayloadWithUnknownEnumValues()
81 1902, unknown.getField(repeatedField.getNumber()).getVarintList().get(0).longValue()); in testUnknownEnumValues()
83 1903, unknown.getField(repeatedField.getNumber()).getVarintList().get(1).longValue()); in testUnknownEnumValues()
107 1902, unknown.getField(repeatedField.getNumber()).getVarintList().get(0).longValue()); in testExtensionUnknownEnumValues()
109 1903, unknown.getField(repeatedField.getNumber()).getVarintList().get(1).longValue()); in testExtensionUnknownEnumValues()
H A DUnknownFieldSetTest.java252 Descriptors.FieldDescriptor repeatedField = in testParseUnknownEnumValue() local
255 assertNotNull(repeatedField); in testParseUnknownEnumValue()
266 repeatedField.getNumber(), in testParseUnknownEnumValue()
287 message.getUnknownFields().getField(repeatedField.getNumber()).getVarintList()); in testParseUnknownEnumValue()
304 message.getUnknownFields().getField(repeatedField.getNumber()).getVarintList()); in testParseUnknownEnumValue()
H A DDescriptorsTest.java245 FieldDescriptor repeatedField = TestAllTypes.getDescriptor().findFieldByName("repeated_int32"); in testFieldDescriptorLabel() local
251 assertFalse(repeatedField.isRequired()); in testFieldDescriptorLabel()
252 assertTrue(repeatedField.isRepeated()); in testFieldDescriptorLabel()
258 FieldDescriptor repeatedField = TestAllTypes.getDescriptor().findFieldByName("repeated_int32"); in testFieldDescriptorJsonName() local
261 assertEquals("repeatedInt32", repeatedField.getJsonName()); in testFieldDescriptorJsonName()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/segmentio/encoding/proto/
H A Dslice.go11 type repeatedField struct { struct
22 r := &repeatedField{
36 func sliceSizeFuncOf(t reflect.Type, r *repeatedField) sizeFunc { argument
57 func sliceEncodeFuncOf(t reflect.Type, r *repeatedField) encodeFunc { argument
100 func sliceDecodeFuncOf(t reflect.Type, r *repeatedField) decodeFunc { argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java237 RubyRepeatedField repeatedField = (RubyRepeatedField) list; in plus() local
238 if (! fieldType.equals(repeatedField.fieldType) || (typeClass != null && ! in plus()
239 typeClass.equals(repeatedField.typeClass))) in plus()
241 dup.storage.addAll((RubyArray) repeatedField.toArray(context)); in plus()
258 RubyRepeatedField repeatedField = (RubyRepeatedField) list; in concat() local
259 if (! fieldType.equals(repeatedField.fieldType) || (typeClass != null && ! in concat()
260 typeClass.equals(repeatedField.typeClass))) in concat()
262 this.storage.addAll((RubyArray) repeatedField.toArray(context)); in concat()
H A DRubyMessage.java102 addRepeatedField(fieldDescriptor, repeatedField); in initialize()
182 for (RubyRepeatedField repeatedField : repeatedFields.values()) { in hash()
417 RubyRepeatedField repeatedField = repeatedFields.get(fieldDescriptor); in build() local
419 for (int i = 0; i < repeatedField.size(); i++) { in build()
420 Object item = convert(context, fieldDescriptor, repeatedField.get(i), depth); in build()
464 this.repeatedFields.put(fieldDescriptor, repeatedField); in addRepeatedField()
690 … RubyRepeatedField repeatedField = rubyToRepeatedField(context, fieldDescriptor, ary); in setField() local
691 addRepeatedField(fieldDescriptor, repeatedField); in setField()
756 RubyRepeatedField repeatedField = repeatedFieldForFieldDescriptor(context, fieldDescriptor); in rubyToRepeatedField() local
770 repeatedField.push(context, row); in rubyToRepeatedField()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java237 RubyRepeatedField repeatedField = (RubyRepeatedField) list; in plus() local
238 if (! fieldType.equals(repeatedField.fieldType) || (typeClass != null && ! in plus()
239 typeClass.equals(repeatedField.typeClass))) in plus()
241 dup.storage.addAll((RubyArray) repeatedField.toArray(context)); in plus()
258 RubyRepeatedField repeatedField = (RubyRepeatedField) list; in concat() local
259 if (! fieldType.equals(repeatedField.fieldType) || (typeClass != null && ! in concat()
260 typeClass.equals(repeatedField.typeClass))) in concat()
262 this.storage.addAll((RubyArray) repeatedField.toArray(context)); in concat()
H A DRubyMessage.java102 addRepeatedField(fieldDescriptor, repeatedField); in initialize()
182 for (RubyRepeatedField repeatedField : repeatedFields.values()) { in hash()
417 RubyRepeatedField repeatedField = repeatedFields.get(fieldDescriptor); in build() local
419 for (int i = 0; i < repeatedField.size(); i++) { in build()
420 Object item = convert(context, fieldDescriptor, repeatedField.get(i), depth); in build()
464 this.repeatedFields.put(fieldDescriptor, repeatedField); in addRepeatedField()
690 … RubyRepeatedField repeatedField = rubyToRepeatedField(context, fieldDescriptor, ary); in setField() local
691 addRepeatedField(fieldDescriptor, repeatedField); in setField()
756 RubyRepeatedField repeatedField = repeatedFieldForFieldDescriptor(context, fieldDescriptor); in rubyToRepeatedField() local
770 repeatedField.push(context, row); in rubyToRepeatedField()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DCustomOptions.cs268 RepeatedField<T> repeatedField = repeated.GetValue(); in TryGetPrimitiveValue()
269 value = repeatedField[repeatedField.Count - 1]; in TryGetPrimitiveValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DCustomOptions.cs268 RepeatedField<T> repeatedField = repeated.GetValue(); in TryGetPrimitiveValue()
269 value = repeatedField[repeatedField.Count - 1]; in TryGetPrimitiveValue()
/dports/devel/protobuf25/protobuf-2.5.0/java/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java272 Descriptors.FieldDescriptor repeatedField = in testParseUnknownEnumValue() local
275 assertNotNull(repeatedField); in testParseUnknownEnumValue()
284 .addField(repeatedField.getNumber(), in testParseUnknownEnumValue()
307 .getField(repeatedField.getNumber()) in testParseUnknownEnumValue()
325 .getField(repeatedField.getNumber()) in testParseUnknownEnumValue()
H A DDescriptorsTest.java264 FieldDescriptor repeatedField = in testFieldDescriptorLabel() local
271 assertFalse(repeatedField.isRequired()); in testFieldDescriptorLabel()
272 assertTrue(repeatedField.isRepeated()); in testFieldDescriptorLabel()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DUnknownFieldSetTest.java273 Descriptors.FieldDescriptor repeatedField = in testParseUnknownEnumValue() local
276 assertNotNull(repeatedField); in testParseUnknownEnumValue()
285 .addField(repeatedField.getNumber(), in testParseUnknownEnumValue()
308 .getField(repeatedField.getNumber()) in testParseUnknownEnumValue()
326 .getField(repeatedField.getNumber()) in testParseUnknownEnumValue()
H A DDescriptorsTest.java265 FieldDescriptor repeatedField = in testFieldDescriptorLabel() local
272 assertFalse(repeatedField.isRequired()); in testFieldDescriptorLabel()
273 assertTrue(repeatedField.isRepeated()); in testFieldDescriptorLabel()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/php/tests/
H A Dwrapper_type_setters_test.php254 $repeatedField = $testWrapperSetters->getRepeatedStringValue();
266 ['repeated_string_value', 'getRepeatedStringValue', $repeatedField],
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs168 FieldDescriptor repeatedField = in FieldDescriptorLabel()
172 Assert.IsTrue(repeatedField.IsRepeated); in FieldDescriptorLabel()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs168 FieldDescriptor repeatedField = in FieldDescriptorLabel()
172 Assert.IsTrue(repeatedField.IsRepeated); in FieldDescriptorLabel()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs278 FieldDescriptor repeatedField = in FieldDescriptorLabel()
282 Assert.IsTrue(repeatedField.IsRepeated); in FieldDescriptorLabel()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs278 FieldDescriptor repeatedField = in FieldDescriptorLabel()
282 Assert.IsTrue(repeatedField.IsRepeated); in FieldDescriptorLabel()
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/test/search/
H A DPhraseQueryTest.cpp54 …FieldablePtr repeatedField = newLucene<Field>(L"repeated", L"second part of a repeated field", Fie… in PhraseQueryTest() local
55 doc->add(repeatedField); in PhraseQueryTest()