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

1 2

  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 71 std::string Invocation = std::string(argv[0]) + " " + argv[1];
72 argv[1] = Invocation.c_str();
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 51 CompilerInvocation *Invocation = new CompilerInvocation;
52 Invocation->getPreprocessorOpts().addRemappedFile(
55 CompilerInvocation::CreateFromArgs(*Invocation, Args,
58 Compiler.setInvocation(Invocation);
  /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/unittests/Frontend/
FrontendActionTest.cpp 80 CompilerInvocation *invocation = new CompilerInvocation; local
81 invocation->getPreprocessorOpts().addRemappedFile(
84 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
86 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
87 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
89 compiler.setInvocation(invocation);
100 CompilerInvocation *invocation = new CompilerInvocation; local
101 invocation->getPreprocessorOpts().addRemappedFile(
104 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
106 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly
120 CompilerInvocation *invocation = new CompilerInvocation; local
    [all...]
  /external/guice/extensions/persist/lib/
aopalliance.jar 
easymock.jar 
  /external/guice/lib/
aopalliance.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aopalliance-1.0.jar 
  /prebuilts/tools/common/m2/repository/aopalliance/aopalliance/1.0/
aopalliance-1.0.jar 
  /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/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 73 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
194 /// - The invocation options should be initialized. This function does not
222 /// @name Compiler Invocation and Options
225 bool hasInvocation() const { return Invocation != nullptr; }
228 assert(Invocation && "Compiler instance has no invocation!");
229 return *Invocation;
232 /// setInvocation - Replace the current invocation.
249 return Invocation->getAnalyzerOpts();
253 return Invocation->getCodeGenOpts()
    [all...]
ASTUnit.h 114 /// Optional owned invocation, just used to make the invocation used in
116 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
444 ComputedPreamble ComputePreamble(CompilerInvocation &Invocation,
738 /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation.
755 /// \param CI - The compiler invocation to use; it must have exactly one input
796 /// \param CI - The compiler invocation to use; it must have exactly one input
    [all...]
  /external/guice/lib/build/
easymock.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/2.4/
easymock-2.4.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /prebuilts/devtools/tools/lib/
easymock-3.3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-inject-bean/1.4.2/
sisu-inject-bean-1.4.2.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/
easymock-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/
sisu-inject-bean-1.4.2.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /external/robolectric/v1/lib/test/
mockito-core-1.8.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/1.9.5/
mockito-core-1.9.5.jar 

Completed in 900 milliseconds

1 2