Home
last modified time | relevance | path

Searched refs:NamedTuple (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/startop/scripts/app_startup/lib/
H A Dargs_utils.py4 from typing import Any, Callable, Dict, Iterable, List, NamedTuple, Tuple, \
15 FilterFuncType = Callable[[NamedTuple], bool]
56 def filter_run_combinations(named_tuple: NamedTuple, argument
63 def generate_group_run_combinations(run_combinations: Iterable[NamedTuple], argument
65 -> Iterable[Tuple[T, Iterable[NamedTuple]]]:
H A Dargs_utils_test.py29 blank_nd = typing.NamedTuple('Blank')
33 a_nd = typing.NamedTuple('A', [('a', str)])
43 ab_nd = typing.NamedTuple('AB', [('a', str), ('b', str)])
/aosp12/frameworks/base/startop/scripts/app_startup/
H A Dquery_compiler_filter.py44 from typing import List, NamedTuple, Iterable
89 ParseTree = NamedTuple('ParseTree', [('label', str), ('children', List['ParseTree'])])
91 ParseResult = NamedTuple('ParseResult', [('remainder', List[str]), ('tree', ParseTree)])
179 CompilerFilterInfo = NamedTuple('CompilerFilterInfo', [('isa', str), ('status', str), ('reason', st…
H A Dapp_startup_runner.py36 from typing import Any, Callable, Iterable, List, NamedTuple, TextIO, Tuple, \
60 CollectorPackageInfo = NamedTuple('CollectorPackageInfo',
67 RunCommandArgs = NamedTuple('RunCommandArgs',
150 def as_run_command(tpl: NamedTuple) -> List[Union[str, Any]]: argument
/aosp12/frameworks/base/startop/scripts/iorap/
H A Danalyze_prefetch_file.py20 from typing import Dict, List, NamedTuple, Tuple
102 class FileEntry(NamedTuple):
108 class FileEntrySummary(NamedTuple):
H A Dcompile_handcrafted_file.py28 from typing import Any, Callable, Dict, Generic, Iterable, List, NamedTuple, TextIO, Tuple, TypeVar…
66 InputRecord = NamedTuple('InputRecord', [('filepath', str), ('offset', int), ('length', int), ('rem…
/aosp12/frameworks/base/startop/scripts/iorap/lib/
H A Dinode2filename.py19 from typing import Any, Callable, Dict, Generic, Iterable, List, NamedTuple, TextIO, Tuple, TypeVar…