Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ToPython
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/tools/perf/pmu-events/
H
A
D
metric.py
17
def
ToPython
(self) -> str:
member in Expression
157
def
ToPython
(self):
member in Operator
158
return (f'{self.Bracket(self.lhs, self.lhs.
ToPython
())} {self.operator} '
159
f'{self.Bracket(self.rhs, self.rhs.
ToPython
(), True)}')
224
def
ToPython
(self):
member in Select
225
return (f'Select({self.true_val.
ToPython
()}, {self.cond.
ToPython
()}, '
226
f'{self.false_val.
ToPython
()})')
271
def
ToPython
(self):
member in Function
273
return f'{self.fn}({self.lhs.
ToPython
()}, {sel
322
def
ToPython
(self):
global()
member in Event
349
def
ToPython
(self):
global()
member in Constant
371
def
ToPython
(self):
global()
member in Literal
[all...]
H
A
D
metric_test.py
82
self.assertEqual(ParsePerfJson(before).
ToPython
(), after)
87
self.assertEqual(ParsePerfJson(before).
ToPython
(), after)
101
py = ParsePerfJson(before).
ToPython
()
Completed in 2 milliseconds