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:LineStream
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/tools/testing/kunit/
H
A
D
kunit_parser.py
146
class
LineStream
:
class
158
"""Creates a new
LineStream
that wraps the given iterator."""
176
"""Returns the current line, without advancing the
LineStream
.
182
"""Returns the current line and advances the
LineStream
to
187
raise ValueError(f'
LineStream
: going past EOF, last line was {s}')
198
"""Empties all lines stored in
LineStream
object into
217
def extract_tap_lines(kernel_output: Iterable[str]) ->
LineStream
:
248
return
LineStream
(lines=isolate_ktap_output(kernel_output))
272
def parse_ktap_header(lines:
LineStream
, test: Test) -> bool:
282
lines -
LineStream
o
[all...]
H
A
D
kunit_tool_test.py
91
def assertContains(self, needle: str, haystack: kunit_parser.
LineStream
):
349
def line_stream_from_strs(strs: Iterable[str]) -> kunit_parser.
LineStream
:
350
return kunit_parser.
LineStream
(enumerate(strs, start=1))
368
with self.assertRaisesRegex(ValueError, '
LineStream
: going past EOF'):
379
stream = kunit_parser.
LineStream
(generator())
Completed in 3 milliseconds