Searched defs:Cython (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
H A DTestTreeFragment.py1 from Cython.TestUtils import CythonTest
2 from Cython.Compiler.TreeFragment import *
3 from Cython.Compiler.Nodes import *
4 from Cython.Compiler.UtilNodes import *
5 import Cython.Compiler.Naming as Naming namespace
H A DTestBuffer.py1 from Cython.TestUtils import CythonTest
2 import Cython.Compiler.Errors as Errors namespace
3 from Cython.Compiler.Nodes import *
4 from Cython.Compiler.ParseTreeTransforms import *
5 from Cython.Compiler.Buffer import *
H A DTestMemView.py1 from Cython.TestUtils import CythonTest
2 import Cython.Compiler.Errors as Errors namespace
3 from Cython.Compiler.Nodes import *
4 from Cython.Compiler.ParseTreeTransforms import *
5 from Cython.Compiler.Buffer import *
/external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
H A DTestLibCython.py16 import Cython.Distutils.extension namespace
17 import Cython.Distutils.build_ext namespace
18 from Cython.Debugger import Cygdb as cygdb
30 # Cython.Distutils.__init__ imports build_ext from build_ext which means we
32 build_ext = sys.modules['Cython.Distutils.build_ext']
160 # ext = Cython.Distutils.extension.Extension(
169 # cmdclass=dict(build_ext=Cython.Distutils.build_ext)
214 from Cython.Debugger.Tests import test_libcython_in_gdb
237 os.path.abspath(Cython.__file__))))
/external/chromium_org/third_party/cython/src/Cython/Distutils/
H A Dbuild_ext.py0 """Cython.Distutils.build_ext
4 building Cython extension modules."""
61 description = "build C/C++ and Cython extensions (compile/link to build directory)"
77 "path to the Cython include files" + sep_by),
97 "path to the Cython include files" + sep_by),
175 Walk the list of source files in 'sources', looking for Cython
176 source files (.pyx and .py). Run Cython on all that are
177 found, and return a modified 'sources' list with Cython source
181 from Cython.Compiler.Main \
185 from Cython
188 print("failed to import Cython: %s" % e) namespace
[all...]
/external/chromium_org/third_party/cython/src/Cython/
H A DTestUtils.py1 import Cython.Compiler.Errors as Errors namespace
2 from Cython.CodeWriter import CodeWriter
3 from Cython.Compiler.TreeFragment import TreeFragment, strip_common_indent
4 from Cython.Compiler.Visitor import TreeVisitor, VisitorTransform
5 from Cython.Compiler import TreePath
121 test trees (either explicitly or by parsing a Cython code string); running
122 the transform, serialize it using a customized Cython serializer (with
123 special markup for nodes that cannot be represented in Cython),
/external/chromium_org/third_party/cython/src/Cython/Build/
H A DInline.py12 import Cython namespace
13 from Cython.Compiler.Main import Context, CompilationOptions, default_options
15 from Cython.Compiler.ParseTreeTransforms import CythonTransform, SkipDeclarations, AnalyseDeclarationsTransform
16 from Cython.Compiler.TreeFragment import parse_from_strings
17 from Cython.Build.Dependencies import strip_string_literals, cythonize, cached_function
18 from Cython.Compiler import Pipeline
19 from Cython.Utils import get_cython_cache_dir
45 from Cython.Compiler.ParseTreeTransforms import AnalyseDeclarationsTransform
151 key = orig_code, arg_sigs, sys.version_info, sys.executable, Cython.__version__
/external/chromium_org/third_party/cython/src/pyximport/
H A Dpyximport.py33 Since Cython 0.11, the :mod:`pyximport` module also has experimental
35 automatically run Cython on every .pyx and .py module that Python
37 packages. Cython will still fail to compile a lot of Python modules,
323 self.blocked_modules = ['Cython', 'pyxbuild', 'pyximport.pyxbuild',
329 if fullname.startswith('Cython.'):
484 reload(<pyxmodulename>), e.g. after a change in the Cython code.
520 # make sure we import Cython before we install the import hook
521 import Cython.Compiler.Main, Cython.Compiler.Pipeline, Cython namespace
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParseTreeTransforms.py14 from Cython.Compiler.Visitor import VisitorTransform, TreeVisitor
15 from Cython.Compiler.Visitor import CythonTransform, EnvTransform, ScopeTrackingTransform
16 from Cython.Compiler.UtilNodes import LetNode, LetRefNode, ResultRefNode
17 from Cython.Compiler.TreeFragment import TreeFragment
18 from Cython.Compiler.StringEncoding import EncodedString
19 from Cython.Compiler.Errors import error, warning, CompileError, InternalError
20 from Cython.Compiler.Code import UtilityCode
1529 from Cython.Compiler import FusedNode
1916 function, or (usually) a Cython indexing operation, we need to
2523 import Cython namespace
[all...]
/external/chromium_org/third_party/cython/src/
H A Druntests.py288 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'),
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_compile
725 from Cython.Compiler.Main import default_options
779 from Cython
1655 import Cython.Compiler.Main namespace
1674 import Cython.Compiler.Version namespace
[all...]

Completed in 952 milliseconds