Home
last modified time | relevance | path

Searched refs:DeferredAction (Results 1 – 9 of 9) sorted by relevance

/external/perfetto/ui/src/controller/
Dglobals.ts19 import {DeferredAction, StateActions} from '../common/actions';
33 dispatch(action: DeferredAction): void;
48 private _queuedActions = new Array<DeferredAction>();
56 dispatch(action: DeferredAction): void {
60 dispatchMultiple(actions: DeferredAction[]): void {
80 this._queuedActions = new Array<DeferredAction>();
117 applyAction(action: DeferredAction): Patch[] {
Dtrace_controller.ts22 DeferredAction,
194 const actions: DeferredAction[] = [
224 const addToTrackActions: DeferredAction[] = [];
358 const addSummaryTrackActions: DeferredAction[] = [];
359 const addTrackGroupActions: DeferredAction[] = [];
/external/perfetto/ui/src/frontend/
Drouter_jsdomtest.ts17 import {Actions, DeferredAction} from '../common/actions';
52 const dispatch = dingus<(a: DeferredAction) => void>();
70 const dispatch = dingus<(a: DeferredAction) => void>();
81 const mockDispatch = (a: DeferredAction) => {
96 const mockDispatch = (a: DeferredAction) => {
113 const dispatch = dingus<(a: DeferredAction) => void>();
122 const dispatch = dingus<(a: DeferredAction) => void>();
Drouter.ts17 import {Actions, DeferredAction} from '../common/actions';
28 private dispatch: (a: DeferredAction) => void) {
Dglobals.ts16 import {Actions, DeferredAction} from '../common/actions';
22 type Dispatch = (action: DeferredAction) => void;
Dtrack_panel.ts17 import {Actions, DeferredAction} from '../common/actions';
169 action: DeferredAction;
/external/v8/src/regexp/
Djsregexp.h1234 class DeferredAction {
1236 DeferredAction(ActionNode::ActionType action_type, int reg) in DeferredAction() function
1238 DeferredAction* next() { return next_; } in next()
1245 DeferredAction* next_;
1249 class DeferredCapture : public DeferredAction {
1252 : DeferredAction(ActionNode::STORE_POSITION, reg), in DeferredCapture()
1263 class DeferredSetRegister : public DeferredAction {
1266 : DeferredAction(ActionNode::SET_REGISTER, reg), in DeferredSetRegister()
1273 class DeferredClearCaptures : public DeferredAction {
1276 : DeferredAction(ActionNode::CLEAR_CAPTURES, -1), in DeferredClearCaptures()
[all …]
Djsregexp.cc1100 bool Trace::DeferredAction::Mentions(int that) { in Mentions()
1111 for (DeferredAction* action = actions_; action != nullptr; in mentions_reg()
1122 for (DeferredAction* action = actions_; action != nullptr; in GetStoredPosition()
1140 for (DeferredAction* action = actions_; action != nullptr; in FindAffectedRegisters()
1204 for (DeferredAction* action = actions_; action != nullptr; in PerformDeferredActions()
/external/perfetto/ui/src/common/
Dactions.ts339 export interface DeferredAction<Args = {}> { interface
351 (args: Args) => DeferredAction<Args>:
367 return (args: {}): DeferredAction<{}> => {