Home
last modified time | relevance | path

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

/linux/tools/testing/kunit/
H A Drun_checks.py17 from typing import Dict, List, Sequence
22 commands: Dict[str, Sequence[str]] = {
31 necessary_deps : Dict[str, str] = {
40 future_to_name: Dict[futures.Future[None], str] = {}
H A Dkunit_json.py11 from typing import Any, Dict
22 JsonObj = Dict[str, Any]
24 _status_map: Dict[TestStatus, str] = {
H A Dkunit_config.py11 from typing import Any, Dict, Iterable, List, Tuple
/linux/tools/perf/scripts/python/
H A Dgecko.py30 from typing import List, Dict, Optional, NamedTuple, Set, Tuple, Any
123 stringMap: Dict[str, int] = field(default_factory=dict)
125 stackMap: Dict[Tuple[Optional[int], int], int] = field(default_factory=dict)
126 frameMap: Dict[str, int] = field(default_factory=dict)
196 def _to_json_dict(self) -> Dict:
262 def process_event(param_dict: Dict) -> None: argument
/linux/tools/testing/selftests/hid/tests/
H A Dbase_device.py38 from typing import Any, ClassVar, Dict, List, Optional, Tuple, Type, Union
129 _uhid_devices: ClassVar[Dict[int, Tuple[bool, int]]] = {}
239 self: "EvdevDevice", application: str, matches: Dict[str, EvdevMatch]
276 _application_matches: Dict[str, EvdevMatch] = {}
385 def application_matches(self: "BaseDevice") -> Dict[str, EvdevMatch]:
389 def application_matches(self: "BaseDevice", data: Dict[str, EvdevMatch]) -> None:
H A Dtest_tablet.py16 from typing import Dict, List, Optional, Tuple
271 def legal_transitions() -> Dict[str, Tuple["PenState", ...]]:
297 def legal_transitions_with_invert() -> Dict[str, Tuple["PenState", ...]]:
335 def legal_transitions_with_button() -> Dict[str, Tuple["PenState", ...]]:
384 def tolerated_transitions() -> Dict[str, Tuple["PenState", ...]]:
397 def tolerated_transitions_with_invert() -> Dict[str, Tuple["PenState", ...]]:
412 def broken_transitions() -> Dict[str, Tuple["PenState", ...]]:
/linux/tools/perf/pmu-events/
H A Dmetric.py7 from typing import Dict, List, Optional, Set, Tuple, Union
458 def ToPerfJson(self) -> Dict[str, str]:
574 )-> Dict[Tuple[str, str], Expression]:
582 updates: Dict[Tuple[str, str], Expression] = dict()