Home
last modified time | relevance | path

Searched refs:decorator_list (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl13 stmt* body, expr* decorator_list)
14 | ClassDef(identifier name, expr* bases, stmt* body, expr* decorator_list)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h76 asdl_seq *decorator_list; member
83 asdl_seq *decorator_list; member
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h76 asdl_seq *decorator_list; member
83 asdl_seq *decorator_list; member
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
DPython-ast.c1025 decorator_list, int lineno, int col_offset, PyArena *arena) in FunctionDef() argument
1045 p->v.FunctionDef.decorator_list = decorator_list; in FunctionDef()
1053 decorator_list, int lineno, int col_offset, PyArena *arena) in ClassDef() argument
1068 p->v.ClassDef.decorator_list = decorator_list; in ClassDef()
2200 value = ast2obj_list(o->v.FunctionDef.decorator_list, in ast2obj_stmt()
2226 value = ast2obj_list(o->v.ClassDef.decorator_list, in ast2obj_stmt()
3498 asdl_seq* decorator_list; in obj2ast_stmt() local
3560 decorator_list = asdl_seq_new(len, arena); in obj2ast_stmt()
3561 if (decorator_list == NULL) goto failed; in obj2ast_stmt()
3566 asdl_seq_SET(decorator_list, i, value); in obj2ast_stmt()
[all …]
Dsymtable.c1007 if (s->v.FunctionDef.decorator_list) in symtable_visit_stmt()
1008 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1022 if (s->v.ClassDef.decorator_list) in symtable_visit_stmt()
1023 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
Dcompile.c1366 asdl_seq* decos = s->v.FunctionDef.decorator_list; in compiler_function()
1420 asdl_seq* decos = s->v.ClassDef.decorator_list; in compiler_class()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
DPython-ast.c1042 decorator_list, int lineno, int col_offset, PyArena *arena) in FunctionDef() argument
1062 p->v.FunctionDef.decorator_list = decorator_list; in FunctionDef()
1070 decorator_list, int lineno, int col_offset, PyArena *arena) in ClassDef() argument
1085 p->v.ClassDef.decorator_list = decorator_list; in ClassDef()
2217 value = ast2obj_list(o->v.FunctionDef.decorator_list, in ast2obj_stmt()
2243 value = ast2obj_list(o->v.ClassDef.decorator_list, in ast2obj_stmt()
3515 asdl_seq* decorator_list; in obj2ast_stmt() local
3577 decorator_list = asdl_seq_new(len, arena); in obj2ast_stmt()
3578 if (decorator_list == NULL) goto failed; in obj2ast_stmt()
3583 asdl_seq_SET(decorator_list, i, value); in obj2ast_stmt()
[all …]
Dsymtable.c1009 if (s->v.FunctionDef.decorator_list) in symtable_visit_stmt()
1010 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1024 if (s->v.ClassDef.decorator_list) in symtable_visit_stmt()
1025 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
Dcompile.c1389 asdl_seq* decos = s->v.FunctionDef.decorator_list; in compiler_function()
1443 asdl_seq* decos = s->v.ClassDef.decorator_list; in compiler_class()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
Dunparse.py227 for deco in t.decorator_list:
243 for deco in t.decorator_list: