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:onempty
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Tools/c-analyzer/c_common/
H
A
D
iterutil.py
19
def iter_many(items,
onempty
=None):
21
if
onempty
is None:
23
if not callable(
onempty
):
25
items =
onempty
(items)
26
yield from iter_many(items,
onempty
=None)
32
if
onempty
is None:
34
if not callable(
onempty
):
36
items =
onempty
(items)
37
yield from iter_many(items,
onempty
=None)
H
A
D
scriptutil.py
561
onempty
= Exception('no filenames provided')
565
raise
onempty
570
for filename, ismany in iterutil.iter_many(items,
onempty
):
H
A
D
fsutil.py
149
onempty
= Exception('no filenames provided')
150
for filename, solo in iter_many(filenames,
onempty
):
/third_party/node/lib/internal/
H
A
D
socket_list.js
67
function
onempty
(self) {
function
81
if (this.connections === 0) return
onempty
(this);
84
this.once('empty',
onempty
);
Completed in 3 milliseconds