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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dframeobject.h22 PyObject *f_locals; /* local symbol table (any mapping) */ member in struct:_frame
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dframeobject.h22 PyObject *f_locals; /* local symbol table (any mapping) */ member in struct:_frame
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dframeobject.c59 Py_INCREF(f->f_locals);
60 return f->f_locals;
387 {"f_locals", (getter)frame_getlocals, NULL, NULL},
416 * f_locals, f_trace,
471 Py_CLEAR(f->f_locals);
502 Py_VISIT(f->f_locals);
709 f->f_locals = NULL;
723 ; /* f_locals = NULL; will be set by PyFrame_FastToLocals() */
730 f->f_locals = locals;
736 f->f_locals
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dframeobject.c59 Py_INCREF(f->f_locals);
60 return f->f_locals;
385 {"f_locals", (getter)frame_getlocals, NULL, NULL},
414 * f_locals, f_trace,
469 Py_CLEAR(f->f_locals);
500 Py_VISIT(f->f_locals);
707 f->f_locals = NULL;
721 ; /* f_locals = NULL; will be set by PyFrame_FastToLocals() */
728 f->f_locals = locals;
734 f->f_locals
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A 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)
H A Dpdb.py121 # The f_locals dictionary is updated from the actual frame
122 # locals whenever the .f_locals accessor is called, so we
124 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
H A Dinspect.py204 f_locals local namespace seen by this frame
827 return ArgInfo(args, varargs, varkw, frame.f_locals)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dceval.c1858 if ((x = f->f_locals) != NULL) {
1941 if ((x = f->f_locals) != NULL) {
1961 if ((x = f->f_locals) != NULL) {
2046 if ((v = f->f_locals) == NULL) {
2327 f->f_locals == NULL ?
2328 Py_None : f->f_locals,
2335 f->f_locals == NULL ?
2336 Py_None : f->f_locals,
2359 if ((x = f->f_locals) == NULL) {
3814 return current_frame->f_locals;
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dceval.c1855 if ((x = f->f_locals) != NULL) {
1938 if ((x = f->f_locals) != NULL) {
1954 if ((x = f->f_locals) != NULL) {
2035 if ((v = f->f_locals) == NULL) {
2312 f->f_locals == NULL ?
2313 Py_None : f->f_locals,
2320 f->f_locals == NULL ?
2321 Py_None : f->f_locals,
2344 if ((x = f->f_locals) == NULL) {
3792 return current_frame->f_locals;
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
H A 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/
H A Dinspect.py204 f_locals local namespace seen by this frame
830 return ArgInfo(args, varargs, varkw, frame.f_locals)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_inspect.py91 'type(tb.tb_frame).f_locals')
93 self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dasdl_c.py154 self.emit(s % sys._getframe(1).f_locals, depth)

Completed in 133 milliseconds