HomeSort by relevance Sort by last modified time
    Searched full:invocation (Results 151 - 175 of 2613) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/valgrind/gdbserver_tests/
nlsigvgdb.stdinB.gdb 9 # an invocation while the gdbserver is already busy.
  /frameworks/compile/slang/lit-tests/
rs-filecheck-wrapper.sh 3 # RS Invocation script to FileCheck
  /cts/tests/tests/print/src/android/print/cts/
PrintDocumentAdapterContractTest.java 48 import org.mockito.invocation.InvocationOnMock;
75 public Void answer(InvocationOnMock invocation) throws Throwable {
76 printAttributes[0] = (PrintAttributes) invocation.getArguments()[1];
77 LayoutResultCallback callback = (LayoutResultCallback) invocation.getArguments()[3];
89 public Void answer(InvocationOnMock invocation) throws Throwable {
90 Object[] args = invocation.getArguments();
103 public Void answer(InvocationOnMock invocation) throws Throwable {
199 public Void answer(InvocationOnMock invocation) throws Throwable {
200 printAttributes[0] = (PrintAttributes) invocation.getArguments()[1];
202 invocation.getArguments()[3]
    [all...]
PrinterDiscoverySessionLifecycleTest.java 44 import org.mockito.invocation.InvocationOnMock;
74 public PrinterDiscoverySessionCallbacks answer(InvocationOnMock invocation) {
80 public Void answer(InvocationOnMock invocation) {
81 PrintJob printJob = (PrintJob) invocation.getArguments()[0];
174 public PrinterDiscoverySessionCallbacks answer(InvocationOnMock invocation) {
180 public Void answer(InvocationOnMock invocation) {
181 PrintJob printJob = (PrintJob) invocation.getArguments()[0];
262 public PrinterDiscoverySessionCallbacks answer(InvocationOnMock invocation) {
268 public Void answer(InvocationOnMock invocation) {
269 PrintJob printJob = (PrintJob) invocation.getArguments()[0]
    [all...]
PrinterInfoTest.java 46 import org.mockito.invocation.InvocationOnMock;
77 public Void answer(InvocationOnMock invocation) throws Throwable {
78 printAttributes[0] = (PrintAttributes) invocation.getArguments()[1];
79 LayoutResultCallback callback = (LayoutResultCallback) invocation
95 public Void answer(InvocationOnMock invocation) throws Throwable {
96 Object[] args = invocation.getArguments();
112 public Void answer(InvocationOnMock invocation) throws Throwable {
135 public Void answer(InvocationOnMock invocation) {
137 mDiscoverySession = ((PrinterDiscoverySessionCallbacks) invocation.getMock())
363 public Void answer(InvocationOnMock invocation) throws Throwable
    [all...]
  /development/samples/Spinner/
_index.html 10 is made. The application remembers the selection from invocation to invocation, even
  /external/easymock/src/org/easymock/internal/
IMocksControlState.java 22 Object invoke(Invocation invocation) throws Throwable;
  /external/guice/core/src/com/google/inject/spi/
ModuleSource.java 30 * Module#configure(Binder) configure(Binder)} method invocation.
47 * configure(Binder)} method invocation. For a module without a parent module the chunk starts
57 * Module#configure(Binder) configure(Binder)} method invocation
69 * Module#configure(Binder) configure(Binder)} method invocation
92 * Module#configure(Binder) configure(Binder)} method invocation. The return array is non-empty
111 * Module#configure(Binder) configure(Binder)} method invocation
153 * configure(Binder)} method invocation (see {@link #getStackTrace()}).
164 * configure(Binder)} method invocation. The return array is non-empty if stack trace collection
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Dispatcher.java 25 * Return the object which the original method invocation should
26 * be dispatched. This method is called for <b>every</b> method invocation.
FixedValue.java 29 * Return the object which the original method invocation should
30 * return. This method is called for <b>every</b> method invocation.
ProxyRefDispatcher.java 25 * Return the object which the original method invocation should
26 * be dispatched. This method is called for <b>every</b> method invocation.
  /external/mockito/src/org/mockito/internal/
MockitoCore.java 13 import org.mockito.internal.invocation.finder.VerifiableInvocationsFinder;
28 import org.mockito.invocation.Invocation;
161 * @return last invocation
163 public Invocation getLastInvocation() {
165 List<Invocation> allInvocations = ongoingStubbing.getRegisteredInvocations();
172 List<Invocation> ins = invocationContainer.getInvocations();
173 for (Invocation in : ins) {
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ReturnsElementsOf.java 8 import org.mockito.invocation.InvocationOnMock;
45 public Object answer(InvocationOnMock invocation) throws Throwable {
  /external/mockito/src/org/mockito/mock/
MockCreationSettings.java 53 * parameters on its invocation and therefore cannot
59 * the invocation listeners attached to this mock, see {@link org.mockito.MockSettings#invocationListeners}.
  /external/toybox/toys/posix/
env.c 1 /* env.c - Set the environment for command invocation.
15 Set the environment for command invocation.
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
IccPhoneBookInterfaceManagerTest.java 34 import org.mockito.invocation.InvocationOnMock;
75 public Void answer(InvocationOnMock invocation) throws Throwable {
76 Message response = (Message) invocation.getArguments()[2];
101 public Void answer(InvocationOnMock invocation) throws Throwable {
102 Message response = (Message) invocation.getArguments()[2];
  /libcore/ojluni/src/main/java/java/lang/reflect/
UndeclaredThrowableException.java 29 * Thrown by a method invocation on a proxy instance if its invocation
35 * proxy instance and dispatched to the invocation handler.
38 * the undeclared checked exception that was thrown by the invocation
47 * "undeclared checked exception that was thrown by the invocation
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
TvInputNewComparatorTest.java 34 import org.mockito.invocation.InvocationOnMock;
60 public Boolean answer(InvocationOnMock invocation) throws Throwable {
61 String inputId = (String) invocation.getArguments()[0];
69 public Boolean answer(InvocationOnMock invocation) throws Throwable {
70 String inputId = (String) invocation.getArguments()[0];
  /external/clang/lib/Tooling/
Tooling.cpp 87 /// \brief Returns a clang build invocation initialized from the CC1 flags.
92 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
94 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
96 Invocation->getFrontendOpts().DisableFree = false;
97 Invocation->getCodeGenOpts().DisableFree = false;
98 Invocation->getDependencyOutputOpts() = DependencyOutputOptions();
99 return Invocation;
135 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef),
149 return Invocation.run();
252 std::unique_ptr<clang::CompilerInvocation> Invocation(
    [all...]
  /external/mockito/src/org/mockito/plugins/
MockMaker.java 8 import org.mockito.invocation.MockHandler;
35 * @see org.mockito.invocation.MockHandler
54 * @param handler See {@link org.mockito.invocation.MockHandler}.
81 * <p>The invocation handler actually store invocations to achieve
83 * a new instance of the invocation handler.</p>
87 * @param mock The mock instance whose invocation handler is to be replaced.
88 * @param newHandler The new invocation handler instance.
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
task_io_service.hpp 70 // Reset in preparation for a subsequent run invocation.
92 // Request invocation of the given handler.
96 // Request invocation of the given handler and return immediately.
100 // Request invocation of the given operation and return immediately. Assumes
105 // Request invocation of the given operation and return immediately. Assumes
109 // Request invocation of the given operations and return immediately. Assumes
122 // operation for immediate invocation.
  /packages/apps/Messaging/tests/src/com/android/messaging/
FakeFactory.java 46 import org.mockito.invocation.InvocationOnMock;
91 public String answer(final InvocationOnMock invocation) throws Throwable {
92 final Object[] args = invocation.getArguments();
100 public String answer(final InvocationOnMock invocation) throws Throwable {
101 final Object[] args = invocation.getArguments();
109 public String answer(final InvocationOnMock invocation) throws Throwable {
110 return (String) invocation.getArguments()[0];
  /external/guice/extensions/persist/lib/
aopalliance.jar 
  /external/guice/lib/
aopalliance.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aopalliance-1.0.jar 

Completed in 629 milliseconds

1 2 3 4 5 67 8 91011>>