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:ann_dict
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Objects/
H
A
D
funcobject.c
287
PyObject *
ann_dict
= PyDict_New();
in func_get_annotation_dict()
local
288
if (
ann_dict
== NULL) {
in func_get_annotation_dict()
295
int err = PyDict_SetItem(
ann_dict
,
in func_get_annotation_dict()
303
Py_SETREF(op->func_annotations,
ann_dict
);
in func_get_annotation_dict()
/third_party/python/Python/
H
A
D
pylifecycle.c
2102
PyObject *m, *d, *loader, *
ann_dict
;
in add_main_module()
local
2108
ann_dict
= PyDict_New();
in add_main_module()
2109
if ((
ann_dict
== NULL) ||
in add_main_module()
2110
(PyDict_SetItemString(d, "__annotations__",
ann_dict
) < 0)) {
in add_main_module()
2113
Py_DECREF(
ann_dict
);
in add_main_module()
H
A
D
ceval.c
3340
PyObject *
ann_dict
;
local
3348
ann_dict
= _PyDict_GetItemWithError(LOCALS(),
3350
if (
ann_dict
== NULL) {
3355
ann_dict
= PyDict_New();
3356
if (
ann_dict
== NULL) {
3360
ann_dict
);
3361
Py_DECREF(
ann_dict
);
3369
ann_dict
= PyObject_GetItem(LOCALS(), &_Py_ID(__annotations__));
3370
if (
ann_dict
== NULL) {
3375
ann_dict
[all...]
Completed in 12 milliseconds