Home
last modified time | relevance | path

Searched refs:is_cfunction (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DSymtab.py137 is_cfunction = 0 variable in Entry
629 if entry and not entry.type.is_cfunction:
735 entry.is_cfunction = 1
1442 if entry.is_cfunction:
1649 if type.is_cfunction:
1699 entry.is_cfunction = 1
1947 if not entry.is_cfunction:
2096 if type.is_cfunction and self.type:
2189 elif entry.type.is_cfunction:
DPyrexTypes.py210 is_cfunction = 0 variable in PyrexType
2239 if self.base_type.is_cfunction:
2242 if other_type.is_cfunction:
2330 is_cfunction = 1 variable in CFuncType
2391 if not other_type.is_cfunction:
2423 if not other_type.is_cfunction:
2457 if not other_type.is_cfunction:
3530 if not func_type.is_cfunction:
DExprNodes.py470 return self.is_literal or self.is_temp or self.type.is_array or self.type.is_cfunction
702 if (src_type.is_cfunction and not dst_type.is_fused and
703 dst_type.is_ptr and dst_type.base_type.is_cfunction):
1578 elif self.entry.type.is_cfunction:
1612 if entry and entry.is_cfunction:
1695 if (not self.is_lvalue() and self.entry.is_cfunction and
1772 or entry.is_builtin or entry.is_cfunction
1818 if entry is not None and not (entry.is_const or entry.is_cfunction or entry.is_builtin):
1825 if not (entry.is_cglobal or entry.is_cfunction or entry.is_builtin):
2272 or not begin.type.is_cfunction
[all …]
DNodes.py530 if base_type.is_cpp_class or base_type.is_cfunction:
563 if base_type.is_cfunction:
667 and not (exc_val_type.is_cfunction
685 if return_type.is_cfunction:
1250 if type.is_cfunction:
1560 if type.is_cfunction:
2128 if not type.is_cfunction:
2765 if (entry.type.is_cfunction and not entry.is_builtin_cmethod
DParseTreeTransforms.py2104 if not pxd_def.is_cfunction:
2846 v.type.is_cfunction and not
2902 node.type.is_cfunction and
DModuleNode.py827 if attr.type.is_cfunction and attr.name != "<init>":
DOptimize.py3672 if node.function.type.is_cfunction and isinstance(node.function, ExprNodes.NameNode):