Home
last modified time | relevance | path

Searched refs:objstruct_cname (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DBuiltin.py357 objstruct_cname = 'PySetObject'
359 objstruct_cname = None
361 objstruct_cname = 'Py%sObject' % name.capitalize()
362 the_type = builtin_scope.declare_builtin_type(name, cname, utility, objstruct_cname)
DSymtab.py906 def declare_builtin_type(self, name, cname, utility_code = None, objstruct_cname = None): argument
908 type = PyrexTypes.BuiltinObjectType(name, cname, objstruct_cname)
1237 module_name = None, base_type = None, objstruct_cname = None, argument
1246 objtypedef_cname = objstruct_cname
1287 if objstruct_cname:
1288 type.objstruct_cname = objstruct_cname
1290 type.objstruct_cname = self.mangle(Naming.objstruct_prefix, name)
1325 if objstruct_cname:
1326 if type.objstruct_cname and type.objstruct_cname != objstruct_cname:
1328 type.objstruct_cname = objstruct_cname
DModuleNode.py470 key = type.objstruct_cname
480 def objstruct_cname(entry_type): function
481 return entry_type.objstruct_cname
483 vtabslot_dict, vtabslot_dict_order, objstruct_cname)
735 name = type.objstruct_cname
947 code.putln(self.sue_predeclaration(type, "struct", type.objstruct_cname))
956 self.sue_header_footer(type, "struct", type.objstruct_cname)
960 basestruct_cname = base_type.objstruct_cname
988 code.putln("typedef struct %s %s;" % (type.objstruct_cname, type.objtypedef_cname))
1885 objstruct = type.objstruct_cname
[all …]
DPyrexTypes.py948 def __init__(self, name, cname, objstruct_cname=None): argument
952 self.objstruct_cname = objstruct_cname
1047 … to_object_struct and self.objstruct_cname or "PyObject", # self.objstruct_cname may be None
1088 self.objstruct_cname = None
1144 objstruct = self.objstruct_cname
1146 objstruct = "struct %s" % self.objstruct_cname
DNodes.py4240 objstruct_cname = self.objstruct_name,
4290 base_class_entry.type.objstruct_cname):
4336 objstruct_cname = self.objstruct_name,
8153 e.type.objstruct_cname = self.cname + '_obj'