HomeSort by: relevance | last modified time | path
    Searched defs:Act (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 139 std::unique_ptr<FrontendAction> Act = CreateFrontendBaseAction(CI);
140 if (!Act)
146 Act = std::make_unique<FixItRecompile>(std::move(Act));
157 Act = std::make_unique<arcmt::CheckAction>(std::move(Act));
160 Act = std::make_unique<arcmt::ModifyAction>(std::move(Act));
163 Act = std::make_unique<arcmt::MigrateAction>(std::move(Act),
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
IncrementalParser.h 42 std::unique_ptr<IncrementalAction> Act;
50 /// Consumer to process the produced top level decls. Owned by Act.
  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CodeGenAction.h 46 unsigned Act;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
InputInfo.h 41 const Action* Act;
52 : Kind(Nothing), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {}
55 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
59 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
65 : Kind(InputArg), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
70 : Kind(InputArg), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
80 const Action *getAction() const { return Act; }
81 void setAction(const Action *A) { Act = A; }
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrecompiledPreamble.cpp 412 std::unique_ptr<PrecompilePreambleAction> Act;
413 Act.reset(new PrecompilePreambleAction(
416 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
431 if (llvm::Error Err = Act->Execute())
437 Act->EndSourceFile();
439 if (!Act->hasEmittedPreamblePCH())
ASTUnit.cpp 1195 std::unique_ptr<TopLevelDeclTrackerAction> Act(
1200 ActCleanup(Act.get());
1202 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
1211 if (llvm::Error Err = Act->Execute()) {
1218 Act->EndSourceFile();
1587 FrontendAction *Act = Action;
1590 if (!Act) {
1592 Act = TrackerAct.get();
1599 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) {
1619 if (llvm::Error Err = Act->Execute())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 269 AlignPackStack.Act(PragmaLoc, Action, StringRef(), Info);
384 AlignPackStack.Act(PragmaLoc, Action, SlotLabel, Info);
488 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
497 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
504 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
508 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
511 FpPragmaStack.Act(Loc, Sema::PSK_Push_Set, StringRef(), NewFPFeatures);
519 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures);
539 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode);
543 void Sema::PragmaStack<Sema::AlignPackInfo>::Act(SourceLocation PragmaLocation
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEISelLowering.cpp 189 LegalizeAction Act = (IntVT == MVT::i32) ? Promote : Legal;
190 setOperationAction(ISD::BITREVERSE, IntVT, Act);
191 setOperationAction(ISD::CTLZ, IntVT, Act);
192 setOperationAction(ISD::CTLZ_ZERO_UNDEF, IntVT, Act);
193 setOperationAction(ISD::CTPOP, IntVT, Act);
197 setOperationAction(ISD::AND, IntVT, Act);
198 setOperationAction(ISD::OR, IntVT, Act);
199 setOperationAction(ISD::XOR, IntVT, Act);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 601 void Act(SourceLocation PragmaLocation, PragmaMsStackAction Action,
653 Act(CurrentPragmaLocation, Action, Label, CurrentValue);
1451 /// same special member, we should act as if it is not yet declared.
2538 /// Act on the result of classifying a name as an undeclared (ADL-only)
2542 /// Act on the result of classifying a name as an undeclared member of a
2548 /// Act on the result of classifying a name as a specific non-type
2554 /// Act on the result of classifying a name as an overload set.
5598 // Act on C++ namespaces
10242 /// Act on \p D, a function definition inside of an `omp [begin/end] assumes`.
12946 void Sema::PragmaStack<Sema::AlignPackInfo>::Act(SourceLocation PragmaLocation
    [all...]

Completed in 49 milliseconds