Home
last modified time | relevance | path

Searched refs:ClassDef (Results 1 – 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
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()
1954 const ClassDef &class_def = this+classDef; in intersects()
1992 const ClassDef &class_def = this+classDef; in closure()
2018 const ClassDef &class_def = this+classDef; in closure_lookups()
2042 const ClassDef &class_def = this+classDef; in collect_glyphs()
2056 const ClassDef &class_def = this+classDef; in would_apply()
2074 const ClassDef &class_def = this+classDef; in apply()
[all …]
Dhb-ot-layout-gdef-table.hh688 Offset16To<ClassDef>
700 Offset16To<ClassDef>
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()
Dhb-ot-layout-gpos-table.hh1678 Offset16To<ClassDef>
1682 Offset16To<ClassDef>
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvcommn.c856 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/
Dsymtable.c1231 if (!symtable_add_def(st, s->v.ClassDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1233 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1234 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt()
1235 if (s->v.ClassDef.decorator_list) in symtable_visit_stmt()
1236 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1237 if (!symtable_enter_block(st, s->v.ClassDef.name, ClassBlock, in symtable_visit_stmt()
1242 st->st_private = s->v.ClassDef.name; in symtable_visit_stmt()
1243 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt()
Dast.c693 ret = validate_body(state, stmt->v.ClassDef.body, "ClassDef") && in validate_stmt()
694 validate_exprs(state, stmt->v.ClassDef.bases, Load, 0) && in validate_stmt()
695 validate_keywords(state, stmt->v.ClassDef.keywords) && in validate_stmt()
696 validate_exprs(state, stmt->v.ClassDef.decorator_list, Load, 0); in validate_stmt()
Dast_opt.c678 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.bases); in astfold_stmt()
679 CALL_SEQ(astfold_keyword, keyword, node_->v.ClassDef.keywords); in astfold_stmt()
680 CALL(astfold_body, asdl_seq, node_->v.ClassDef.body); in astfold_stmt()
681 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.decorator_list); in astfold_stmt()
Dcompile.c2428 asdl_expr_seq *decos = s->v.ClassDef.decorator_list; in compiler_class()
2451 if (!compiler_enter_scope(c, s->v.ClassDef.name, in compiler_class()
2457 Py_INCREF(s->v.ClassDef.name); in compiler_class()
2458 Py_XSETREF(c->u->u_private, s->v.ClassDef.name); in compiler_class()
2485 if (!compiler_body(c, s->v.ClassDef.body)) { in compiler_class()
2542 ADDOP_LOAD_CONST(c, s->v.ClassDef.name); in compiler_class()
2545 if (!compiler_call_helper(c, 2, s->v.ClassDef.bases, s->v.ClassDef.keywords)) in compiler_class()
2554 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class()
DPython-ast.c2027 p->v.ClassDef.name = name; in _PyAST_ClassDef()
2028 p->v.ClassDef.bases = bases; in _PyAST_ClassDef()
2029 p->v.ClassDef.keywords = keywords; in _PyAST_ClassDef()
2030 p->v.ClassDef.body = body; in _PyAST_ClassDef()
2031 p->v.ClassDef.decorator_list = decorator_list; in _PyAST_ClassDef()
3729 value = ast2obj_identifier(state, o->v.ClassDef.name); in ast2obj_stmt()
3734 value = ast2obj_list(state, (asdl_seq*)o->v.ClassDef.bases, in ast2obj_stmt()
3740 value = ast2obj_list(state, (asdl_seq*)o->v.ClassDef.keywords, in ast2obj_stmt()
3746 value = ast2obj_list(state, (asdl_seq*)o->v.ClassDef.body, in ast2obj_stmt()
3752 value = ast2obj_list(state, (asdl_seq*)o->v.ClassDef.decorator_list, in ast2obj_stmt()
/third_party/python/Parser/
DPython.asdl18 | ClassDef(identifier name,
Dpegen.c2269 class_def->v.ClassDef.name, class_def->v.ClassDef.bases, in _PyPegen_class_def_decorators()
2270 class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators, in _PyPegen_class_def_decorators()
/third_party/python/Misc/NEWS.d/
D3.7.0b5.rst69 Module, ClassDef, FunctionDef, and AsyncFunctionDef ast nodes which was
D3.7.0a1.rst787 Add ``docstring`` field to Module, ClassDef, FunctionDef, and
D3.8.0a1.rst1540 Module, ClassDef, FunctionDef, and AsyncFunctionDef ast nodes which was
/third_party/python/Lib/
Dast.py282 if not isinstance(node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)):
778 node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)
/third_party/python/Include/internal/
Dpycore_ast.h212 } ClassDef; member
/third_party/python/Doc/library/
Dast.rst1790 .. class:: ClassDef(name, bases, keywords, starargs, kwargs, body, decorator_list)
1816 ClassDef(
1994 :class:`FunctionDef`, :class:`AsyncFunctionDef`, :class:`ClassDef`,
/third_party/python/Lib/test/
Dtest_ast.py1187 return ast.ClassDef("myclass", bases, keywords,
/third_party/libabigail/tests/data/test-annotate/
Dtest17-pr19027.so.abi6642 …_context_t::try_set<OT::OffsetTo<OT::ClassDef, OT::IntType<short unsigned int, 2u> >, int>(OT::Off…
6643 …<function-decl name='try_set&lt;OT::OffsetTo&lt;OT::ClassDef, OT::IntType&lt;short unsigned int, 2…
6646 … <!-- parameter of type 'OT::OffsetTo<OT::ClassDef, OT::IntType<short unsigned int, 2u> >*' -->
7267 …xt_t::check_struct<OT::OffsetTo<OT::ClassDef, OT::IntType<short unsigned int, 2u> > >(const OT::Of…
7268 …<function-decl name='check_struct&lt;OT::OffsetTo&lt;OT::ClassDef, OT::IntType&lt;short unsigned i…
7271 …<!-- parameter of type 'const OT::OffsetTo<OT::ClassDef, OT::IntType<short unsigned int, 2u> >*' -…
14285 <!-- OT::ClassDef& -->
14287 <!-- OT::ClassDef* -->
14471 <!-- OT::OffsetTo<OT::ClassDef, OT::IntType<short unsigned int, 2u> >* -->
14947 <!-- const OT::ClassDef -->
[all …]
/third_party/skia/third_party/externals/harfbuzz/perf/texts/
Den-words.txt1868 ClassDef
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest17-pr19027.so.abi4227 …<function-decl name='try_set&lt;OT::OffsetTo&lt;OT::ClassDef, OT::IntType&lt;short unsigned int, 2…
4616 …<function-decl name='check_struct&lt;OT::OffsetTo&lt;OT::ClassDef, OT::IntType&lt;short unsigned i…
11837 …<class-decl name='ClassDef' size-in-bits='80' is-struct='yes' visibility='default' filepath='/tmp/…
14759 …<class-decl name='OffsetTo&lt;OT::ClassDef, OT::IntType&lt;short unsigned int, 2u&gt; &gt;' size-i…
/third_party/chromium/patch/
D0001-cve.patch37178 const ClassDef &class_def = this+classDef;
37320 const ClassDef &backtrack_class_def = this+backtrackClassDef;
37321 const ClassDef &input_class_def = this+inputClassDef;