HomeSort by relevance Sort by last modified time
    Searched defs:answer (Results 1 - 25 of 402) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
answer.c 37 static const kernel_ulong_t answer = local
40 syscall(__NR_exit_group, answer);
41 syscall(__NR_exit, answer);
  /external/strace/tests-m32/
answer.c 37 static const kernel_ulong_t answer = local
40 syscall(__NR_exit_group, answer);
41 syscall(__NR_exit, answer);
  /external/strace/tests-mx32/
answer.c 37 static const kernel_ulong_t answer = local
40 syscall(__NR_exit_group, answer);
41 syscall(__NR_exit, answer);
  /toolchain/binutils/binutils-2.27/gold/testsuite/
arm_exidx_test.s 3 .section .text.answer,"ax",%progbits
5 .global answer
6 .type answer, %function
7 answer: label
13 .size answer, .-answer
  /external/easymock/src/org/easymock/
IAnswer.java 19 * Used to answer expected calls.
24 * is called by EasyMock to answer an expected call.
25 * The answer may be to return a value, or to throw an exception.
26 * The arguments of the call for which the answer is generated
33 T answer() throws Throwable; method in interface:IAnswer
  /external/mockito/src/main/java/org/mockito/stubbing/
Answer.java 10 * Generic interface to be used for configuring mock's answer.
11 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
13 * Example of stubbing a mock with custom answer:
17 * new Answer() {
18 * public Object answer(InvocationOnMock invocation) {
31 public interface Answer<T> {
39 T answer(InvocationOnMock invocation) throws Throwable; method in interface:Answer
Answer1.java 10 * Generic interface to be used for configuring mock's answer for a single argument invocation.
12 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
17 * import static org.mockito.AdditionalAnswers.answer;
19 * when(mock.someMethod(anyString())).then(answer(
21 * public Integer answer(String arg) {
32 * @see Answer
43 T answer(A0 argument0) throws Throwable; method in interface:Answer1
Answer2.java 10 * Generic interface to be used for configuring mock's answer for a two argument invocation.
12 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
17 * import static org.mockito.AdditionalAnswers.answer;
19 * when(mock.someMethod(anyString(), anyChar())).then(answer(
21 * public String answer(String s, Character c) {
33 * @see Answer
45 T answer(A0 argument0, A1 argument1) throws Throwable; method in interface:Answer2
Answer3.java 10 * Generic interface to be used for configuring mock's answer for a three argument invocation.
12 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
17 * import static org.mockito.AdditionalAnswers.answer;
19 * when(mock.someMethod(anyInt(), anyString(), anyChar())).then(answer(
21 * public StringBuilder answer(Integer i, String s, Character c) {
34 * @see Answer
47 T answer(A0 argument0, A1 argument1, A2 argument2) throws Throwable; method in interface:Answer3
Answer4.java 10 * Generic interface to be used for configuring mock's answer for a four argument invocation.
12 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
17 * import static org.mockito.AdditionalAnswers.answer;
19 * when(mock.someMethod(anyInt(), anyString(), anyChar(), any())).then(answer(
21 * public StringBuilder answer(Integer i, String s, Character c, Object o) {
35 * @see Answer
49 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable; method in interface:Answer4
Answer5.java 10 * Generic interface to be used for configuring mock's answer for a five argument invocation.
12 * Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
17 * import static org.mockito.AdditionalAnswers.answer;
19 * when(mock.someMethod(anyInt(), anyString(), anyChar(), any(), anyBoolean())).then(answer(
21 * public StringBuilder answer(Integer i, String s, Character c, Object o, Boolean isIt) {
35 * @see Answer
50 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable; method in interface:Answer5
VoidAnswer1.java 10 * Generic interface to be used for configuring mock's answer for a single argument invocation that returns nothing.
12 * Answer specifies an action that is executed when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
21 * public void answer(String msg) throws Exception {
31 * @see Answer
40 void answer(A0 argument0) throws Throwable; method in interface:VoidAnswer1
VoidAnswer2.java 10 * Generic interface to be used for configuring mock's answer for a two argument invocation that returns nothing.
12 * Answer specifies an action that is executed when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
21 * public void answer(String msg, Integer count) throws Exception {
32 * @see Answer
42 void answer(A0 argument0, A1 argument1) throws Throwable; method in interface:VoidAnswer2
VoidAnswer3.java 10 * Generic interface to be used for configuring mock's answer for a three argument invocation that returns nothing.
12 * Answer specifies an action that is executed when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
21 * public void answer(String msg, Integer count, String another) throws Exception {
33 * @see Answer
44 void answer(A0 argument0, A1 argument1, A2 argument2) throws Throwable; method in interface:VoidAnswer3
VoidAnswer4.java 10 * Generic interface to be used for configuring mock's answer for a four argument invocation that returns nothing.
12 * Answer specifies an action that is executed when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
21 * public void answer(String msg, Integer count, String another, Character c) throws Exception {
34 * @see Answer
46 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable; method in interface:VoidAnswer4
VoidAnswer5.java 10 * Generic interface to be used for configuring mock's answer for a five argument invocation that returns nothing.
12 * Answer specifies an action that is executed when you interact with the mock.
14 * Example of stubbing a mock with this custom answer:
21 * public void answer(String msg, Integer count, String another, Character c, String subject) throws Exception {
35 * @see Answer
48 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable; method in interface:VoidAnswer5
  /external/proguard/examples/annotations/examples/
NativeCallBack.java 18 * Suppose this is a native method that computes an answer.
48 int answer = new NativeCallBack().computeAnswer(); local
50 System.out.println("The answer is " + answer);
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/
NativeCallBack.java 17 * Suppose this is a native method that computes an answer.
40 int answer = new NativeCallBack().computeAnswer(); local
42 System.out.println("The answer is " + answer);
  /packages/apps/Dialer/java/com/android/incallui/answer/bindings/
AnswerBindings.java 17 package com.android.incallui.answer.bindings;
19 import com.android.incallui.answer.impl.AnswerFragment;
20 import com.android.incallui.answer.protocol.AnswerScreen;
22 /** Bindings for answer module. */
  /packages/apps/Dialer/java/com/android/incallui/answer/protocol/
AnswerScreenDelegateFactory.java 17 package com.android.incallui.answer.protocol;
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
AnswersWithDelay.java 8 import org.mockito.stubbing.Answer;
15 * Returns as the provided answer would return, after delaying the specified amount.
18 * returning the provided <code>answer</code>.</p>
23 public class AnswersWithDelay implements Answer<Object>, ValidableAnswer, Serializable {
27 private final Answer<Object> answer; field in class:AnswersWithDelay
29 public AnswersWithDelay(final long sleepyTime, final Answer<Object> answer) {
31 this.answer = answer;
35 public Object answer(final InvocationOnMock invocation) throws Throwable { method in class:AnswersWithDelay
    [all...]
CallsRealMethods.java 10 import org.mockito.stubbing.Answer;
17 * Optional Answer that adds partial mocking support
19 * {@link Answer} can be used to define the return values of unstubbed invocations.
36 public class CallsRealMethods implements Answer<Object>, ValidableAnswer, Serializable {
39 public Object answer(InvocationOnMock invocation) throws Throwable { method in class:CallsRealMethods
41 return RETURNS_DEFAULTS.answer(invocation);
ReturnsElementsOf.java 11 import org.mockito.stubbing.Answer;
32 public class ReturnsElementsOf implements Answer<Object> {
44 public Object answer(InvocationOnMock invocation) throws Throwable { method in class:ReturnsElementsOf
  /external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
GloballyConfiguredAnswer.java 12 import org.mockito.stubbing.Answer;
15 * Globally configured Answer.
19 public class GloballyConfiguredAnswer implements Answer<Object>, Serializable {
23 public Object answer(InvocationOnMock invocation) throws Throwable { method in class:GloballyConfiguredAnswer
24 return new GlobalConfiguration().getDefaultAnswer().answer(invocation);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
AnglesPercentageEvaluator.java 17 package com.android.incallui.answer.impl.classifier;

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 91011>>