Searched defs:Expression (Results 1 – 1 of 1) sorted by relevance
/linux/tools/perf/pmu-events/ |
H A D | metric.py | 10 class Expression: class 29 def Substitute(self, name: str, expression: 'Expression') -> 'Expression': 35 def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator': 38 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator': 41 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator': 44 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator': 47 def __rand__(self, other: Union[int, float, 'Expression']) -> 'Operator': 50 def __lt__(self, other: Union[int, float, 'Expression']) -> 'Operator': 53 def __gt__(self, other: Union[int, float, 'Expression']) -> 'Operator': 56 def __add__(self, other: Union[int, float, 'Expression']) -> 'Operator': [all …]
|