Searched defs:TypeSlots (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DVisitor.py8 from Cython.Compiler import TypeSlots namespace
619 if (attr_name in TypeSlots.method_name_to_slot
H A DModuleNode.py6 cython.declare(Naming=object, Options=object, PyrexTypes=object, TypeSlots=object,
20 import TypeSlots namespace
1115 tp_slot = TypeSlots.ConstructorSlot("tp_new", '__new__')
1163 tp_new = TypeSlots.get_base_slot_function(scope, tp_slot)
1246 tp_slot = TypeSlots.ConstructorSlot("tp_dealloc", '__dealloc__')
1321 tp_dealloc = TypeSlots.get_base_slot_function(scope, tp_slot)
1377 tp_slot = TypeSlots.GCDependentSlot("tp_traverse")
1398 static_call = TypeSlots.get_base_slot_function(scope, tp_slot)
1445 tp_slot = TypeSlots.GCDependentSlot("tp_clear")
1470 static_call = TypeSlots
[all...]
H A DOptimize.py1 from Cython.Compiler import TypeSlots namespace
2365 tp_slot = TypeSlots.ConstructorSlot("tp_new", '__new__')
2366 slot_func_cname = TypeSlots.get_slot_function(ext_type.scope, tp_slot)
H A DNodes.py20 import TypeSlots namespace
1710 tp_slot = TypeSlots.ConstructorSlot("tp_new", '__new__')
1711 slot_func_cname = TypeSlots.get_slot_function(lenv.scope_class.type.scope, tp_slot)
2065 slot = TypeSlots.method_name_to_slot.get(name)
2672 if self.entry.signature is TypeSlots.pyfunction_signature:
2674 self.entry.signature = TypeSlots.pyfunction_noargs
2677 self.entry.signature = TypeSlots.pyfunction_onearg
2678 elif self.entry.signature is TypeSlots.pymethod_signature:
2680 self.entry.signature = TypeSlots.unaryfunc
2683 self.entry.signature = TypeSlots
[all...]
H A DExprNodes.py30 import TypeSlots namespace
7801 self.def_node.entry.signature = TypeSlots.pyfunction_noargs

Completed in 158 milliseconds