Searched defs:SimpleCallNode (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py2250 c_call = ExprNodes.SimpleCallNode(self.pos, function=cfunc, args=[ExprNodes.NameNode(self.pos, name=n) for n in arg_names[1-is_module_scope:]], wrapper_call=skip_dispatch)
3918 call_node = ExprNodes.SimpleCallNode(
4113 from ExprNodes import SimpleCallNode namespace
4115 class_result = SimpleCallNode(
5181 if (isinstance(exc, ExprNodes.SimpleCallNode) and
H A DExprNodes.py3675 # SimpleCallNode is_simple is not consistent with coerce_to_simple
4328 class SimpleCallNode(CallNode): class in inherits:CallNode
4712 #print "SimpleCallNode.generate_result_code: casting", rhs, \
4862 class PythonCapiCallNode(SimpleCallNode):
4880 SimpleCallNode.__init__(self, pos, **kwargs)
4957 or a SimpleCallNode if the mapping succeeds.
5085 # if we are missing arguments, SimpleCallNode will figure it out
5086 node = SimpleCallNode(self.pos, function=function, args=args)

Completed in 658 milliseconds