Home
last modified time | relevance | path

Searched refs:writeGroup (Results 1 – 22 of 22) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStreamWriter.java158 public void writeGroup(int fieldNumber, Object value) throws IOException { in writeGroup() method in CodedOutputStreamWriter
159 output.writeGroup(fieldNumber, (MessageLite) value); in writeGroup()
163 public void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException { in writeGroup() method in CodedOutputStreamWriter
164 output.writeGroup(fieldNumber, (MessageLite) value, schema); in writeGroup()
567 writeGroup(fieldNumber, value.get(i)); in writeGroupList()
574 writeGroup(fieldNumber, value.get(i), schema); in writeGroupList()
DWriter.java113 void writeGroup(int fieldNumber, Object value) throws IOException; in writeGroup() method
121 void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException; in writeGroup() method
DBinaryWriter.java814 writeGroup(fieldNumber, list.get(i)); in writeGroupList()
822 writeGroup(fieldNumber, list.get(i), schema); in writeGroupList()
1084 public void writeGroup(int fieldNumber, Object value) throws IOException { in writeGroup() method in BinaryWriter.SafeHeapWriter
1091 public void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException { in writeGroup() method in BinaryWriter.SafeHeapWriter
1621 public void writeGroup(int fieldNumber, Object value) throws IOException { in writeGroup() method in BinaryWriter.UnsafeHeapWriter
1628 public void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException { in writeGroup() method in BinaryWriter.UnsafeHeapWriter
2152 public void writeGroup(int fieldNumber, Object value) throws IOException { in writeGroup() method in BinaryWriter.SafeDirectWriter
2159 public void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException { in writeGroup() method in BinaryWriter.SafeDirectWriter
2709 public void writeGroup(int fieldNumber, Object value) throws IOException { in writeGroup() method in BinaryWriter.UnsafeDirectWriter
2716 public void writeGroup(int fieldNumber, Object value, Schema schema) throws IOException { in writeGroup() method in BinaryWriter.UnsafeDirectWriter
DExtensionSchemaLite.java486 writer.writeGroup( in serializeExtension()
DExtensionSchemaFull.java487 writer.writeGroup(descriptor.getNumber(), extension.getValue()); in serializeExtension()
DUnknownFieldSet.java783 output.writeGroup(fieldNumber, value); in writeTo()
DMessageSchema.java2679 writer.writeGroup( in writeFieldsInAscendingOrderProto2()
2911 writer.writeGroup( in writeFieldsInAscendingOrderProto2()
3039 writer.writeGroup( in writeFieldsInAscendingOrderProto3()
3362 writer.writeGroup( in writeFieldsInAscendingOrderProto3()
3494 writer.writeGroup( in writeFieldsInDescendingOrder()
3816 writer.writeGroup( in writeFieldsInDescendingOrder()
DCodedOutputStream.java1012 public final void writeGroup(final int fieldNumber, final MessageLite value) throws IOException { in writeGroup() method in CodedOutputStream
1024 final void writeGroup(final int fieldNumber, final MessageLite value, Schema schema) in writeGroup() method in CodedOutputStream
DFieldSet.java631 output.writeGroup(number, (MessageLite) value); in writeElement()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fDepthRangeTests.cpp433 …tcu::TestCaseGroup* writeGroup = new tcu::TestCaseGroup(m_testCtx, "write", "gl_FragDepth write te… in init() local
434 addChild(writeGroup); in init()
436writeGroup->addChild(new DepthRangeWriteCase(m_context, cases[ndx].name, cases[ndx].desc, cases[nd… in init()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fFragDepthTests.cpp577 …tcu::TestCaseGroup* writeGroup = new tcu::TestCaseGroup(m_testCtx, "write", "gl_FragDepth write te… in init() local
578 addChild(writeGroup); in init()
580writeGroup->addChild(new FragDepthWriteCase(m_context, cases[ndx].name, cases[ndx].desc, cases[ndx… in init()
Des3fBufferMapTests.cpp607 …tcu::TestCaseGroup* writeGroup = new tcu::TestCaseGroup(m_testCtx, bufferDataSources[srcNdx].name,… in init() local
608 mapReadGroup->addChild(writeGroup); in init()
618writeGroup->addChild(new BufferMapReadCase(m_context, (string(getBufferTargetName(target)) + "_ful… in init()
619writeGroup->addChild(new BufferMapReadCase(m_context, (string(getBufferTargetName(target)) + "_par… in init()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcFragDepthTests.cpp548 …tcu::TestCaseGroup* writeGroup = new tcu::TestCaseGroup(m_testCtx, "write", "gl_FragDepth write te… in init() local
549 addChild(writeGroup); in init()
551writeGroup->addChild(new FragDepthWriteCase(m_context, cases[ndx].name, cases[ndx].desc, m_glslVer… in init()
/third_party/protobuf/objectivec/
DGPBCodedOutputStream.h590 - (void)writeGroup:(int32_t)fieldNumber
DGPBCodedOutputStream.m331 - (void)writeGroup:(int32_t)fieldNumber value:(GPBMessage *)value {
898 [self writeGroup:fieldNumber value:value];
DGPBMessage.m1764 [output writeGroup:fieldNumber
/third_party/protobuf/js/experimental/runtime/kernel/
Dkernel.js279 function writeGroup(writer, fieldNumber, value) { function
306 writeGroup(writer, fieldNumber, value);
805 writeGroup);
851 this.setField_(fieldNumber, instance, writeGroup);
2049 this.setField_(fieldNumber, value, writeGroup);
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dreader_test.js681 writer.writeGroup(5, dummyMessage, function() {
683 writer.writeGroup(6, dummyMessage, function() {
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dreader_test.js681 writer.writeGroup(5, dummyMessage, function() {
683 writer.writeGroup(6, dummyMessage, function() {
/third_party/protobuf/js/binary/
Dreader_test.js711 writer.writeGroup(5, dummyMessage, function() {
725 writer.writeGroup(6, dummyMessage, function() {
Dwriter.js874 jspb.BinaryWriter.prototype.writeGroup = function( method in jspb.BinaryWriter
/third_party/libabigail/tests/lib/
Dcatch.hpp6351 void writeGroup(TestGroupNode const& groupNode, double suiteTime);
16908 writeGroup( *m_testGroups.back(), suiteTime ); in testGroupEnded()
16915 void JunitReporter::writeGroup( TestGroupNode const& groupNode, double suiteTime ) { in writeGroup() function in Catch::JunitReporter