Home
last modified time | relevance | path

Searched refs:builtin_scope (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DBuiltin.py64 field_type = builtin_scope.lookup(self.field_type_name).type
344 builtin_scope = BuiltinScope() variable
348 bf.declare_in_scope(builtin_scope)
362 the_type = builtin_scope.declare_builtin_type(name, cname, utility, objstruct_cname)
373 builtin_scope.declare_struct_or_union(
381 builtin_scope.declare_var(
387 type_type = builtin_scope.lookup('type').type
388 list_type = builtin_scope.lookup('list').type
389 tuple_type = builtin_scope.lookup('tuple').type
390 dict_type = builtin_scope.lookup('dict').type
[all …]
DSymtab.py403 def builtin_scope(self): member in Scope
405 return self.outer_scope.builtin_scope()
933 def builtin_scope(self): member in BuiltinScope
999 outer_scope = Builtin.builtin_scope
DMain.py62 self.modules = {"__builtin__" : Builtin.builtin_scope}
DVisitor.py574 function.entry is self.current_env().builtin_scope().lookup_here(function.name))
DParseTreeTransforms.py2529 … entry=self.current_env().builtin_scope().lookup_here(attribute))
DOptimize.py1258 if entry is not env.builtin_scope().lookup_here(function.name):