| /external/chromium_org/third_party/cython/src/Cython/Tests/ |
| TestCodeWriter.py | 1 from Cython.TestUtils import CythonTest 5 # roundtripping Cython code through the test framework. 7 # Note that this test is dependant upon the normal Cython parser
|
| TestStringIOTree.py | 3 from Cython import StringIOTree as stringtree
|
| /external/chromium_org/third_party/cython/src/Cython/Plex/ |
| Scanners.pxd | 1 import cython namespace 3 from Cython.Plex.Actions cimport Action 29 @cython.locals(input_state=long) 31 @cython.locals(action=Action) 36 @cython.locals(cur_pos=long, cur_line=long, cur_line_start=long,
|
| /external/chromium_org/third_party/cython/src/Tools/ |
| cystdlib.py | 2 Highly experimental script that compiles the CPython standard library using Cython. 18 from Cython.Build import cythonize 19 from Cython.Compiler import Options
|
| /external/chromium_org/third_party/cython/src/Cython/Compiler/ |
| AutoDocTransforms.py | 1 from Cython.Compiler.Visitor import CythonTransform 2 from Cython.Compiler.StringEncoding import EncodedString 3 from Cython.Compiler import Options 4 from Cython.Compiler import PyrexTypes, ExprNodes
|
| Buffer.py | 1 from Cython.Compiler.Visitor import CythonTransform 2 from Cython.Compiler.ModuleNode import ModuleNode 3 from Cython.Compiler.Errors import CompileError 4 from Cython.Compiler.UtilityCode import CythonUtilityCode 5 from Cython.Compiler.Code import UtilityCode, TempitaUtilityCode 7 from Cython.Compiler import Options 8 from Cython.Compiler import Interpreter 9 from Cython.Compiler import PyrexTypes 10 from Cython.Compiler import Naming 11 from Cython.Compiler import Symta [all...] |
| ParseTreeTransforms.pxd | 2 cimport cython namespace 4 from Cython.Compiler.Visitor cimport ( 28 @cython.locals(starred_targets=Py_ssize_t, lhs_size=Py_ssize_t, rhs_size=Py_ssize_t)
|
| Scanning.pxd | 1 import cython namespace 3 from Cython.Plex.Scanners cimport Scanner 40 @cython.locals(current_level=cython.long, new_level=cython.long)
|
| Pipeline.py | 224 from Cython.TestUtils import TreeAssertVisitor 228 from Cython.Debugger import DebugWriter # requires Py2.5+ 315 from Cython.Compiler.Visitor import PrintTree
|
| CmdLine.py | 2 # Cython - Command Line Parsing 10 Cython (http://cython.org) is a compiler for code written in the 11 Cython language. Cython is based on Pyrex by Greg Ewing. 13 Usage: cython [options] sourcefile.{pyx,py} ... 16 -V, --version Display version number of cython compiler 24 -p, --embed-positions If specified, the positions in Cython files of each 28 -w, --working <directory> Sets the working directory for Cython (the directory modules 61 from Cython.Compiler.Main import [all...] |
| Lexicon.py | 0 # cython: language_level=3, py2_import=True 3 # Cython Scanner - Lexical Definitions 14 from Cython.Plex import \
|
| FlowControl.pxd | 1 cimport cython namespace 3 from Cython.Compiler.Visitor cimport CythonTransform, TreeVisitor 48 @cython.final 71 @cython.locals(block=ControlBlock, parent=ControlBlock, unreachable=set) 74 @cython.locals(bit=object, assmts=AssignmentList, 78 @cython.locals(assmts=AssignmentList, assmt=NameAssignment) 81 @cython.locals(block=ControlBlock, parent=ControlBlock) 90 @cython.locals(dirty=bint, block=ControlBlock, parent=ControlBlock, 94 @cython.final
|
| Visitor.py | 0 # cython: infer_types=True 8 from Cython.Compiler import TypeSlots 9 from Cython.Compiler import Builtin 10 from Cython.Compiler import Nodes 11 from Cython.Compiler import ExprNodes 12 from Cython.Compiler import Errors 13 from Cython.Compiler import DebugFlags 15 import cython namespace 20 Base class for writing visitors for a Cython tree, contains utilities for 141 @cython.fina [all...] |
| FusedNode.py | 3 from Cython.Compiler import (ExprNodes, PyrexTypes, MemoryView, 6 from Cython.Compiler.ExprNodes import CloneNode, ProxyNode, TupleNode 7 from Cython.Compiler.Nodes import (FuncDefNode, CFuncDefNode, StatListNode, 246 Genereate Cython code for instance checks, matching an object to 381 Generate Cython code to match objects to buffer specializations. 387 from Cython.Compiler import ExprNodes 523 from Cython.Compiler import TreeFragment, Code, MemoryView, UtilityCode
|
| Scanning.py | 0 # cython: infer_types=True, language_level=3, py2_import=True 3 # Cython Scanner 9 import cython namespace 10 cython.declare(EncodedString=object, any_string_prefix=unicode, IDENT=unicode, 13 from Cython import Utils 14 from Cython.Plex.Scanners import Scanner 15 from Cython.Plex.Errors import UnrecognizedInput
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
| setup.py | 29 from Cython.Distutils import build_ext
|
| /external/chromium_org/third_party/cython/src/Cython/Build/ |
| Cythonize.py | 8 from Cython.Build.Dependencies import cythonize, extended_iglob 9 from Cython.Utils import is_package_dir 10 from Cython.Compiler import Options
|
| BuildExecutable.py | 84 from Cython.Compiler import Version, CmdLine, Main 86 _debug('Using Cython %s to compile %s', Version.version, input_file) 96 Build an executable program from a Cython module. 115 Build an executable program from a Cython module and runs it.
|
| /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
| array.pxd | 4 Cython interface to Python's array.array module. 8 * suitable as allround light weight auto-array within Cython code too 14 Usage through Cython buffer interface (Py2.3+): 39 Suitable as lightweight arrays intra Cython without speed penalty. 92 # This implementation of getbuffer is geared towards Cython
|
| /external/chromium_org/third_party/cython/src/Cython/Debugger/ |
| DebugWriter.py | 30 from Cython.Compiler import Errors 47 # set by Cython.Compiler.ParseTreeTransforms.DebugTransform
|
| /external/chromium_org/third_party/cython/src/ |
| runtests.py | 82 # TODO: Figure out why this hackery (see http://thread.gmane.org/gmane.comp.python.cython.devel/8280/). 288 os.path.join('Cython', 'Debugger', 'Tests', 'test_libcython_in_gdb.py'), 289 os.path.join('Cython', 'Debugger', 'Tests', 'test_libpython_in_gdb.py'), 290 os.path.join('Cython', 'Debugger', 'libcython.py'), 291 os.path.join('Cython', 'Debugger', 'libpython.py'), 340 if tag not in ('mode', 'tag', 'ticket', 'cython', 'distutils'): 589 from Cython.Compiler import Options 606 from Cython.Compiler import Options 723 from Cython.Compiler.Main import CompilationOptions 724 from Cython.Compiler.Main import compile as cython_compil [all...] |
| /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/ |
| TestUtilityLoad.py | 3 from Cython.Compiler import Code, UtilityCode
|
| /external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/ |
| test_libcython_in_gdb.py | 5 Cython.Debugger.Cygdb.make_command_file() 24 from Cython.Debugger import libcython 25 from Cython.Debugger import libpython 26 from Cython.Debugger.Tests import TestLibCython as test_libcython 199 Cython/Debugger/Tests/codefile. 417 # Allow the Cython-generated code to initialize the scope variable 476 from Cython.Debugger.Tests import test_libpython_in_gdb
|
| /external/chromium_org/third_party/cython/src/Cython/Tempita/ |
| _looper.py | 22 from Cython.Tempita.compat3 import basestring_
|
| /external/chromium_org/third_party/cython/src/Cython/Distutils/ |
| build_ext.py | 0 """Cython.Distutils.build_ext 4 building Cython extension modules.""" 61 description = "build C/C++ and Cython extensions (compile/link to build directory)" 70 ('cython-cplus', None, 72 ('cython-create-listing', None, 74 ('cython-line-directives', None, 76 ('cython-include-dirs=', None, 77 "path to the Cython include files" + sep_by), 78 ('cython-c-in-temp', None, 80 ('cython-gen-pxi', None [all...] |