Home
last modified time | relevance | path

Searched refs:Actions (Results 1 – 25 of 235) sorted by relevance

12345678910

/external/llvm-project/clang/lib/Parse/
DParseExpr.cpp153 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__, in ParseExpressionWithLeadingExtension()
162 Actions.CodeCompleteExpression(getCurScope(), in ParseAssignmentExpression()
202 assert(Actions.ExprEvalContexts.back().Context == in ParseConstantExpressionInExprEvalContext()
208 return Actions.ActOnConstantExpression(Res); in ParseConstantExpressionInExprEvalContext()
217 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated); in ParseConstantExpression()
223 Actions, Sema::ExpressionEvaluationContext::ConstantEvaluated); in ParseCaseExpression()
226 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
237 Actions, Sema::ExpressionEvaluationContext::Unevaluated); in ParseConstraintExpression()
240 if (Res.isUsable() && !Actions.CheckConstraintExpression(Res.get())) { in ParseConstraintExpression()
241 Actions.CorrectDelayedTyposInExpr(Res); in ParseConstraintExpression()
[all …]
DParseObjc.cpp53 Actions.CodeCompleteObjCAtDirective(getCurScope()); in ParseObjCAtDirectives()
87 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtDirectives()
94 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
99 Sema &Actions; member in Parser::ObjCTypeParamListScope
104 ObjCTypeParamListScope(Sema &Actions, Scope *S) in ObjCTypeParamListScope() argument
105 : Actions(Actions), S(S), Params(nullptr) {} in ObjCTypeParamListScope()
118 Actions.popObjCTypeParamList(S, Params); in leave()
141 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtClassDeclaration()
158 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtClassDeclaration()
160 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(), in ParseObjCAtClassDeclaration()
[all …]
DParseStmt.cpp116 return Actions.ProcessStmtAttributes(Res.get(), Attrs, Attrs.Range); in ParseStatementOrDeclaration()
174 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); in ParseStatementOrDeclarationAfterAttributes()
225 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd); in ParseStatementOrDeclarationAfterAttributes()
251 return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro); in ParseStatementOrDeclarationAfterAttributes()
293 Res = Actions.ActOnFinishFullStmt(Res.get()); in ParseStatementOrDeclarationAfterAttributes()
454 return Actions.ActOnExprStmtError(); in ParseExprStatement()
458 Actions.CheckCaseExpression(Expr.get())) { in ParseExprStatement()
510 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */, in ParseSEHTryBlock()
542 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
565 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
[all …]
DParseExprCXX.cpp96 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph()
164 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(), in ParseOptionalCXXScopeSpecifier()
195 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS)) in ParseOptionalCXXScopeSpecifier()
209 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS); in ParseOptionalCXXScopeSpecifier()
227 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier()
240 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext, in ParseOptionalCXXScopeSpecifier()
320 TemplateNameKind TNK = Actions.ActOnTemplateName( in ParseOptionalCXXScopeSpecifier()
359 Actions.ActOnCXXNestedNameSpecifier(getCurScope(), in ParseOptionalCXXScopeSpecifier()
396 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, IdInfo, in ParseOptionalCXXScopeSpecifier()
455 if (Actions.ActOnCXXNestedNameSpecifier( in ParseOptionalCXXScopeSpecifier()
[all …]
DParser.cpp52 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()), in Parser()
59 Actions.CurScope = nullptr; in Parser()
207 Actions.getASTContext().getPrintingPolicy()) in ConsumeExtraSemi()
407 Actions.CurScope = N; in EnterScope()
409 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); in EnterScope()
419 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); in ExitScope()
422 Actions.CurScope = OldScope->getParent(); in ExitScope()
456 Actions.CurScope = nullptr; in ~Parser()
477 Actions.ActOnTranslationUnitScope(getCurScope()); in Initialize()
558 Actions.Initialize(); in Initialize()
[all …]
DParseCXXInlineMethods.cpp39 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, in ParseCXXInlineMethodDef()
42 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, in ParseCXXInlineMethodDef()
46 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs); in ParseCXXInlineMethodDef()
48 Actions.ActOnPureSpecifier(FnD, PureSpecLoc); in ParseCXXInlineMethodDef()
71 Actions.SetDeclDeleted(FnD, KWLoc); in ParseCXXInlineMethodDef()
81 Actions.SetDeclDefaulted(FnD, KWLoc); in ParseCXXInlineMethodDef()
101 if (SkipFunctionBodies && (!FnD || Actions.canSkipFunctionBody(FnD)) && in ParseCXXInlineMethodDef()
103 Actions.ActOnSkippedFunctionBody(FnD); in ParseCXXInlineMethodDef()
115 ((Actions.CurContext->isDependentContext() || in ParseCXXInlineMethodDef()
118 !Actions.IsInsideALocalClassWithinATemplateFunction())) { in ParseCXXInlineMethodDef()
[all …]
DParseOpenMP.cpp204 Sema &Actions = P.getActions(); in parseOpenMPReductionId() local
249 auto &DeclNames = Actions.getASTContext().DeclarationNames; in parseOpenMPReductionId()
303 Actions.ActOnOpenMPDeclareReductionType(Range.getBegin(), TR); in ParseOpenMPDeclareReductionDirective()
343 DeclGroupPtrTy DRD = Actions.ActOnOpenMPDeclareReductionDirectiveStart( in ParseOpenMPDeclareReductionDirective()
344 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS); in ParseOpenMPDeclareReductionDirective()
355 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective()
356 ExprResult CombinerResult = Actions.ActOnFinishFullExpr( in ParseOpenMPDeclareReductionDirective()
358 Actions.ActOnOpenMPDeclareReductionCombinerEnd(D, CombinerResult.get()); in ParseOpenMPDeclareReductionDirective()
391 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(), in ParseOpenMPDeclareReductionDirective()
399 InitializerResult = Actions.ActOnFinishFullExpr( in ParseOpenMPDeclareReductionDirective()
[all …]
DParseInit.cpp186 return Actions.ActOnDesignatedInitializer(D, ColonLoc, true, in ParseInitializerWithPotentialDesignator()
289 switch (Actions.getObjCMessageKind( in ParseInitializerWithPotentialDesignator()
391 return Actions.ActOnDesignatedInitializer(Desig, EqualLoc, false, in ParseInitializerWithPotentialDesignator()
399 return Actions.ActOnDesignatedInitializer(Desig, SourceLocation(), false, in ParseInitializerWithPotentialDesignator()
412 return Actions.ActOnDesignatedInitializer(Desig, Tok.getLocation(), in ParseInitializerWithPotentialDesignator()
448 return Actions.ActOnInitList(LBraceLoc, None, ConsumeBrace()); in ParseBraceInitializer()
453 Actions, EnterExpressionEvaluationContext::InitList); in ParseBraceInitializer()
457 Actions.CodeCompleteDesignator(PreferredType.get(T.getOpenLocation()), in ParseBraceInitializer()
484 SubElt = Actions.ActOnPackExpansion(SubElt.get(), ConsumeToken()); in ParseBraceInitializer()
486 SubElt = Actions.CorrectDelayedTyposInExpr(SubElt.get()); in ParseBraceInitializer()
[all …]
DParseTemplate.cpp29 return Actions.ActOnReenterTemplateScope(D, [&] { in ReenterTemplateScopes()
31 return Actions.getCurScope(); in ReenterTemplateScopes()
144 Actions.ActOnRequiresClause(ParseConstraintLogicalOrExpression( in ParseTemplateDeclarationOrSpecialization()
157 ParamLists.push_back(Actions.ActOnTemplateParameterList( in ParseTemplateDeclarationOrSpecialization()
229 Decl *Decl = Actions.ParsedFreeStandingDeclSpec( in ParseSingleDeclarationAfterTemplate()
314 FakedParamLists.push_back(Actions.ActOnTemplateParameterList( in ParseSingleDeclarationAfterTemplate()
415 Actions.CorrectDelayedTyposInExpr(ParseConstraintExpression()); in ParseConceptDefinition()
424 return Actions.ActOnConceptDefinition(getCurScope(), in ParseConceptDefinition()
651 NamedDecl *ErrorParam = Actions.ActOnNonTypeTemplateParameter( in ParseTemplateParameter()
719 auto TNK = Actions.isTemplateName(getCurScope(), SS, in TryAnnotateTypeConstraint()
[all …]
DParseDeclCXX.cpp66 Actions.CodeCompleteNamespaceDecl(getCurScope()); in ParseNamespace()
134 return Actions.ConvertDeclToDeclGroup(NSAlias); in ParseNamespace()
215 Decl *NamespcDecl = Actions.ActOnStartNamespaceDef( in ParseNamespace()
219 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, NamespcDecl, in ParseNamespace()
230 Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd); in ParseNamespace()
232 return Actions.ConvertDeclToDeclGroup(NamespcDecl, in ParseNamespace()
261 Decl *NamespcDecl = Actions.ActOnStartNamespaceDef( in ParseInnerNamespace()
271 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation()); in ParseInnerNamespace()
286 Actions.CodeCompleteNamespaceAliasDecl(getCurScope()); in ParseNamespaceAlias()
324 return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, in ParseNamespaceAlias()
[all …]
/external/clang/lib/Parse/
DParseStmt.cpp122 return Actions.ProcessStmtAttributes(Res.get(), Attrs.getList(), Attrs.Range); in ParseStatementOrDeclaration()
176 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Statement); in ParseStatementOrDeclarationAfterAttributes()
217 return Actions.ActOnDeclStmt(Decl, DeclStart, DeclEnd); in ParseStatementOrDeclarationAfterAttributes()
237 return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro); in ParseStatementOrDeclarationAfterAttributes()
279 Res = Actions.ActOnFinishFullStmt(Res.get()); in ParseStatementOrDeclarationAfterAttributes()
410 return Actions.ActOnExprStmtError(); in ParseExprStatement()
414 Actions.CheckCaseExpression(Expr.get())) { in ParseExprStatement()
426 return Actions.ActOnExprStmt(Expr); in ParseExprStatement()
465 return Actions.ActOnSEHTryBlock(false /* IsCXXTry */, in ParseSEHTryBlock()
497 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
[all …]
DParseObjc.cpp52 Actions.CodeCompleteObjCAtDirective(getCurScope()); in ParseObjCAtDirectives()
88 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtDirectives()
95 return Actions.ConvertDeclToDeclGroup(SingleDecl); in ParseObjCAtDirectives()
100 Sema &Actions; member in Parser::ObjCTypeParamListScope
105 ObjCTypeParamListScope(Sema &Actions, Scope *S) in ObjCTypeParamListScope() argument
106 : Actions(Actions), S(S), Params(nullptr) {} in ObjCTypeParamListScope()
119 Actions.popObjCTypeParamList(S, Params); in leave()
143 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtClassDeclaration()
160 return Actions.ConvertDeclToDeclGroup(nullptr); in ParseObjCAtClassDeclaration()
162 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(), in ParseObjCAtClassDeclaration()
[all …]
DParseExpr.cpp150 LHS = Actions.ActOnUnaryOp(getCurScope(), ExtLoc, tok::kw___extension__, in ParseExpressionWithLeadingExtension()
159 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Expression); in ParseAssignmentExpression()
202 EnterExpressionEvaluationContext Unevaluated(Actions, in ParseConstantExpression()
207 return Actions.ActOnConstantExpression(Res); in ParseConstantExpression()
303 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
347 Actions.CodeCompleteAssignmentRHS(getCurScope(), LHS.get()); in ParseRHSOfBinaryExpression()
375 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
377 TernaryMiddle = Actions.CorrectDelayedTyposInExpr(TernaryMiddle); in ParseRHSOfBinaryExpression()
397 << /*LHS*/0 << PP.getSpelling(Tok) << Actions.getExprRange(RHS.get()); in ParseRHSOfBinaryExpression()
412 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
[all …]
DParser.cpp72 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()), in Parser()
79 Actions.CurScope = nullptr; in Parser()
228 Actions.getASTContext().getPrintingPolicy()) in ConsumeExtraSemi()
377 Actions.CurScope = N; in EnterScope()
379 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); in EnterScope()
389 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); in ExitScope()
392 Actions.CurScope = OldScope->getParent(); in ExitScope()
426 Actions.CurScope = nullptr; in ~Parser()
456 Actions.ActOnTranslationUnitScope(getCurScope()); in Initialize()
527 Actions.Initialize(); in Initialize()
[all …]
DParseCXXInlineMethods.cpp42 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, in ParseCXXInlineMethodDef()
45 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, in ParseCXXInlineMethodDef()
49 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs); in ParseCXXInlineMethodDef()
51 Actions.ActOnPureSpecifier(FnD, PureSpecLoc); in ParseCXXInlineMethodDef()
74 Actions.SetDeclDeleted(FnD, KWLoc); in ParseCXXInlineMethodDef()
84 Actions.SetDeclDefaulted(FnD, KWLoc); in ParseCXXInlineMethodDef()
104 if (SkipFunctionBodies && (!FnD || Actions.canSkipFunctionBody(FnD)) && in ParseCXXInlineMethodDef()
106 Actions.ActOnSkippedFunctionBody(FnD); in ParseCXXInlineMethodDef()
118 ((Actions.CurContext->isDependentContext() || in ParseCXXInlineMethodDef()
121 !Actions.IsInsideALocalClassWithinATemplateFunction())) { in ParseCXXInlineMethodDef()
[all …]
DParseExprCXX.cpp94 if (!Actions.isTemplateName(getCurScope(), SS, /*hasTemplateKeyword=*/false, in CheckForTemplateAndDigraph()
199 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(), in ParseOptionalCXXScopeSpecifier()
237 if (Actions.ActOnCXXGlobalScopeSpecifier(ConsumeToken(), SS)) in ParseOptionalCXXScopeSpecifier()
253 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS); in ParseOptionalCXXScopeSpecifier()
268 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier()
291 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); in ParseOptionalCXXScopeSpecifier()
358 = Actions.ActOnDependentTemplateName(getCurScope(), in ParseOptionalCXXScopeSpecifier()
399 if (Actions.ActOnCXXNestedNameSpecifier(getCurScope(), in ParseOptionalCXXScopeSpecifier()
434 if (Actions.IsInvalidUnlessNestedName(getCurScope(), SS, II, in ParseOptionalCXXScopeSpecifier()
462 !Actions.isNonTypeNestedNameSpecifier( in ParseOptionalCXXScopeSpecifier()
[all …]
DParseOpenMP.cpp145 Sema &Actions = P.getActions(); in parseOpenMPReductionId() local
189 auto &DeclNames = Actions.getASTContext().DeclarationNames; in parseOpenMPReductionId()
242 Actions.ActOnOpenMPDeclareReductionType(Range.getBegin(), TR); in ParseOpenMPDeclareReductionDirective()
282 DeclGroupPtrTy DRD = Actions.ActOnOpenMPDeclareReductionDirectiveStart( in ParseOpenMPDeclareReductionDirective()
283 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS); in ParseOpenMPDeclareReductionDirective()
293 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective()
295 Actions.ActOnFinishFullExpr(ParseAssignmentExpression().get(), in ParseOpenMPDeclareReductionDirective()
297 Actions.ActOnOpenMPDeclareReductionCombinerEnd(D, CombinerResult.get()); in ParseOpenMPDeclareReductionDirective()
328 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(), D); in ParseOpenMPDeclareReductionDirective()
329 InitializerResult = Actions.ActOnFinishFullExpr( in ParseOpenMPDeclareReductionDirective()
[all …]
DParseDecl.cpp70 return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo); in ParseTypeName()
235 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context, in ParseIdentifierLoc()
307 new EnterExpressionEvaluationContext(Actions, Sema::Unevaluated)); in ParseAttributeArgsCommon()
310 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression())); in ParseAttributeArgsCommon()
378 Actions.ActOnReenterCXXMethodParameter(getCurScope(), Param); in ParseGNUAttributeArgs()
1165 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); in ParseLexedAttributes()
1175 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), in ParseLexedAttributes()
1184 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), in ParseLexedAttributes()
1234 Sema::CXXThisScopeRAII ThisScope(Actions, RD, /*TypeQuals=*/0, in ParseLexedAttribute()
1242 Actions.ActOnReenterTemplateScope(Actions.CurScope, D); in ParseLexedAttribute()
[all …]
DParseTemplate.cpp132 Actions.CorrectDelayedTyposInExpr(ParseConstraintExpression()); in ParseTemplateDeclarationOrSpecialization()
144 ParamLists.push_back(Actions.ActOnTemplateParameterList( in ParseTemplateDeclarationOrSpecialization()
215 Decl *Decl = Actions.ParsedFreeStandingDeclSpec( in ParseSingleDeclarationAfterTemplate()
287 FakedParamLists.push_back(Actions.ActOnTemplateParameterList( in ParseSingleDeclarationAfterTemplate()
548 return Actions.ActOnTypeParameter(getCurScope(), TypenameKeyword, EllipsisLoc, in ParseTypeParameter()
637 Actions.ActOnTemplateParameterList(Depth, SourceLocation(), in ParseTemplateTemplateParameter()
657 return Actions.ActOnTemplateTemplateParameter(getCurScope(), TemplateLoc, in ParseTemplateTemplateParameter()
702 EnterExpressionEvaluationContext ConstantEvaluated(Actions, in ParseNonTypeTemplateParameter()
705 DefaultArg = Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()); in ParseNonTypeTemplateParameter()
711 return Actions.ActOnNonTypeTemplateParameter(getCurScope(), ParamDecl, in ParseNonTypeTemplateParameter()
[all …]
/external/llvm-project/llvm/utils/TableGen/
DDFAEmitter.cpp49 Actions.insert(A); in addTransition()
59 for (action_type A : Actions) { in visitDfaState()
202 ActionTuple Actions; member in __anonddf357500211::Transition
208 const ActionTuple &getActions() { return Actions; } in getActions()
220 UniqueVector<ActionTuple> Actions; member in __anonddf357500211::Automaton
244 const UniqueVector<ActionTuple> &Actions; member in __anonddf357500211::CustomDfaEmitter
248 CustomDfaEmitter(const UniqueVector<ActionTuple> &Actions, StringRef TypeName) in CustomDfaEmitter() argument
249 : Actions(Actions), TypeName(TypeName) {} in CustomDfaEmitter()
276 Actions.insert(Transitions.back().getActions()); in emit()
279 LLVM_DEBUG(dbgs() << " Action alphabet cardinality: " << Actions.size() in emit()
[all …]
/external/perfetto/ui/src/frontend/
Dsidebar.ts18 import {Actions} from '../common/actions';
106 globals.dispatch(Actions.executeQuery({
117 globals.dispatch(Actions.addDebugTrack({
306 globals.dispatch(Actions.updateStatus({
340 globals.dispatch(Actions.openTraceFromUrl({url}));
362 globals.dispatch(Actions.executeQuery({
375 globals.dispatch(Actions.deleteQuery({queryId: 'command'}));
376 globals.dispatch(Actions.setVideoOffset({offset}));
378 globals.dispatch(Actions.openVideoFromFile({file}));
382 globals.dispatch(Actions.openTraceFromFile({file}));
[all …]
Dkeyboard_event_handler.ts15 import {Actions} from '../common/actions';
37 globals.dispatch(Actions.toggleMarkCurrentArea({persistent: e.shiftKey}));
46 globals.dispatch(Actions.toggleVideo({}));
49 globals.dispatch(Actions.toggleFlagPause({}));
52 globals.dispatch(Actions.toggleScrubbing({}));
71 globals.makeSelection(Actions.deselect({}));
72 globals.dispatch(Actions.removeNote({id: '0'}));
161 globals.makeSelection(Actions.selectChromeSlice(
205 globals.dispatch(Actions.markArea({area, persistent}));
Drouter_jsdomtest.ts17 import {Actions, DeferredAction} from '../common/actions';
85 expect(dispatch.calls[0][1][0]).toEqual(Actions.navigate({route: '/'}));
90 expect(a).toEqual(Actions.navigate({route: '/viewer'}));
106 expect(a).toEqual(Actions.navigate({route: '/'}));
128 expect(dispatch.calls[0][1][0]).toEqual(Actions.navigate({route: '/b'}));
136 expect(dispatch.calls[0][1][0]).toEqual(Actions.navigate({route: '/'}));
/external/rust/crates/gdbstub/src/target/ext/base/
Dmultithread.rs80 actions: Actions<'_>, in resume()
235 pub struct Actions<'a> { struct
239 impl core::fmt::Debug for Actions<'_> { argument
245 impl Actions<'_> { implementation
246 pub(crate) fn new(iter: &mut dyn Iterator<Item = (TidSelector, ResumeAction)>) -> Actions<'_> { in new()
247 Actions { inner: iter } in new()
251 impl Iterator for Actions<'_> { implementation
/external/rust/crates/gdbstub/src/protocol/commands/
D_vCont.rs10 Actions(Actions<'a>), enumerator
18 _ => Some(vCont::Actions(Actions(body))), in from_packet()
25 pub struct Actions<'a>(&'a mut [u8]); struct
27 impl<'a> Actions<'a> { implementation

12345678910