Searched refs:NamedTuple (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/startop/scripts/app_startup/ |
D | app_startup_runner.py | 36 from typing import Any, Callable, Dict, Generic, Iterable, List, NamedTuple, TextIO, Tuple, TypeVar… 45 RunCommandArgs = NamedTuple('RunCommandArgs', [('package', str), ('readahead', str), ('compiler_fil… 46 CollectorPackageInfo = NamedTuple('CollectorPackageInfo', [('package', str), ('compiler_filter', st… 164 def as_run_command(tpl: NamedTuple) -> List[Union[str, Any]]: argument 178 def generate_group_run_combinations(run_combinations: Iterable[NamedTuple], dst_nt: NamedTupleMeta[… argument 179 -> Iterable[Tuple[T, Iterable[NamedTuple]]]:
|
D | query_compiler_filter.py | 42 from typing import List, NamedTuple, Iterable 83 ParseTree = NamedTuple('ParseTree', [('label', str), ('children', List['ParseTree'])]) 85 ParseResult = NamedTuple('ParseResult', [('remainder', List[str]), ('tree', ParseTree)]) 173 CompilerFilterInfo = NamedTuple('CompilerFilterInfo', [('isa', str), ('status', str), ('reason', st…
|
D | app_startup_runner_test.py | 153 blank_nd = typing.NamedTuple('Blank') 156 a_nd = typing.NamedTuple('A', [('a', str)]) 162 ab_nd = typing.NamedTuple('AB', [('a', str), ('b', str)])
|