Lines Matching defs:find_ann
1852 find_ann(asdl_stmt_seq *stmts)
1863 res = find_ann(st->v.For.body) ||
1864 find_ann(st->v.For.orelse);
1867 res = find_ann(st->v.AsyncFor.body) ||
1868 find_ann(st->v.AsyncFor.orelse);
1871 res = find_ann(st->v.While.body) ||
1872 find_ann(st->v.While.orelse);
1875 res = find_ann(st->v.If.body) ||
1876 find_ann(st->v.If.orelse);
1879 res = find_ann(st->v.With.body);
1882 res = find_ann(st->v.AsyncWith.body);
1888 if (find_ann(handler->v.ExceptHandler.body)) {
1892 res = find_ann(st->v.Try.body) ||
1893 find_ann(st->v.Try.finalbody) ||
1894 find_ann(st->v.Try.orelse);
1900 if (find_ann(handler->v.ExceptHandler.body)) {
1904 res = find_ann(st->v.TryStar.body) ||
1905 find_ann(st->v.TryStar.finalbody) ||
1906 find_ann(st->v.TryStar.orelse);
1912 if (find_ann(match_case->body)) {
2157 if (find_ann(stmts)) {
2199 if (find_ann(mod->v.Interactive.body)) {