HomeSort by relevance Sort by last modified time
    Searched defs:Invocation (Results 1 - 10 of 10) sorted by null

  /external/mockito/src/org/mockito/invocation/
Invocation.java 5 package org.mockito.invocation;
14 * Vast majority of users don't need to use the Invocation. It's mostly useful for other framework authors
20 public interface Invocation extends InvocationOnMock, DescribedInvocation {
23 * @return whether the invocation has been already verified.
29 * @return the sequence number of the Invocation. Useful to determine the order of invocations.
35 * @return the location in code of this invocation.
43 * @return unprocessed arguments, exactly as provided to this invocation.
48 * Marks this invocation as verified so that it will not cause verification error at
54 * @return the stubbing information for this invocation. May return null - this means
55 * the invocation was not stubbed
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 86 /// \brief Returns a clang build invocation initialized from the CC1 flags.
91 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
93 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
95 Invocation->getFrontendOpts().DisableFree = false;
96 return Invocation;
116 ToolInvocation Invocation(Commands, ToolAction, &Files);
119 Invocation.mapVirtualFile(FileNameRef,
121 return Invocation.run();
181 OwningPtr<clang::CompilerInvocation> Invocation(
183 return runInvocation(BinaryName, Compilation.get(), Invocation.take())
    [all...]
  /external/easymock/src/org/easymock/internal/
Invocation.java 29 public class Invocation implements Serializable {
42 public Invocation(Object mock, Method method, Object[] args) {
93 Invocation other = (Invocation) o;
135 public boolean matches(Invocation actual, org.easymock.ArgumentsMatcher matcher) {
  /external/clang/include/clang/Frontend/
CompilerInstance.h 69 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
155 /// - The invocation options should be initialized. This function does not
183 /// @name Compiler Invocation and Options
186 bool hasInvocation() const { return Invocation != 0; }
189 assert(Invocation && "Compiler instance has no invocation!");
190 return *Invocation;
193 /// setInvocation - Replace the current invocation.
210 return Invocation->getAnalyzerOpts();
214 return Invocation->getCodeGenOpts()
    [all...]
ASTUnit.h 92 /// Optional owned invocation, just used to make the invocation used in
94 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
387 ComputePreamble(CompilerInvocation &Invocation,
679 /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation.
693 /// \param CI - The compiler invocation to use; it must have exactly one input
732 /// \param CI - The compiler invocation to use; it must have exactly one input
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 53 private static final class Invocation {
60 return "Invocation[" + retVal + "]";
73 // Local invocation ID counter
77 private IntMap<Invocation> pendingInvocations = new IntMap<Invocation>();
217 Invocation invoke = null;
220 invoke = new Invocation();
290 logger.log(Level.WARNING, "RMI: Invocation exception", ex);
308 Invocation invoke = pendingInvocations.get(retMsg.invocationID);
310 logger.log(Level.WARNING, "Cannot find invocation ID: {0}", retMsg.invocationID)
    [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/internal/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /external/robolectric/lib/test/
mockito-core-1.8.5.jar 

Completed in 361 milliseconds