Home
last modified time | relevance | path

Searched refs:customFormatters (Results 1 – 3 of 3) sorted by relevance

/development/tools/winscope/src/parsers/transitions/
Dparser_transitions_utils.ts149 const customFormatters = new Map<string, PropertyFormatter>([ constant
159 new SetFormatters(undefined, customFormatters).apply(tree);
203 const customFormatters = new Map<string, PropertyFormatter>([ constant
213 customFormatters.set('handler', new EnumFormatter(info.handlerMapping));
216 new SetFormatters(undefined, customFormatters).apply(tree);
/development/tools/winscope/src/parsers/operations/
Dset_formatters.ts44 private readonly customFormatters?: Map<string, PropertyFormatter>,
76 if (this.customFormatters?.get(node.name)) {
77 return this.customFormatters.get(node.name);
/development/tools/winscope/src/parsers/protolog/
Dparser_protolog_utils.ts41 const customFormatters = new Map([['timestamp', TIMESTAMP_NODE_FORMATTER]]); constant
51 new SetFormatters(undefined, customFormatters).apply(tree);