Home
last modified time | relevance | path

Searched defs:answer (Results 1 – 25 of 115) sorted by relevance

12345

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DSortedListsTest.java37 void assertModelAgrees(List<Integer> list, Integer key, int answer, in assertModelAgrees()
42 assertEquals(list.indexOf(key), answer); in assertModelAgrees() local
48 assertEquals(list.lastIndexOf(key), answer); in assertModelAgrees() local
60 assertEquals(list.lastIndexOf(key) + 1, answer); in assertModelAgrees() local
66 assertEquals(list.indexOf(key) - 1, answer); in assertModelAgrees() local
/external/guava/guava-tests/test/com/google/common/collect/
DSortedListsTest.java39 void assertModelAgrees(List<Integer> list, Integer key, int answer, in assertModelAgrees()
44 assertEquals(list.indexOf(key), answer); in assertModelAgrees() local
50 assertEquals(list.lastIndexOf(key), answer); in assertModelAgrees() local
62 assertEquals(list.lastIndexOf(key) + 1, answer); in assertModelAgrees() local
68 assertEquals(list.indexOf(key) - 1, answer); in assertModelAgrees() local
/external/mockito/src/org/mockito/internal/stubbing/answers/
DAnswersValidator.java15 public void validate(Answer<?> answer, Invocation invocation) { in validate()
51 private void validateMockingConcreteClass(CallsRealMethods answer, MethodInfo methodInfo) { in validateMockingConcreteClass()
57 private void validateDoNothing(DoesNothing answer, MethodInfo methodInfo) { in validateDoNothing()
63 private void validateReturnValue(Returns answer, MethodInfo methodInfo) { in validateReturnValue()
77 private void validateException(ThrowsException answer, MethodInfo methodInfo) { in validateException()
DDoesNothing.java16 public Object answer(InvocationOnMock invocation) throws Throwable { in answer() method in DoesNothing
/external/easymock/src/org/easymock/internal/
DResult.java41 public Object answer() throws Throwable { in createThrowResult() method in Result.ThrowingAnswer
58 public Object answer() throws Throwable { in createReturnResult() method in Result.ReturningAnswer
75 public Object answer() throws Throwable { in createDelegatingResult() method in Result.DelegatingAnswer
98 public static Result createAnswerResult(IAnswer<?> answer) { in createAnswerResult()
102 public Object answer() throws Throwable { in answer() method in Result
DIMocksControlState.java30 void andAnswer(IAnswer<?> answer); in andAnswer()
32 void andDelegateTo(Object answer); in andDelegateTo()
38 void andStubAnswer(IAnswer<?> answer); in andStubAnswer()
DReplayState.java103 public void andAnswer(IAnswer<?> answer) { in andAnswer()
107 public void andDelegateTo(Object answer) { in andDelegateTo()
119 public void andStubAnswer(IAnswer<?> answer) { in andStubAnswer()
DMocksControl.java159 public IExpectationSetters<Object> andAnswer(IAnswer<? extends Object> answer) { in andAnswer()
168 public IExpectationSetters<Object> andDelegateTo(Object answer) { in andDelegateTo()
193 public void andStubAnswer(IAnswer<? extends Object> answer) { in andStubAnswer()
/external/mockito/src/org/mockito/internal/stubbing/
DConsecutiveStubbing.java18 public OngoingStubbing<T> thenAnswer(Answer<?> answer) { in thenAnswer()
23 public OngoingStubbing<T> then(Answer<?> answer) { in then()
27 public DeprecatedOngoingStubbing<T> toAnswer(Answer<?> answer) { in toAnswer()
DOngoingStubbingImpl.java23 public OngoingStubbing<T> thenAnswer(Answer<?> answer) { in thenAnswer()
32 public OngoingStubbing<T> then(Answer<?> answer) { in then()
36 public DeprecatedOngoingStubbing<T> toAnswer(Answer<?> answer) { in toAnswer()
DStubbedInvocationMatcher.java23 public StubbedInvocationMatcher(InvocationMatcher invocation, Answer answer) { in StubbedInvocationMatcher()
28 public Object answer(InvocationOnMock invocation) throws Throwable { in answer() method in StubbedInvocationMatcher
37 public void addAnswer(Answer answer) { in addAnswer()
DInvocationContainerImpl.java48 public void addAnswer(Answer answer) { in addAnswer()
53 public void addConsecutiveAnswer(Answer answer) { in addConsecutiveAnswer()
57 public void addAnswer(Answer answer, boolean isConsecutive) { in addAnswer()
90 public void addAnswerForVoidMethod(Answer answer) { in addAnswerForVoidMethod()
/external/webrtc/talk/session/media/
Dsrtpfilter_unittest.cc155 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
169 std::vector<CryptoParams> offer, answer; in TEST_F() local
177 std::vector<CryptoParams> answer; in TEST_F() local
186 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
245 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
257 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
267 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
277 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
288 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
298 std::vector<CryptoParams> answer(MakeVector(kTestCryptoParams2)); in TEST_F() local
[all …]
Dmediasession_unittest.cc451 rtc::scoped_ptr<SessionDescription> answer( in TestMediaDirectionInAnswer() local
583 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
773 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
799 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
832 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
881 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
931 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
957 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
983 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
1010 rtc::scoped_ptr<SessionDescription> answer( in TEST_F() local
[all …]
/external/mockito/src/org/mockito/
DBDDMockito.java70 BDDMyOngoingStubbing<T> willAnswer(Answer<?> answer); in willAnswer()
76 BDDMyOngoingStubbing<T> will(Answer<?> answer); in will()
126 public BDDMyOngoingStubbing<T> willAnswer(Answer<?> answer) { in willAnswer()
133 public BDDMyOngoingStubbing<T> will(Answer<?> answer) { in will()
190 BDDStubber willAnswer(Answer answer); in willAnswer()
247 public BDDStubber willAnswer(Answer answer) { in willAnswer()
307 public static BDDStubber willAnswer(Answer answer) { in willAnswer()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession_unittest.cc744 const webrtc::SessionDescriptionInterface* answer = CreateAnswer(NULL); in VerifyAnswerFromNonCryptoOffer() local
758 scoped_ptr<SessionDescriptionInterface> answer(CreateAnswer(NULL)); in VerifyAnswerFromCryptoOffer() local
873 SessionDescriptionInterface* answer = CreateAnswer(NULL); in CreateAndSetRemoteOfferAndLocalAnswer() local
1059 JsepSessionDescription* answer( in CreateRemoteAnswer() local
1099 rtc::scoped_ptr<SessionDescriptionInterface> answer( in TestSessionCandidatesWithBundleRtcpMux() local
1595 SessionDescriptionInterface* answer = in TEST_F() local
1648 SessionDescriptionInterface* answer = CreateAnswer(NULL); in TEST_F() local
1763 SessionDescriptionInterface* answer = NULL; in TEST_F() local
1776 SessionDescriptionInterface* answer = NULL; in TEST_F() local
1803 SessionDescriptionInterface* answer = CreateAnswer(NULL); in TEST_P() local
[all …]
/external/mockito/src/org/mockito/stubbing/
DOngoingStubbing.java161 OngoingStubbing<T> thenAnswer(Answer<?> answer); in thenAnswer()
182 OngoingStubbing<T> then(Answer<?> answer); in then()
DAnswer.java38 T answer(InvocationOnMock invocation) throws Throwable; in answer() method
/external/libchrome/sandbox/win/src/
Dcrosscall_client.h318 CrossCallReturn* answer) { in CrossCall()
338 CrossCallReturn* answer) { in CrossCall()
360 CrossCallReturn* answer) { in CrossCall()
389 CrossCallReturn* answer) { in CrossCall()
422 CrossCallReturn* answer) { in CrossCall()
459 CrossCallReturn* answer) { in CrossCall()
500 CrossCallReturn* answer) { in CrossCall()
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
DReturnsSmartNulls.java42 public Object answer(final InvocationOnMock invocation) throws Throwable { in answer() method in ReturnsSmartNulls
64 public Object answer(InvocationOnMock currentInvocation) throws Throwable { in answer() method in ReturnsSmartNulls.ThrowsSmartNullPointer
/external/easymock/src/org/easymock/
DIExpectationSetters.java53 IExpectationSetters<T> andAnswer(IAnswer<? extends T> answer); in andAnswer()
91 void andStubAnswer(IAnswer<? extends T> answer); in andStubAnswer()
DIAnswer.java33 T answer() throws Throwable; in answer() method
/external/v8/tools/gyp/test/win/lib-crosscompile/
Danswer.cc7 int answer() { in answer() function
/external/v8/tools/gyp/test/win/lib-flags/
Danswer.cc7 int answer() { in answer() function
/external/openssh/openbsd-compat/
Dgetrrsetbyname.c170 struct dns_rr *answer; member
200 u_char answer[ANSWER_BUFFER_SIZE]; in getrrsetbyname() local
385 parse_dns_response(const u_char *answer, int size) in parse_dns_response()
450 parse_dns_qsection(const u_char *answer, int size, const u_char **cp, int count) in parse_dns_qsection()
496 parse_dns_rrsection(const u_char *answer, int size, const u_char **cp, in parse_dns_rrsection()

12345