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:frame_obj
(Results
1 - 6
of
6
) sorted by relevance
/third_party/python/Python/
H
A
D
frame.c
12
Py_VISIT(frame->
frame_obj
);
in _PyFrame_Traverse()
29
assert(frame->
frame_obj
== NULL);
in _PyFrame_MakeAndSetFrameObject()
41
if (frame->
frame_obj
) {
in _PyFrame_MakeAndSetFrameObject()
55
f->f_frame->
frame_obj
= f;
in _PyFrame_MakeAndSetFrameObject()
57
return frame->
frame_obj
;
in _PyFrame_MakeAndSetFrameObject()
62
frame->
frame_obj
= f;
in _PyFrame_MakeAndSetFrameObject()
129
if (frame->
frame_obj
) {
in _PyFrame_Clear()
130
PyFrameObject *f = frame->
frame_obj
;
in _PyFrame_Clear()
131
frame->
frame_obj
= NULL;
in _PyFrame_Clear()
143
Py_XDECREF(frame->
frame_obj
);
in _PyFrame_Clear()
[all...]
H
A
D
ceval.c
5436
assert(frame->
frame_obj
== NULL);
6409
assert(frame->
frame_obj
== NULL || frame->
frame_obj
->f_frame == frame);
/third_party/python/Include/internal/
H
A
D
pycore_frame.h
54
PyFrameObject *
frame_obj
; /* Strong reference, may be NULL */
member
112
frame->
frame_obj
= NULL;
in _PyFrame_InitializeSpecials()
167
PyFrameObject *res = frame->
frame_obj
;
in _PyFrame_GetFrameObject()
/third_party/python/Modules/
H
A
D
_tracemalloc.c
1082
PyObject *
frame_obj
, *lineno_obj;
in frame_to_pyobject()
local
1084
frame_obj
= PyTuple_New(2);
in frame_to_pyobject()
1085
if (
frame_obj
== NULL)
in frame_to_pyobject()
1089
PyTuple_SET_ITEM(
frame_obj
, 0, frame->filename);
in frame_to_pyobject()
1093
Py_DECREF(
frame_obj
);
in frame_to_pyobject()
1096
PyTuple_SET_ITEM(
frame_obj
, 1, lineno_obj);
in frame_to_pyobject()
1098
return
frame_obj
;
in frame_to_pyobject()
/third_party/python/Objects/
H
A
D
genobject.c
40
assert(frame->
frame_obj
== NULL ||
in gen_traverse()
41
frame->
frame_obj
->f_frame->owner == FRAME_OWNED_BY_GENERATOR);
in gen_traverse()
973
assert(f->f_frame->
frame_obj
== NULL);
in gen_new_with_qualname()
978
assert(frame->
frame_obj
== f);
in gen_new_with_qualname()
H
A
D
frameobject.c
893
assert(f->f_frame->
frame_obj
== NULL);
in frame_traverse()
Completed in 19 milliseconds