Home
last modified time | relevance | path

Searched defs:ClassDef (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/parsers/
Dclass_def_parser.py129 def _need_add_init_func(cls_ast: ast.ClassDef) -> bool:
137 def _add_init_func(cls_ast: ast.ClassDef):
144 def _add_ori_cls_into_father_class(stree: SymbolTree, node: ast.ClassDef, class_type: type):
158 def _process_father_classes(stree: SymbolTree, node: ast.ClassDef, class_type: type) -> list:
229 def process(self, stree: SymbolTree, node: ast.ClassDef, node_manager: NodeManager):
Dmodule_parser.py52 def _add_decorator_to_class(class_ast: ast.ClassDef, origin_net):
74 def visit_ClassDef(self, node: ast.ClassDef) -> Any:
/third_party/skia/m133/third_party/externals/harfbuzz/src/graph/
Dclassdef-graph.hh59 struct ClassDef : public OT::ClassDef struct
62 static bool add_class_def (gsubgpos_graph_context_t& c, in add_class_def()
83 static bool make_class_def (gsubgpos_graph_context_t& c, in make_class_def()
115 bool sanitize (graph_t::vertex_t& vertex) const in sanitize()
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/ast_helpers/
Dast_replacer.py35 def visit_ClassDef(self, node: ast.ClassDef) -> Any:
Dast_modifier.py79 def erase_func_from_class_by_name(ast_class: ast.ClassDef, func_name: str):
130 …def insert_class_into_module(ast_mod: ast.Module, ast_class: ast.ClassDef, index_ast: Optional[ast…
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-common.hh2367 struct ClassDef struct
2370 static constexpr unsigned SENTINEL = 0;
2371 typedef unsigned int value_t;
2372 value_t operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
2373 bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; } in has()
2375 hb_codepoint_t operator () (hb_codepoint_t k) const { return get (k); } in operator ()()
2377 unsigned int get (hb_codepoint_t k) const { return get_class (k); } in get()
2378 unsigned int get_class (hb_codepoint_t glyph_id) const in get_class()
2389 bool serialize (hb_serialize_context_t *c, Iterator it_with_class_zero) in serialize()
2435 bool subset (hb_subset_context_t *c, in subset()
[all …]
/third_party/skia/m133/third_party/externals/harfbuzz/src/
Dhb-ot-layout-common.hh2058 struct ClassDef struct
2061 unsigned operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
2062 bool has (hb_codepoint_t k) const { return (*this)[k]; } in has()
2064 hb_codepoint_t operator () (hb_codepoint_t k) const { return get (k); } in operator ()()
2066 unsigned int get (hb_codepoint_t k) const { return get_class (k); } in get()
2067 unsigned int get_class (hb_codepoint_t glyph_id) const in get_class()
2080 unsigned get_population () const in get_population()
2095 bool serialize (hb_serialize_context_t *c, Iterator it_with_class_zero) in serialize()
2159 bool subset (hb_subset_context_t *c, in subset()
2177 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/symbol_tree/
Dsymbol_tree.py209 def visit_ClassDef(self, node: ast.ClassDef) -> Any:
544 def set_class_ast(self, ast_node: ast.ClassDef):
1804 def suffix_names_in_ast(ast_node: Union[ast.ClassDef, ast.FunctionDef]):
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvcommn.c856 FT_UInt Coverage, ClassDef, ClassSetCount; in otv_u_O_O_x_Onx() local
/third_party/python/Include/internal/
Dpycore_ast.h212 } ClassDef; member