HomeSort by relevance Sort by last modified time
    Searched refs:Cython (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/cython/src/Cython/
__init__.py 1 from Cython.Shadow import __version__
3 # Void cython.* directives (for case insensitive operating systems).
4 from Cython.Shadow import *
TestUtils.py 1 import Cython.Compiler.Errors as Errors
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/Distutils/
__init__.py 1 from Cython.Distutils.build_ext import build_ext
2 from Cython.Distutils.extension import Extension
  /external/chromium_org/third_party/cython/src/bin/
cython 4 # Cython -- Main Program, Unix
7 from Cython.Compiler.Main import main
cythonize 7 from Cython.Build.Cythonize import main
cygdb 5 from Cython.Debugger import Cygdb as cygdb
cythonrun 12 from Cython.Build.BuildExecutable import build, build_and_run
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Version.py 3 from Cython import __version__ as version
CodeGeneration.py 1 from Cython.Compiler.Visitor import VisitorTransform
2 from Cython.Compiler.Nodes import StatListNode
  /external/chromium_org/third_party/cython/src/
cython.py 4 # Cython -- Main Program, generic
12 # Make sure we import the right Cython
16 from Cython.Compiler.Main import main
20 # Void cython.* directives.
21 from Cython.Shadow import *
23 from Cython import __version__
cygdb.py 5 from Cython.Debugger import Cygdb as cygdb
Makefile 2 REPO = git://github.com/cython/cython.git
29 @rm -f Cython/Compiler/*.c
30 @rm -f Cython/Plex/*.c
31 @rm -f Cython/Runtime/refnanny.c
setup.py 49 directory for directory, dirs, files in os.walk('Cython/Includes')
51 or directory == 'Cython/Includes' or directory == 'Cython/Includes/Deprecated']
58 'Cython.Plex' : ['*.pxd'],
59 'Cython.Compiler' : ['*.pxd'],
60 'Cython.Runtime' : ['*.pyx', '*.pxd'],
61 'Cython.Utility' : ['*.pyx', '*.pxd', '*.c', '*.h', '*.cpp'],
62 'Cython' : [ p[7:] for p in pxd_include_patterns ],
69 # tells whether to include cygdb (the script and the Cython.Debugger package
76 'cython = Cython.Compiler.Main:setuptools_main'
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
TestVisitor.py 1 from Cython.Compiler.ModuleNode import ModuleNode
2 from Cython.Compiler.Symtab import ModuleScope
3 from Cython.TestUtils import TransformTest
4 from Cython.Compiler.Visitor import MethodDispatcherTransform
5 from Cython.Compiler.ParseTreeTransforms import (
TestMemView.py 1 from Cython.TestUtils import CythonTest
2 import Cython.Compiler.Errors as Errors
3 from Cython.Compiler.Nodes import *
4 from Cython.Compiler.ParseTreeTransforms import *
5 from Cython.Compiler.Buffer import *
TestBuffer.py 1 from Cython.TestUtils import CythonTest
2 import Cython.Compiler.Errors as Errors
3 from Cython.Compiler.Nodes import *
4 from Cython.Compiler.ParseTreeTransforms import *
5 from Cython.Compiler.Buffer import *
TestTreeFragment.py 1 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
TestParseTreeTransforms.py 3 from Cython.Compiler import CmdLine
4 from Cython.TestUtils import TransformTest
5 from Cython.Compiler.ParseTreeTransforms import *
6 from Cython.Compiler.Nodes import *
7 from Cython.Compiler import Main, Symtab
156 cimport cython.parallel
157 cimport cython.parallel as par
158 from cython cimport parallel as par2
159 from cython cimport parallel
161 from cython.parallel cimport threadid as ti
    [all...]
TestTreePath.py 2 from Cython.Compiler.Visitor import PrintTree
3 from Cython.TestUtils import TransformTest
4 from Cython.Compiler.TreePath import find_first, find_all
5 from Cython.Compiler import Nodes, ExprNodes
TestSignatureMatching.py 3 from Cython.Compiler import PyrexTypes as pt
4 from Cython.Compiler.ExprNodes import NameNode
5 from Cython.Compiler.PyrexTypes import CFuncTypeArg
  /external/chromium_org/third_party/cython/src/Cython/Build/Tests/
TestInline.py 2 from Cython.Shadow import inline
3 from Cython.Build.Inline import safe_type
4 from Cython.TestUtils import CythonTest
31 cimport cython
32 return cython.typeof(a), cython.typeof(b)
44 import cython as cy
TestStripLiterals.py 1 from Cython.Build.Dependencies import strip_string_literals
3 from Cython.TestUtils import CythonTest
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 12 import Cython
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
20 import cython as cython_module
45 from Cython.Compiler.ParseTreeTransforms import AnalyseDeclarationsTransform
146 cimports.append('\ncimport cython as %s' % name
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
test_libpython_in_gdb.py 14 from Cython.Debugger import libcython
15 from Cython.Debugger import libpython
TestLibCython.py 16 import Cython.Distutils.extension
17 import Cython.Distutils.build_ext
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__))))

Completed in 1445 milliseconds

1 2 3