Searched refs:Actions (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DRefactoringActions.cpp27 // FIXME: Rewrite the Actions to avoid duplication of descriptions/names with
72 // FIXME: Rewrite the Actions to avoid duplication of descriptions/names with
99 std::vector<std::unique_ptr<RefactoringAction>> Actions; local
101 Actions.push_back(std::make_unique<LocalRename>());
102 Actions.push_back(std::make_unique<ExtractRefactoring>());
104 return Actions;
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.chill.ksh38 * SECTION: Actions and Subroutines/chill()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DStandaloneExecution.cpp55 Actions) {
56 if (Actions.empty())
59 if (Actions.size() != 1)
63 auto &Action = Actions.front();
52 execute( llvm::ArrayRef< std::pair<std::unique_ptr<FrontendActionFactory>, ArgumentsAdjuster>> Actions) argument
H A DExecution.cpp51 Actions; local
52 Actions.emplace_back(std::move(Action), std::move(Adjuster));
53 return execute(Actions);
H A DAllTUsExecution.cpp81 Actions) {
82 if (Actions.empty())
85 if (Actions.size() != 1)
115 auto &Action = Actions.front();
78 execute( llvm::ArrayRef< std::pair<std::unique_ptr<FrontendActionFactory>, ArgumentsAdjuster>> Actions) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp53 Actions.CodeCompleteObjCAtDirective(getCurScope());
87 return Actions.ConvertDeclToDeclGroup(nullptr);
94 return Actions.ConvertDeclToDeclGroup(SingleDecl);
99 Sema &Actions; member in class:Parser::ObjCTypeParamListScope
104 ObjCTypeParamListScope(Sema &Actions, Scope *S) argument
105 : Actions(Actions), S(S), Params(nullptr) {}
118 Actions.popObjCTypeParamList(S, Params);
141 return Actions.ConvertDeclToDeclGroup(nullptr);
158 return Actions
[all...]
H A DParseExpr.cpp153 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__,
162 Actions.CodeCompleteExpression(getCurScope(),
202 assert(Actions.ExprEvalContexts.back().Context ==
208 return Actions.ActOnConstantExpression(Res);
217 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated);
223 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated);
226 return Actions.ActOnCaseExpr(CaseLoc, Res);
237 Actions, Sema::ExpressionEvaluationContext::Unevaluated);
240 if (Res.isUsable() && !Actions.CheckConstraintExpression(Res.get())) {
241 Actions
[all...]
H A DParseStmt.cpp116 return Actions.ProcessStmtAttributes(Res.get(), Attrs, Attrs.Range);
174 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement);
226 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd);
252 return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro);
294 Res = Actions.ActOnFinishFullStmt(Res.get());
448 return Actions.ActOnExprStmtError();
452 Actions.CheckCaseExpression(Expr.get())) {
504 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */,
536 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression());
559 return Actions
[all...]
H A DParser.cpp52 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
59 Actions.CurScope = nullptr;
207 Actions.getASTContext().getPrintingPolicy())
375 Actions.CurScope = N;
377 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
387 Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
390 Actions.CurScope = OldScope->getParent();
424 Actions.CurScope = nullptr;
445 Actions.ActOnTranslationUnitScope(getCurScope());
526 Actions
[all...]
H A DParseExprCXX.cpp96 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false,
164 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(),
195 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS))
209 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS);
227 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
240 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext,
320 TemplateNameKind TNK = Actions.ActOnTemplateName(
359 Actions.ActOnCXXNestedNameSpecifier(getCurScope(),
396 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, IdInfo,
455 if (Actions
[all...]
H A DParseCXXInlineMethods.cpp39 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D,
42 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D,
46 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs);
48 Actions.ActOnPureSpecifier(FnD, PureSpecLoc);
71 Actions.SetDeclDeleted(FnD, KWLoc);
81 Actions.SetDeclDefaulted(FnD, KWLoc);
101 if (SkipFunctionBodies && (!FnD || Actions.canSkipFunctionBody(FnD)) &&
103 Actions.ActOnSkippedFunctionBody(FnD);
115 ((Actions.CurContext->isDependentContext() ||
118 !Actions
[all...]
H A DParseInit.cpp186 return Actions.ActOnDesignatedInitializer(D, ColonLoc, true,
289 switch (Actions.getObjCMessageKind(
391 return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false,
399 return Actions.ActOnDesignatedInitializer(Desig, SourceLocation(), false,
412 return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(),
448 return Actions.ActOnInitList(LBraceLoc, None, ConsumeBrace());
453 Actions, EnterExpressionEvaluationContext::InitList);
457 Actions.CodeCompleteDesignator(PreferredType.get(T.getOpenLocation()),
484 SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken());
486 SubElt = Actions
[all...]
H A DParseTemplate.cpp29 return Actions.ActOnReenterTemplateScope(D, [&] {
31 return Actions.getCurScope();
144 Actions.CorrectDelayedTyposInExpr(
158 ParamLists.push_back(Actions.ActOnTemplateParameterList(
230 Decl *Decl = Actions.ParsedFreeStandingDeclSpec(
315 FakedParamLists.push_back(Actions.ActOnTemplateParameterList(
416 Actions.CorrectDelayedTyposInExpr(ParseConstraintExpression());
425 return Actions.ActOnConceptDefinition(getCurScope(),
652 NamedDecl *ErrorParam = Actions.ActOnNonTypeTemplateParameter(
720 auto TNK = Actions
[all...]
H A DParseOpenMP.cpp204 Sema &Actions = P.getActions(); local
249 auto &DeclNames = Actions.getASTContext().DeclarationNames;
304 Actions.ActOnOpenMPDeclareReductionType(Range.getBegin(), TR);
344 DeclGroupPtrTy DRD = Actions.ActOnOpenMPDeclareReductionDirectiveStart(
345 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS);
356 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D);
357 ExprResult CombinerResult = Actions.ActOnFinishFullExpr(
359 Actions.ActOnOpenMPDeclareReductionCombinerEnd(D, CombinerResult.get());
392 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(),
400 InitializerResult = Actions
662 Sema &Actions = P.getActions(); local
[all...]
H A DParseDeclCXX.cpp66 Actions.CodeCompleteNamespaceDecl(getCurScope());
134 return Actions.ConvertDeclToDeclGroup(NSAlias);
215 Decl *NamespcDecl = Actions.ActOnStartNamespaceDef(
219 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, NamespcDecl,
230 Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd);
232 return Actions.ConvertDeclToDeclGroup(NamespcDecl,
261 Decl *NamespcDecl = Actions.ActOnStartNamespaceDef(
271 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation());
286 Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
324 return Actions
[all...]
H A DParseDecl.cpp68 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
294 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context,
392 Actions,
397 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()));
476 Actions.ActOnReenterCXXMethodParameter(getCurScope(), Param);
1639 return Actions.ConvertDeclToDeclGroup(SingleDecl);
1686 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
1691 return Actions.BuildDeclaratorGroup(decls);
1693 return Actions.ConvertDeclToDeclGroup(TheDecl);
1903 Actions
[all...]
H A DParsePragma.cpp53 : PragmaHandler("section"), Actions(S) {}
58 Sema &Actions; member in struct:__anon1966::PragmaClangSectionHandler
169 PragmaCommentHandler(Sema &Actions) argument
170 : PragmaHandler("comment"), Actions(Actions) {}
175 Sema &Actions; member in struct:__anon1966::PragmaCommentHandler
179 PragmaDetectMismatchHandler(Sema &Actions) argument
180 : PragmaHandler("detect_mismatch"), Actions(Actions) {}
185 Sema &Actions; member in struct:__anon1966::PragmaDetectMismatchHandler
189 PragmaFloatControlHandler(Sema &Actions) argument
221 Sema &Actions; member in struct:__anon1966::PragmaOptimizeHandler
253 PragmaForceCUDAHostDeviceHandler(Sema &Actions) argument
259 Sema &Actions; member in struct:__anon1966::PragmaForceCUDAHostDeviceHandler
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.cpp49 Actions.insert(A);
59 for (action_type A : Actions) {
202 ActionTuple Actions; member in class:__anon4923::Transition
208 const ActionTuple &getActions() { return Actions; }
220 UniqueVector<ActionTuple> Actions; member in class:__anon4923::Automaton
244 const UniqueVector<ActionTuple> &Actions; member in class:__anon4923::CustomDfaEmitter
248 CustomDfaEmitter(const UniqueVector<ActionTuple> &Actions, StringRef TypeName) argument
249 : Actions(Actions), TypeName(TypeName) {}
276 Actions
[all...]
H A DDFAEmitter.h79 std::set<action_type> Actions;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDesignator.h170 void ClearExprs(Sema &Actions) {} argument
174 void FreeExprs(Sema &Actions) {} argument
200 void ClearExprs(Sema &Actions) {}
204 void FreeExprs(Sema &Actions) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp62 SmallVectorImpl<ActionEntry> &Actions,
118 assert(Actions.size());
119 PrevAction = Actions.size() - 1;
120 SizeActionEntry = getSLEB128Size(Actions[PrevAction].NextAction) +
121 getSLEB128Size(Actions[PrevAction].ValueForTypeID);
125 SizeActionEntry -= getSLEB128Size(Actions[PrevAction].ValueForTypeID);
126 SizeActionEntry += -Actions[PrevAction].NextAction;
127 PrevAction = Actions[PrevAction].Previous;
144 Actions.push_back(Action);
145 PrevAction = Actions
370 SmallVector<ActionEntry, 32> Actions; local
[all...]
H A DEHStreamer.h75 SmallVectorImpl<ActionEntry> &Actions,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h91 Sema &Actions; member in class:clang::ParsingDeclRAIIObject
102 : Actions(P.getActions()), DiagnosticPool(nullptr) {
109 : Actions(P.getActions()), DiagnosticPool(parentPool) {
117 : Actions(P.getActions()),
162 State = Actions.PushParsingDeclaration(DiagnosticPool);
168 Actions.PopParsingDeclaration(State, D);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DAllTUsExecution.h52 Actions) override;
H A DStandaloneExecution.h60 Actions) override;

Completed in 194 milliseconds

12