Searched defs:invocation (Results 1 - 25 of 77) sorted by path

1234

/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackQueue.h65 void append(PassOwnPtr<CustomElementProcessingStep> invocation) { m_queue.append(invocation); } argument
/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMConstraint.h44 NSInvocation *invocation; variable
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp1360 static int invocation; local
1368 SkDebugf("BAD S32A_D565_Opaque_Dither_neon(); invocation %d offset %d\n",
1369 invocation, offset);
1390 invocation++;
/external/chromium_org/tools/gn/
H A Dtemplate.cc28 const FunctionCallNode* invocation,
34 if (!EnsureNotProcessingImport(invocation, scope, err))
37 // First run the invocation's block. Need to allocate the scope on the heap
40 if (!FillTargetBlockScope(scope, invocation,
41 invocation->function().value().as_string(),
62 // We jump through some hoops to avoid copying the invocation scope when
63 // setting it in the template scope (since the invocation scope may have
71 invocation);
78 Value(invocation, args[0].string_value()),
79 invocation);
27 Invoke(Scope* scope, const FunctionCallNode* invocation, const std::vector<Value>& args, BlockNode* block, Err* err) const argument
[all...]
/external/clang/unittests/Frontend/
H A DFrontendActionTest.cpp66 CompilerInvocation *invocation = new CompilerInvocation; local
67 invocation->getPreprocessorOpts().addRemappedFile(
69 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
71 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
72 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
74 compiler.setInvocation(invocation);
85 CompilerInvocation *invocation = new CompilerInvocation; local
86 invocation->getPreprocessorOpts().addRemappedFile(
88 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
90 invocation
[all...]
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jar ... exceptions/base/ org/mockito/internal/exceptions/util/ org/mockito/internal/invocation/ org/mockito/internal/invocation/finder/ org/mockito/internal/invocation/realmethod ...
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocation.java31 private final Invocation invocation; field in class:ExpectedInvocation
38 public ExpectedInvocation(Invocation invocation, argument
40 this(invocation, matchers, null);
43 private ExpectedInvocation(Invocation invocation, argument
46 this.invocation = invocation;
48 this.matchers = (matcher == null) ? createMissingMatchers(invocation,
52 private List<IArgumentMatcher> createMissingMatchers(Invocation invocation, argument
55 if (matchers.size() != invocation.getArguments().length) {
57 + invocation
[all...]
H A DIMocksBehavior.java32 Result addActual(Invocation invocation); argument
H A DIMocksControlState.java22 Object invoke(Invocation invocation) throws Throwable; argument
H A DLastControl.java111 public static void pushCurrentInvocation(Invocation invocation) { argument
117 stack.push(invocation);
H A DRecordState.java73 public java.lang.Object invoke(Invocation invocation) { argument
76 lastInvocation = new ExpectedInvocation(invocation, lastMatchers);
78 return emptyReturnValueFor(invocation.getMethod().getReturnType());
H A DReplayState.java36 public Object invoke(Invocation invocation) throws Throwable { argument
44 return invokeInner(invocation);
51 return invokeInner(invocation);
54 private Object invokeInner(Invocation invocation) throws Throwable { argument
55 LastControl.pushCurrentInvocation(invocation);
57 Result result = behavior.addActual(invocation);
H A DUnorderedBehavior.java78 public List<ErrorMessage> getMessages(Invocation invocation) { argument
84 boolean match = invocation != null
85 && entry.getExpectedInvocation().matches(invocation);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mockito/src/org/mockito/
H A DReturnValues.java8 import org.mockito.invocation.InvocationOnMock;
23 * Configures return values for an unstubbed invocation
31 * return value for an unstubbed invocation
33 * @param invocation placeholder for mock and a method
36 Object valueFor(InvocationOnMock invocation) throws Throwable; argument
/external/mockito/src/org/mockito/exceptions/
H A DReporter.java19 import org.mockito.invocation.DescribedInvocation;
20 import org.mockito.invocation.Invocation;
21 import org.mockito.invocation.InvocationOnMock;
22 import org.mockito.invocation.Location;
293 "Actual invocation has different arguments:",
362 "But was " + pluralize(actualCount) + ". Undesired invocation:",
512 public void smartNullPointerException(String invocation, Location location) { argument
518 invocation,
659 "The invocation listener with type " + listener.getClass().getName(),
697 public int invalidArgumentPositionRangeAtInvocationTime(InvocationOnMock invocation, boolea argument
710 possibleArgumentTypesOf(InvocationOnMock invocation) argument
729 wrongTypeOfArgumentToReturn(InvocationOnMock invocation, String expectedType, Class actualType, int argumentIndex) argument
[all...]
/external/mockito/src/org/mockito/internal/debugging/
H A DVerboseMockInvocationLogger.java8 import org.mockito.invocation.DescribedInvocation;
60 printStream.println("############ Logging method invocation #" + mockInvocationsCounter + " on mock/spy ########");
63 private void printInvocation(DescribedInvocation invocation) { argument
64 printStream.println(invocation.toString());
66 printlnIndented("invoked: " + invocation.getLocation().toString());
/external/mockito/src/org/mockito/internal/handler/
H A DInvocationNotifierHandler.java11 import org.mockito.invocation.Invocation;
12 import org.mockito.invocation.MockHandler;
36 public Object handle(Invocation invocation) throws Throwable { argument
38 Object returnedValue = mockHandler.handle(invocation);
39 notifyMethodCall(invocation, returnedValue);
42 notifyMethodCallException(invocation, t);
48 private void notifyMethodCall(Invocation invocation, Object returnValue) { argument
51 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue));
58 private void notifyMethodCallException(Invocation invocation, Throwable exception) { argument
61 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, exceptio
[all...]
H A DMockHandlerImpl.java9 import org.mockito.internal.invocation.InvocationMatcher;
10 import org.mockito.internal.invocation.MatchersBinder;
16 import org.mockito.invocation.Invocation;
47 public Object handle(Invocation invocation) throws Throwable { argument
52 invocation
61 invocation
70 if (((MockAwareVerificationMode) verificationMode).getMock() == invocation.getMock()) {
75 // this means there is an invocation on a different mock. Re-adding verification mode
81 // prepare invocation for stubbing
86 // look for existing answer for this invocation
[all...]
H A DNullResultGuardian.java10 import org.mockito.invocation.Invocation;
28 public Object handle(Invocation invocation) throws Throwable { argument
29 Object result = delegate.handle(invocation);
30 Class<?> returnType = invocation.getMethod().getReturnType();
/external/mockito/src/org/mockito/internal/invocation/
H A DArgumentsComparator.java5 package org.mockito.internal.invocation;
10 import org.mockito.invocation.Invocation;
H A DArgumentsProcessor.java5 package org.mockito.internal.invocation;
H A DCapturesArgumensFromInvocation.java5 package org.mockito.internal.invocation;
8 import org.mockito.invocation.Invocation;
H A DInvocationImpl.java6 package org.mockito.internal.invocation;
11 import org.mockito.internal.invocation.realmethod.RealMethod;
13 import org.mockito.invocation.*;
24 * Contains stack trace of invocation

Completed in 690 milliseconds

1234