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

  /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
TestBuffer.py 75 self.assert_(buf.dtype_node.signed == 0 and buf.dtype_node.longness == -1)
81 self.assert_(buf.dtype_node.signed == 0 and buf.dtype_node.longness == -1)
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Parsing.py 663 longness = ""
666 longness += "L"
676 elif longness:
677 if longness == 'LL' or s.context.language_level >= 3:
687 longness = longness)
711 return ExprNodes.IntNode(pos, value=rep, longness="L")
    [all...]
PyrexTypes.py     [all...]
Code.py     [all...]
Optimize.py     [all...]
ExprNodes.py 1029 longness = "" variable in class:IntNode
    [all...]
Nodes.py     [all...]
  /external/chromium_org/third_party/cython/src/Cython/
CodeWriter.py 132 if node.longness < 0:
133 self.put("short " * -node.longness)
134 elif node.longness > 0:
135 self.put("long " * node.longness)

Completed in 531 milliseconds