Home
last modified time | relevance | path

Searched refs:string1 (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/wifi/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java286 final String string1 = "hey from here..."; in testPublishFlow() local
325 publishSession.getValue().sendMessage(peerHandle, messageId, string1.getBytes()); in testPublishFlow()
326 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter); in testPublishFlow()
327 sessionProxyCallback.getValue().onMessageReceived(peerHandle.peerId, string1.getBytes()); in testPublishFlow()
333 eq(peerHandle.peerId), eq(string1.getBytes()), eq(messageId), eq(0)); in testPublishFlow()
335 eq(string1.getBytes()), in testPublishFlow()
349 eq(string1.getBytes())); in testPublishFlow()
436 final String string1 = "hey from here..."; in testSubscribeFlow() local
474 subscribeSession.getValue().sendMessage(peerHandle, messageId, string1.getBytes()); in testSubscribeFlow()
475 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter); in testSubscribeFlow()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dgenerated_message_reflection.cc489 ArenaStringPtr* string1 = in SwapField() local
494 string1->Swap(string2); in SwapField()
498 const string temp = string1->Get(default_ptr); in SwapField()
499 string1->Set(default_ptr, string2->Get(default_ptr), arena1); in SwapField()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Dreflection_test.py1291 string1 = proto1.SerializeToString()
1292 proto2 = unittest_pb2.TestAllTypes.FromString(string1)
1365 string1 = proto1.SerializeToString()
1367 self.assertEqual(string1, string2)
1468 string1 = proto1.SerializeToString()
1470 self.assertEqual(string1, string2)
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java3941 String string1 = "1"; in testNullRepeatedFieldElements() local
3951 message.repeatedString = new String[] {null, string1, string2}; in testNullRepeatedFieldElements()
3959 assertEquals(string1, deserialized.repeatedString[0]); in testNullRepeatedFieldElements()