/external/webrtc/webrtc/tools/rtcbot/test/ |
oneWayVideoStreamingWithDownloadingFile.js | 78 test.log("Creating answer"); 82 function gotAnswer(answer) { 83 test.log("Got answer"); 84 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 86 pc1.setRemoteDescription(answer, onSetSessionDescriptionSuccess,
|
three_bots_video_conference.js | 100 test.log("Creating answer"); 104 function gotAnswer(answer) { 105 test.log("Got answer"); 106 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 108 pc1.setRemoteDescription(answer, onSetSessionDescriptionSuccess,
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/ |
IccPhoneBookInterfaceManagerTest.java | 35 import org.mockito.stubbing.Answer; 74 doAnswer(new Answer<Void>() { 76 public Void answer(InvocationOnMock invocation) throws Throwable { 102 doAnswer(new Answer<Void>() { 104 public Void answer(InvocationOnMock invocation) throws Throwable {
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/ |
LogicalChannelMocker.java | 34 import org.mockito.stubbing.Answer; 51 doAnswer((Answer<Void>) invocation -> { 67 doAnswer(new Answer() { 71 public Object answer(InvocationOnMock invocation) throws Throwable { 97 doAnswer((Answer<Void>) invocation -> {
|
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/ |
CustomDatabaseTest.java | 44 import org.mockito.stubbing.Answer; 84 doAnswer(new Answer() { 86 public SupportSQLiteDatabase answer(InvocationOnMock invocation) 91 doAnswer(new Answer() { 93 public Cursor answer(InvocationOnMock invocation) throws Throwable {
|
/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/utils/ |
IdGeneratorTest.java | 42 import org.mockito.stubbing.Answer; 123 .thenAnswer(new Answer<Integer>() { 125 public Integer answer(InvocationOnMock invocation) throws Throwable { 136 new Answer<SharedPreferences.Editor>() { 138 public SharedPreferences.Editor answer(InvocationOnMock invocation)
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ChannelsTest.java | 34 import org.mockito.stubbing.Answer; 82 new Answer<Integer>() { 83 public Integer answer(InvocationOnMock invocation) { 110 new Answer<Integer>() { 111 public Integer answer(InvocationOnMock invocation) {
|
/packages/apps/EmergencyInfo/tests/robolectric/src/com/android/emergency/preferences/ |
EmergencyListPreferenceTest.java | 41 import org.mockito.stubbing.Answer; 116 /** An Answer that cycles through a list of string values in its answer. */ 117 private static class CyclingStringArrayAnswer implements Answer<String> { 127 public String answer(InvocationOnMock invocation) { method in class:EmergencyListPreferenceTest.CyclingStringArrayAnswer
|
/packages/apps/TV/tests/unit/src/com/android/tv/data/ |
TvInputNewComparatorTest.java | 35 import org.mockito.stubbing.Answer; 54 new Answer<Boolean>() { 56 public Boolean answer(InvocationOnMock invocation) throws Throwable { 63 new Answer<Boolean>() { 65 public Boolean answer(InvocationOnMock invocation) throws Throwable {
|
/external/python/cpython2/Doc/howto/ |
argparse.rst | 356 answer = args.square**2 358 print "the square of {} equals {}".format(args.square, answer) 360 print answer 390 answer = args.square**2 392 print "the square of {} equals {}".format(args.square, answer) 394 print "{}^2 == {}".format(args.square, answer) 396 print answer 424 answer = args.square**2 426 print "the square of {} equals {}".format(args.square, answer) 428 print "{}^2 == {}".format(args.square, answer) [all...] |
/external/python/cpython3/Doc/howto/ |
argparse.rst | 354 answer = args.square**2 356 print("the square of {} equals {}".format(args.square, answer)) 358 print(answer) 388 answer = args.square**2 390 print("the square of {} equals {}".format(args.square, answer)) 392 print("{}^2 == {}".format(args.square, answer)) 394 print(answer) 422 answer = args.square**2 424 print("the square of {} equals {}".format(args.square, answer)) 426 print("{}^2 == {}".format(args.square, answer)) [all...] |
/external/curl/tests/python_dependencies/impacket/ |
structure.py | 88 answer = self() 89 answer.fromString(file.read(len(answer))) 90 return answer 225 answer = '' 227 answer += self.pack(two[1], each) 233 return self.pack(two[0], len(data))+answer 234 return answer 289 answer = format[1:] 290 if answer != data [all...] |
/external/jmdns/src/javax/jmdns/impl/tasks/ |
Responder.java | 21 * The Responder sends a single answer for the specified service infos and for the host name. 70 // According to draft-cheshire-dnsext-multicastdns.txt chapter "6.2 Multi-Packet Known Answer Suppression": 105 // Answer questions 125 logger.finer(this.getName() + "JmDNS Responder Known Answer Removed"); 142 for (DNSRecord answer : answers) { 143 if (answer != null) { 144 out = this.addAnswer(out, _in, answer);
|
/packages/apps/Messaging/tests/src/com/android/messaging/ |
FakeFactory.java | 47 import org.mockito.stubbing.Answer; 89 .thenAnswer(new Answer<String>() { 91 public String answer(final InvocationOnMock invocation) throws Throwable { 98 new Answer<String>() { 100 public String answer(final InvocationOnMock invocation) throws Throwable { 107 new Answer<String>() { 109 public String answer(final InvocationOnMock invocation) throws Throwable {
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/ |
PowerUsageAnomalyDetailsTest.java | 49 import org.mockito.stubbing.Answer; 125 Answer<Void> prefCallable = new Answer<Void>() { 127 public Void answer(InvocationOnMock invocation) throws Throwable { 156 Answer<Void> prefCallable = new Answer<Void>() { 158 public Void answer(InvocationOnMock invocation) throws Throwable {
|
/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/ |
RecommendationUtils.java | 32 import org.mockito.stubbing.Answer; 42 new Answer<Integer>() { 44 public Integer answer(InvocationOnMock invocation) throws Throwable { 51 new Answer<Collection<ChannelRecord>>() { 53 public Collection<ChannelRecord> answer(InvocationOnMock invocation) 61 new Answer<ChannelRecord>() { 63 public ChannelRecord answer(InvocationOnMock invocation)
|
/device/generic/goldfish/vibrator/ |
qemu.c | 98 char answer[2]; local 116 /* read answer from daemon */ 117 if (qemu_fd_read(fd, answer, 2) != 2 || 118 answer[0] != 'O' || answer[1] != 'K') { 351 char* answer, int answersize ) 388 /* read the answer */ 389 ret = qemu_fd_read( fd, answer, len ); 391 D("%s: could not read all of answer %d < %d",
|
/prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.2.29/ |
mockito-core-2.2.29.jar | |
/device/generic/goldfish/include/ |
qemu.h | 75 /* sends a question to the hw-control channel, then receive an answer in 76 * a user-allocated buffer. returns the length of the answer, or -1 82 char* answer, int answersize );
|
/external/mockito/src/main/java/org/mockito/mock/ |
MockCreationSettings.java | 12 import org.mockito.stubbing.Answer; 39 * the default answer for this mock, see {@link org.mockito.MockSettings#defaultAnswer}. 41 Answer<?> getDefaultAnswer();
|
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/ |
LoadingSpinnerControllerTest.java | 30 import org.mockito.stubbing.Answer; 54 new Answer() { 56 public Object answer(InvocationOnMock invocationOnMock)
|
/prebuilts/go/darwin-x86/src/database/sql/driver/ |
types_test.go | 21 var answer int64 = 42 var 52 {DefaultParameterConverter, &answer, answer, ""},
|
/prebuilts/go/linux-x86/src/database/sql/driver/ |
types_test.go | 21 var answer int64 = 42 var 52 {DefaultParameterConverter, &answer, answer, ""},
|
/prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.1/ |
mockito-core-2.7.1.jar | |
/prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.6/ |
mockito-core-2.7.6.jar | |