Home
last modified time | relevance | path

Searched refs:ClassDef (Results 1 - 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gsubgpos.hh843 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); in intersects_class()
860 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); in intersected_class_glyphs()
889 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); in collect_class()
917 const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); in match_class()
1503 unsigned value, /* Index of first glyph in Coverage or Class value in ClassDef table */ in context_closure_lookup()
1954 const ClassDef
[all...]
H A Dhb-ot-layout-gdef-table.hh688 Offset16To<ClassDef>
700 Offset16To<ClassDef>
H A Dhb-ot-layout-common.hh1916 friend struct ClassDef;
2111 friend struct ClassDef;
2367 struct ClassDef struct
2533 { c->start_embed<ClassDef> ()->serialize (c, it); } in ClassDef_serialize()
H A Dhb-ot-layout-gpos-table.hh1678 Offset16To<ClassDef>
1679 classDef1; /* Offset to ClassDef table--from
1682 Offset16To<ClassDef>
1683 classDef2; /* Offset to ClassDef table--from
/third_party/skia/third_party/externals/freetype/src/otvalid/
H A Dotvcommn.c231 OTV_NAME_ENTER( "ClassDef" ); in otv_ClassDef_validate()
856 FT_UInt Coverage, ClassDef, ClassSetCount; in otv_u_O_O_x_Onx() local
866 ClassDef = FT_NEXT_USHORT( p ); in otv_u_O_O_x_Onx()
872 otv_ClassDef_validate( table + ClassDef, otvalid ); in otv_u_O_O_x_Onx()
/third_party/python/Python/
H A Dsymtable.c1220 if (!symtable_add_def(st, s->v.ClassDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1222 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1223 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt()
1224 if (s->v.ClassDef.decorator_list) in symtable_visit_stmt()
1225 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1226 if (!symtable_enter_block(st, s->v.ClassDef.name, ClassBlock, in symtable_visit_stmt()
1231 st->st_private = s->v.ClassDef.name; in symtable_visit_stmt()
1232 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt()
H A Dast_opt.c893 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.bases); in astfold_stmt()
894 CALL_SEQ(astfold_keyword, keyword, node_->v.ClassDef.keywords); in astfold_stmt()
895 CALL(astfold_body, asdl_seq, node_->v.ClassDef.body); in astfold_stmt()
896 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.decorator_list); in astfold_stmt()
H A Dast.c735 ret = validate_body(state, stmt->v.ClassDef.body, "ClassDef") && in validate_stmt()
736 validate_exprs(state, stmt->v.ClassDef.bases, Load, 0) && in validate_stmt()
737 validate_keywords(state, stmt->v.ClassDef.keywords) && in validate_stmt()
738 validate_exprs(state, stmt->v.ClassDef.decorator_list, Load, 0); in validate_stmt()
H A Dcompile.c2696 asdl_expr_seq *decos = s->v.ClassDef.decorator_list; in compiler_class()
2718 if (!compiler_enter_scope(c, s->v.ClassDef.name, in compiler_class()
2725 Py_INCREF(s->v.ClassDef.name); in compiler_class()
2726 Py_XSETREF(c->u->u_private, s->v.ClassDef.name); in compiler_class()
2744 if (!compiler_body(c, s->v.ClassDef.body)) { in compiler_class()
2793 ADDOP_LOAD_CONST(c, s->v.ClassDef.name); in compiler_class()
2796 if (!compiler_call_helper(c, 2, s->v.ClassDef.bases, s->v.ClassDef.keywords)) in compiler_class()
2803 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class()
H A DPython-ast.c1135 " | ClassDef(identifier name, expr* bases, keyword* keywords, stmt* body, expr* decorator_list)\n" in init_types()
1188 state->ClassDef_type = make_type(state, "ClassDef", state->stmt_type, in init_types()
1190 "ClassDef(identifier name, expr* bases, keyword* keywords, stmt* body, expr* decorator_list)"); in init_types()
2035 "field 'name' is required for ClassDef"); in _PyAST_ClassDef()
2042 p->v.ClassDef.name = name; in _PyAST_ClassDef()
2043 p->v.ClassDef.bases = bases; in _PyAST_ClassDef()
2044 p->v.ClassDef.keywords = keywords; in _PyAST_ClassDef()
2045 p->v.ClassDef.body = body; in _PyAST_ClassDef()
2046 p->v.ClassDef.decorator_list = decorator_list; in _PyAST_ClassDef()
3777 value = ast2obj_identifier(state, o->v.ClassDef in ast2obj_stmt()
[all...]
/third_party/python/Parser/
H A Daction_helpers.c786 /* Construct a ClassDef equivalent to class_def, but with decorators */
792 class_def->v.ClassDef.name, class_def->v.ClassDef.bases, in _PyPegen_class_def_decorators()
793 class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators, in _PyPegen_class_def_decorators()
/third_party/python/Include/internal/
H A Dpycore_ast.h212 } ClassDef; member
/third_party/python/Lib/
H A Dast.py290 if not isinstance(node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)):
789 node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)
/third_party/python/Lib/test/
H A Dtest_ast.py63 # ClassDef
65 # ClassDef with docstring
67 # ClassDef, new style class
160 # Decorated ClassDef
1361 return ast.ClassDef("myclass", bases, keywords,
1367 self.stmt(cls(body=[]), "empty body on ClassDef")
2482 ('Module', [('ClassDef', (1, 0, 1, 12), 'C', [], [], [('Pass', (1, 8, 1, 12))], [])], []),
2483 ('Module', [('ClassDef', (1, 0, 1, 32), 'C', [], [], [('Expr', (1, 9, 1, 32), ('Constant', (1, 9, 1, 32), 'docstring for class C', None))], [])], []),
2484 ('Module', [('ClassDef', (1, 0, 1, 21), 'C', [('Name', (1, 8, 1, 14), 'object', ('Load',))], [], [('Pass', (1, 17, 1, 21))], [])], []),
2530 ('Module', [('ClassDef', (
[all...]

Completed in 54 milliseconds