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

  /external/clang/tools/driver/
cc1_main.cpp 77 // Create a compiler invocation.
78 llvm::errs() << "cc1 creating invocation.\n";
79 CompilerInvocation Invocation;
80 if (!CompilerInvocation::CreateFromArgs(Invocation, ArgBegin, ArgEnd, Diags))
83 // Convert the invocation back to argument strings.
85 Invocation.toArgs(InvocationArgs);
89 llvm::errs() << "invocation argv :";
96 // Convert those arguments to another invocation, and check that we got the
  /external/clang/lib/Tooling/
Tooling.cpp 78 /// \brief Returns a clang build invocation initialized from the CC1 flags.
83 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
85 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
87 Invocation->getFrontendOpts().DisableFree = false;
88 return Invocation;
99 ToolInvocation Invocation(
106 Invocation.mapVirtualFile(FileNameRef,
108 return Invocation.run();
168 llvm::OwningPtr<clang::CompilerInvocation> Invocation(
171 Invocation.take(), *CC1Args, ToolAction.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 68 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
147 /// - The invocation options should be initialized. This function does not
175 /// @name Compiler Invocation and Options
178 bool hasInvocation() const { return Invocation != 0; }
181 assert(Invocation && "Compiler instance has no invocation!");
182 return *Invocation;
185 /// setInvocation - Replace the current invocation.
193 return Invocation->getAnalyzerOpts();
196 return Invocation->getAnalyzerOpts()
    [all...]
ASTUnit.h 83 /// Optional owned invocation, just used to make the invocation used in
85 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
378 ComputePreamble(CompilerInvocation &Invocation,
636 /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation.
650 /// \param CI - The compiler invocation to use; it must have exactly one input
687 /// \param CI - The compiler invocation to use; it must have exactly one input
  /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...]

Completed in 153 milliseconds