Home
last modified time | relevance | path

Searched refs:getPayload (Results 1 – 21 of 21) sorted by relevance

/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/
DFieldMaskTreeTest.java308 assertEquals(2, builder.getPayload().getRepeatedInt32Count()); in testMergeImpl()
309 assertEquals(1000, builder.getPayload().getRepeatedInt32(0)); in testMergeImpl()
310 assertEquals(4321, builder.getPayload().getRepeatedInt32(1)); in testMergeImpl()
315 assertEquals(1, builder.getPayload().getRepeatedInt32Count()); in testMergeImpl()
316 assertEquals(4321, builder.getPayload().getRepeatedInt32(0)); in testMergeImpl()
325 assertEquals(1234, builder.getPayload().getOptionalInt32()); in testMergeImpl()
326 assertEquals(2000, builder.getPayload().getOptionalUint32()); in testMergeImpl()
348 assertEquals(1234, builder.getPayload().getOptionalInt32()); in testMergeImpl()
349 assertEquals(0, builder.getPayload().getOptionalUint32()); in testMergeImpl()
366 assertEquals(true, builder.getPayload().hasOptionalInt32()); in testMergeImpl()
[all …]
DFieldMaskUtilTest.java263 assertEquals(1234, builder.getPayload().getOptionalInt32()); in testMerge()
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeThreadSafeRingBuffer.cpp53 deUint16 getPayload (void) const { return (deUint16)(data & 0xffff); } in getPayload() function
78 …_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.g… in run()
80 m_lastPayload[threadId] = msg.getPayload(); in run()
81 m_payloadSum[threadId] += (deUint32)msg.getPayload(); in run()
DdeBlockBuffer.cpp54 deUint16 getPayload (void) const { return (deUint16)(data & 0xffff); } in getPayload() function
102 …_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.g… in run()
104 m_lastPayload[threadId] = msg.getPayload(); in run()
105 m_payloadSum[threadId] += (deUint32)msg.getPayload(); in run()
/third_party/protobuf/conformance/
Dconformance_php.php32 if ($request->getPayload() == "protobuf_payload") {
49 } elseif ($request->getPayload() == "json_payload") {
60 } elseif ($request->getPayload() == "text_payload") {
/third_party/protobuf/benchmarks/java/src/main/java/com/google/protobuf/
DProtoCaliperBenchmark.java150 byte[] singleInputData = benchmarkDataset.getPayload(i).toByteArray(); in setUp()
151 inputDataList.add(benchmarkDataset.getPayload(i).toByteArray()); in setUp()
153 benchmarkDataset.getPayload(i).toByteArray())); in setUp()
154 inputStringList.add(benchmarkDataset.getPayload(i)); in setUp()
/third_party/protobuf/benchmarks/php/
DPhpBenchmark.php31 $payloads = $args[0]->getPayload();
105 $payloads = $dataset->getPayload();
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DStreamingOutputCallResponse.php46 public function getPayload() function in Grpc\\Testing\\StreamingOutputCallResponse
DStreamingInputCallRequest.php60 public function getPayload() function in Grpc\\Testing\\StreamingInputCallRequest
DPayloadConfig.php103 public function getPayload() function in Grpc\\Testing\\PayloadConfig
DStreamingOutputCallRequest.php134 public function getPayload() function in Grpc\\Testing\\StreamingOutputCallRequest
DSimpleResponse.php90 public function getPayload() function in Grpc\\Testing\\SimpleResponse
DSimpleRequest.php180 public function getPayload() function in Grpc\\Testing\\SimpleRequest
/third_party/grpc/src/php/tests/interop/Grpc/Testing/
DStreamingOutputCallResponse.php46 public function getPayload() function in Grpc\\Testing\\StreamingOutputCallResponse
DStreamingInputCallRequest.php60 public function getPayload() function in Grpc\\Testing\\StreamingInputCallRequest
DStreamingOutputCallRequest.php134 public function getPayload() function in Grpc\\Testing\\StreamingOutputCallRequest
DSimpleResponse.php90 public function getPayload() function in Grpc\\Testing\\SimpleResponse
DSimpleRequest.php180 public function getPayload() function in Grpc\\Testing\\SimpleRequest
/third_party/grpc/src/php/tests/interop/
Dinterop_client.php108 $payload = $result->getPayload();
154 $payload = $result->getPayload();
389 $payload = $value->getPayload();
425 $payload = $response->getPayload();
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DWireFormatLiteTest.java1009 assertEquals(4321, merged.getPayload().getOptionalInt32()); in testProto3MessageFieldMergeBehavior()
1011 assertEquals(5678, merged.getPayload().getOptionalInt64()); in testProto3MessageFieldMergeBehavior()
1012 assertEquals(8765, merged.getPayload().getOptionalUint32()); in testProto3MessageFieldMergeBehavior()
DGeneratedMessageTest.java1663 assertTrue(message.getPayload().hasOneofNestedMessage()); in testOneofNestedBuilderOnChangePropagation()