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

  /external/clang/unittests/Frontend/
CodeGenActionTest.cpp 43 CompilerInvocation *Invocation = new CompilerInvocation;
44 Invocation->getPreprocessorOpts().addRemappedFile(
47 Invocation->getFrontendOpts().Inputs.push_back(
49 Invocation->getFrontendOpts().ProgramAction = EmitLLVM;
50 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
52 Compiler.setInvocation(Invocation);
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/llvm/tools/llvm-cov/
llvm-cov.cpp 79 std::string Invocation = std::string(argv[0]) + " " + argv[1];
80 argv[1] = Invocation.c_str();
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
llvm-cov.cpp 81 std::string Invocation = std::string(argv[0]) + " " + argv[1];
82 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/main/java/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
23 public interface Invocation extends InvocationOnMock, DescribedInvocation {
26 * @return whether the invocation has been already verified.
32 * @return the sequence number of the Invocation. Useful to determine the order of invocations.
38 * @return the location in code of this invocation.
46 * @return unprocessed arguments, exactly as provided to this invocation.
54 * @return unprocessed arguments, exactly as provided to this invocation.
59 * Marks this invocation as verified so that it will not cause verification error at
65 * @return the stubbing information for this invocation. May return null - this mean
    [all...]
  /external/libese/apps/boot/tests/
ese_app_boot_tests.cpp 54 const struct Invocation &invocation = invocations.at(0); local
57 EXPECT_EQ(invocation.expected_tx.size(), tx_total);
60 EXPECT_EQ(0, memcmp(incoming.data(), invocation.expected_tx.data(), tx_total));
62 // Supply the golden return data and pop off the invocation.
63 ese_sg_from_buf(rx_sg, rx_nsg, 0, invocation.rx.size(), invocation.rx.data());
64 uint32_t rx_total = invocation.rx.size();
69 struct Invocation {
74 std::vector<Invocation> invocations
    [all...]
  /external/guice/extensions/persist/lib/
aopalliance.jar 
easymock.jar 
  /external/guice/lib/
aopalliance.jar 
  /external/clang/lib/Tooling/
Tooling.cpp 89 /// \brief Returns a clang build invocation initialized from the CC1 flags.
94 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
96 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
98 Invocation->getFrontendOpts().DisableFree = false;
99 Invocation->getCodeGenOpts().DisableFree = false;
100 Invocation->getDependencyOutputOpts() = DependencyOutputOptions();
101 return Invocation;
140 ToolInvocation Invocation(getSyntaxOnlyToolArgs(ToolName, Args, FileNameRef),
155 return Invocation.run();
260 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/libese/libese-teq1/tests/
teq1_unittests.cpp 433 const struct Invocation &invocation = invocations.at(tx_cursor_++); local
435 EXPECT_EQ(invocation.expected_tx.size(), len);
436 int eq = memcmp(data, invocation.expected_tx.data(), len);
440 << "Expected: '" << to_hex(invocation.expected_tx) << "'";
454 struct Invocation &invocation = invocations.at(rx_cursor_); local
456 // Supply the golden return data and pop off the invocation.
457 // Allows partial reads from the invocation stack.
459 if (len <= invocation.rx.size())
    [all...]
  /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 
  /external/deqp-deps/SPIRV-Headers/include/spirv/1.0/
spirv.cs 550 Invocation = 4,
  /external/deqp-deps/SPIRV-Headers/include/spirv/1.1/
spirv.cs 559 Invocation = 4,
  /external/deqp-deps/SPIRV-Headers/include/spirv/1.2/
spirv.cs 564 Invocation = 4,
  /external/deqp-deps/SPIRV-Headers/include/spirv/unified1/
spirv.cs 650 Invocation = 4,
    [all...]
  /external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.0/
spirv.cs 550 Invocation = 4,
  /external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.1/
spirv.cs 559 Invocation = 4,
  /external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.2/
spirv.cs 564 Invocation = 4,
  /external/swiftshader/third_party/SPIRV-Headers/include/spirv/unified1/
spirv.cs 656 Invocation = 4,
    [all...]
  /external/mockito/lib/
byte-buddy-1.8.15.jar 

Completed in 632 milliseconds