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:anext
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Lib/test/
H
A
D
test_asyncgen.py
55
"""Pure-Python implementation of
anext
() for testing purposes.
57
Closely matches the builtin
anext
() C implementation.
77
# implementation and low-level C
anext
() iterators.
414
with self.subTest(
anext
="pure-Python"):
416
with self.subTest(
anext
="builtin"):
417
self._check_async_iterator_anext(ait_class,
anext
)
419
def _check_async_iterator_anext(self, ait_class,
anext
):
423
results.append(await
anext
(g))
424
results.append(await
anext
(g))
425
results.append(await
anext
(
[all...]
/third_party/python/Objects/
H
A
D
iterobject.c
365
* Then `await
anext
(a)` should call
in anextawaitable_iternext()
375
* Then `await
anext
(gen)` can just call
in anextawaitable_iternext()
406
/* `anextawaitableobject` is only used by `
anext
()` when
in anextawaitable_proxy()
499
anextawaitableobject *
anext
= PyObject_GC_New(
in PyAnextAwaitable_New()
local
501
if (
anext
== NULL) {
in PyAnextAwaitable_New()
505
anext
->wrapped = awaitable;
in PyAnextAwaitable_New()
507
anext
->default_value = default_value;
in PyAnextAwaitable_New()
508
_PyObject_GC_TRACK(
anext
);
in PyAnextAwaitable_New()
509
return (PyObject *)
anext
;
in PyAnextAwaitable_New()
/third_party/python/Lib/
H
A
D
contextlib.py
204
return await
anext
(self.gen)
211
await
anext
(self.gen)
Completed in 4 milliseconds