Searched refs:DeferredAction (Results 1 – 9 of 9) sorted by relevance
/external/perfetto/ui/src/controller/ |
D | globals.ts | 19 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[] {
|
D | trace_controller.ts | 22 DeferredAction, 194 const actions: DeferredAction[] = [ 224 const addToTrackActions: DeferredAction[] = []; 358 const addSummaryTrackActions: DeferredAction[] = []; 359 const addTrackGroupActions: DeferredAction[] = [];
|
/external/perfetto/ui/src/frontend/ |
D | router_jsdomtest.ts | 17 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>();
|
D | router.ts | 17 import {Actions, DeferredAction} from '../common/actions'; 28 private dispatch: (a: DeferredAction) => void) {
|
D | globals.ts | 16 import {Actions, DeferredAction} from '../common/actions'; 22 type Dispatch = (action: DeferredAction) => void;
|
D | track_panel.ts | 17 import {Actions, DeferredAction} from '../common/actions'; 169 action: DeferredAction;
|
/external/v8/src/regexp/ |
D | jsregexp.h | 1234 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 …]
|
D | jsregexp.cc | 1100 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/ |
D | actions.ts | 339 export interface DeferredAction<Args = {}> { interface 351 (args: Args) => DeferredAction<Args>: 367 return (args: {}): DeferredAction<{}> => {
|