Home
last modified time | relevance | path

Searched refs:FileAndParser (Results 1 – 4 of 4) sorted by relevance

/development/tools/winscope/src/app/
Dloaded_parsers.ts23 import {FileAndParser} from 'parsers/file_and_parser';
42 private legacyParsers = new Array<FileAndParser>();
43 private perfettoParsers = new Array<FileAndParser>();
46 legacyParsers: FileAndParser[],
204 parsers: FileAndParser[],
233 this.perfettoParsers.push(new FileAndParser(file, parser));
274 newLegacyParsers: FileAndParser[],
276 ): FileAndParser[] {
368 newLegacyParsers: FileAndParser[],
370 ): FileAndParser[] {
[all …]
Dloaded_parsers_test.ts22 import {FileAndParser} from 'parsers/file_and_parser';
538 return new FileAndParser(new TraceFile(legacyFile), parser);
/development/tools/winscope/src/parsers/legacy/
Dparser_factory.ts21 import {FileAndParser} from 'parsers/file_and_parser';
63 ): Promise<FileAndParser[]> {
82 parsers.push(new FileAndParser(traceFile, subParser)),
/development/tools/winscope/src/parsers/
Dfile_and_parser.ts20 export class FileAndParser { class