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:eval_frame
(Results
1 - 6
of
6
) sorted by relevance
/third_party/python/Include/internal/
H
A
D
pycore_ceval.h
26
#include "pycore_interp.h" // PyInterpreterState.
eval_frame
72
if (tstate->interp->
eval_frame
== NULL) {
in _PyEval_EvalFrame()
75
return tstate->interp->
eval_frame
(tstate, frame, throwflag);
in _PyEval_EvalFrame()
H
A
D
pycore_interp.h
146
_PyFrameEvalFunction
eval_frame
;
member
/third_party/python/Include/cpython/
H
A
D
pystate.h
270
_PyFrameEvalFunction
eval_frame
);
/third_party/python/Python/
H
A
D
pystate.c
2126
if (interp->
eval_frame
== NULL) {
in _PyInterpreterState_GetEvalFrameFunc()
2129
return interp->
eval_frame
;
in _PyInterpreterState_GetEvalFrameFunc()
2135
_PyFrameEvalFunction
eval_frame
)
in _PyInterpreterState_SetEvalFrameFunc()
2137
if (
eval_frame
== _PyEval_EvalFrameDefault) {
in _PyInterpreterState_SetEvalFrameFunc()
2138
interp->
eval_frame
= NULL;
in _PyInterpreterState_SetEvalFrameFunc()
2141
interp->
eval_frame
=
eval_frame
;
in _PyInterpreterState_SetEvalFrameFunc()
2134
_PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction
eval_frame
)
_PyInterpreterState_SetEvalFrameFunc()
argument
H
A
D
specialize.c
1241
if (_PyInterpreterState_GET()->
eval_frame
) {
in _Py_Specialize_BinarySubscr()
1489
if (_PyInterpreterState_GET()->
eval_frame
) {
in specialize_py_call()
H
A
D
ceval.c
2236
DEOPT_IF(tstate->interp->
eval_frame
, BINARY_SUBSCR);
4743
if (Py_TYPE(function) == &PyFunction_Type && tstate->interp->
eval_frame
== NULL) {
4843
DEOPT_IF(tstate->interp->
eval_frame
, CALL);
4877
DEOPT_IF(tstate->interp->
eval_frame
, CALL);
Completed in 24 milliseconds