HomeSort by relevance Sort by last modified time
    Searched refs:Act (Results 1 - 25 of 50) sorted by null

1 2

  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 123 std::unique_ptr<FrontendAction> Act = CreateFrontendBaseAction(CI);
124 if (!Act)
130 Act = llvm::make_unique<FixItRecompile>(std::move(Act));
141 Act = llvm::make_unique<arcmt::CheckAction>(std::move(Act));
144 Act = llvm::make_unique<arcmt::ModifyAction>(std::move(Act));
147 Act = llvm::make_unique<arcmt::MigrateAction>(std::move(Act),
    [all...]
  /external/clang/lib/Driver/
InputInfo.h 42 const Action* Act;
53 : Kind(Nothing), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {}
56 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
60 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
66 : Kind(InputArg), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
71 : Kind(InputArg), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
81 const Action *getAction() const { return Act; }
82 void setAction(const Action *A) { Act = A; }
  /external/compiler-rt/lib/esan/
working_set.h 34 bool processWorkingSetSigaction(int SigNum, const void *Act, void *OldAct);
working_set_posix.cpp 47 const struct sigaction *Act = (const struct sigaction *) ActVoid;
51 if (Act)
52 internal_memcpy(&AppSigAct, Act, sizeof(AppSigAct));
esan.h 54 bool processSigaction(int SigNum, const void *Act, void *OldAct);
esan.cpp 82 bool processSigaction(int SigNum, const void *Act, void *OldAct) {
84 return processWorkingSetSigaction(SigNum, Act, OldAct);
  /external/clang/unittests/Frontend/
CodeGenActionTest.cpp 56 std::unique_ptr<FrontendAction> Act(new NullCodeGenAction);
57 bool Success = Compiler.ExecuteAction(*Act);
  /external/clang/examples/clang-interpreter/
main.cpp 162 std::unique_ptr<CodeGenAction> Act(new EmitLLVMOnlyAction());
163 if (!Clang.ExecuteAction(*Act))
167 if (std::unique_ptr<llvm::Module> Module = Act->takeModule())
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 26 unsigned Act;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 156 virtual void Act() = 0;
160 Act();
299 void Act() override {
309 void Act() override {
328 void Act() override {
371 void Act() override {
418 void Act() override {
428 void Act() override {
440 void Act() override {
469 void Act() override
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
CompilerInstance.cpp 824 bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
872 if (hasSourceManager() && !Act.isModelParsingAction())
875 if (Act.BeginSourceFile(*this, FIF)) {
876 Act.Execute();
877 Act.EndSourceFile();
    [all...]
  /external/clang/lib/Sema/
SemaAttr.cpp 126 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment);
172 PackStack.Act(PragmaLoc, Action, SlotLabel, AlignmentVal);
208 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
212 void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation,
312 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 661 : Act(_Act), VMContext(_VMContext ? _VMContext : new LLVMContext),
716 BackendAction BA = static_cast<BackendAction>(Act);
787 BackendAction BA = static_cast<BackendAction>(Act);
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 211 /// \param Act - The action to execute.
219 bool ExecuteAction(FrontendAction &Act);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 213 /// \param Act - The action to execute.
221 bool ExecuteAction(FrontendAction &Act);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
CompilerInstance.h 213 /// \param Act - The action to execute.
221 bool ExecuteAction(FrontendAction &Act);

Completed in 374 milliseconds

1 2