HomeSort by relevance Sort by last modified time
    Searched refs:constant_result (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Optimize.py 58 if node is not None and node.constant_result is None:
299 constant_result=bytes_value,
305 constant_result=len(bytes_value),
315 node.pos, value='0', constant_result=0, type=PyrexTypes.c_py_ssize_t_type)
399 if not isinstance(step.constant_result, (int,long)) \
400 or step.constant_result == 0 \
401 or step.constant_result > 0 and not stop \
402 or step.constant_result < 0 and not start:
408 step_value = step.constant_result
414 constant_result=abs(step_value)
    [all...]
ExprNodes.py 121 or not isinstance(node.constant_result, (int, float, long))):
123 if node.constant_result < 0:
144 item = seq_node.args[index_node.constant_result]
302 constant_result = constant_value_not_set variable in class:ExprNode
379 # expression and store it in ``self.constant_result``. Does
380 # nothing by default, thus leaving ``self.constant_result``
385 # sub-expressions have a valid constant_result value. The
390 return self.constant_result is not constant_value_not_set and \
391 self.constant_result is not not_a_constant
757 if src.constant_result is not None
915 constant_result = None variable in class:NoneNode
931 constant_result = Ellipsis variable in class:EllipsisNode
1003 constant_result = 0 variable in class:NullNode
10345 constant_result = constant_value_not_set # FIXME: where to calculate this? variable in class:CascadedCmpNode
10464 constant_result = not_a_constant variable in class:CoercionNode
    [all...]
ParseTreeTransforms.py 449 chars.append(stype(pos, value=cval, constant_result=cval))
    [all...]
Nodes.py     [all...]

Completed in 32 milliseconds