Home
last modified time | relevance | path

Searched refs:f_locals (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c59 Py_INCREF(f->f_locals); in WARN_GET_SET()
60 return f->f_locals; in WARN_GET_SET()
471 Py_CLEAR(f->f_locals); in frame_dealloc()
502 Py_VISIT(f->f_locals); in frame_traverse()
709 f->f_locals = NULL; in PyFrame_New()
730 f->f_locals = locals; in PyFrame_New()
736 f->f_locals = locals; in PyFrame_New()
881 locals = f->f_locals; in PyFrame_FastToLocals()
883 locals = f->f_locals = PyDict_New(); in PyFrame_FastToLocals()
933 locals = f->f_locals; in PyFrame_LocalsToFast()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c59 Py_INCREF(f->f_locals); in WARN_GET_SET()
60 return f->f_locals; in WARN_GET_SET()
469 Py_CLEAR(f->f_locals); in frame_dealloc()
500 Py_VISIT(f->f_locals); in frame_traverse()
707 f->f_locals = NULL; in PyFrame_New()
728 f->f_locals = locals; in PyFrame_New()
734 f->f_locals = locals; in PyFrame_New()
879 locals = f->f_locals; in PyFrame_FastToLocals()
881 locals = f->f_locals = PyDict_New(); in PyFrame_FastToLocals()
931 locals = f->f_locals; in PyFrame_LocalsToFast()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dframeobject.h22 PyObject *f_locals; /* local symbol table (any mapping) */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dframeobject.h22 PyObject *f_locals; /* local symbol table (any mapping) */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dbdb.py357 if '__args__' in frame.f_locals:
358 args = frame.f_locals['__args__']
365 if '__return__' in frame.f_locals:
366 rv = frame.f_locals['__return__']
581 frame.f_locals)
Dpdb.py124 self.curframe_locals = self.curframe.f_locals
188 frame.f_locals['__return__'] = return_value
198 frame.f_locals['__exception__'] = exc_type, exc_value
640 self.curframe_locals = self.curframe.f_locals
651 self.curframe_locals = self.curframe.f_locals
Dinspect.py827 return ArgInfo(args, varargs, varkw, frame.f_locals)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c1858 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
1941 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
1961 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
2046 if ((v = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
2327 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2328 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2335 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2336 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2359 if ((x = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
3814 return current_frame->f_locals; in PyEval_GetLocals()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c1855 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
1938 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
1954 if ((x = f->f_locals) != NULL) { in PyEval_EvalFrameEx()
2035 if ((v = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
2312 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2313 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2320 f->f_locals == NULL ? in PyEval_EvalFrameEx()
2321 Py_None : f->f_locals, in PyEval_EvalFrameEx()
2344 if ((x = f->f_locals) == NULL) { in PyEval_EvalFrameEx()
3792 return current_frame->f_locals; in PyEval_GetLocals()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
Dbuild.py2316 if 'self' in Tb.tb_frame.f_locals and hasattr(Tb.tb_frame.f_locals['self'], 'MetaFile'):
2317 MetaFile = Tb.tb_frame.f_locals['self'].MetaFile
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dinspect.py830 return ArgInfo(args, varargs, varkw, frame.f_locals)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_inspect.py93 self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dasdl_c.py154 self.emit(s % sys._getframe(1).f_locals, depth)