| /external/chromium_org/third_party/cython/src/pyximport/ |
| pyximport.py | 33 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.Compiler.Optimiz [all...] |
| pyxbuild.py | 14 from Cython.Distutils import build_ext
|
| /external/chromium_org/third_party/cython/src/Cython/Build/ |
| Dependencies.py | 1 import cython namespace 2 from Cython import __version__ 49 from Cython import Utils 50 from Cython.Utils import cached_function, cached_method, path_exists, find_root_package_dir 51 from Cython.Compiler.Main import Context, CompilationOptions, default_options 150 @cython.locals(start=long, end=long) 241 @cython.locals(start=long, q=long, single_q=long, double_q=long, hash_mark=long, 490 if module[:7] == 'cython.' or module == 'cython': 612 # ignore non-cython module [all...] |
| /external/chromium_org/third_party/cython/src/Cython/ |
| Shadow.py | 0 # cython.* namespace for pure mode. 5 # BEGIN shameless copy from Cython/minivect/minitypes.py 35 Cython memoryviews. 104 from Cython.Build.Inline import cython_inline 111 from Cython.Build.Inline import RuntimeCompiledFunction 338 "Perhaps this should be implemented in a TreeFragment in Cython code" 397 The cython.parallel module. 418 sys.modules['cython.parallel'] = CythonDotParallel()
|
| Utils.py | 2 # Cython -- Things that don't belong 60 "#error Do not use this file, it is the result of a failed Cython compilation.\n") 82 from Cython.Compiler.Scanning import FileSourceDescriptor 390 """get the cython cache dir 395 2. (OS X): ~/Library/Caches/Cython 396 (posix not OS X): XDG_CACHE_HOME/cython if XDG_CACHE_HOME defined 397 3. ~/.cython 412 return os.path.join(parent, 'cython') 414 # last fallback: ~/.cython 415 return os.path.expanduser(os.path.join('~', '.cython')) [all...] |
| CodeWriter.py | 2 Serializes a Cython code tree to Cython code. This is primarily useful for 9 from Cython.Compiler.Visitor import TreeVisitor 10 from Cython.Compiler.ExprNodes import *
|
| /external/chromium_org/third_party/cython/src/Cython/Compiler/ |
| Annotate.py | 11 from Cython import Utils 89 f.write(u'<!-- Generated by Cython %s -->\n' % Version.watermark) 130 f.write(u'<p>Generated by Cython %s\n' % Version.watermark) 189 # this matches what Cython generates as code line marker comment
|
| Errors.py | 6 from Cython.Utils import open_new_file 43 message = u'\nError compiling Cython file:\n%s\n%s%s' % (cont, pos_str, message or u'')
|
| ParseTreeTransforms.py | 1 import cython namespace 2 cython.declare(PyrexTypes=object, Naming=object, ExprNodes=object, Nodes=object, 14 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 616 - #cython-comments at the top of the file (stored in ModuleNode [all...] |
| Parsing.pxd | 3 cimport cython namespace 4 from Cython.Compiler.Scanning cimport PyrexScanner 59 @cython.locals(value=unicode) 66 @cython.locals(systr=unicode, is_python3_source=bint, is_raw=bint)
|
| Code.py | 0 # cython: language_level = 2 6 import cython namespace 7 cython.declare(os=object, re=object, operator=object, 27 from Cython import Utils 29 from Cython.StringIOTree import StringIOTree 70 # http://trac.cython.org/cython_trac/ticket/475 96 -cython files backslashes should be used instead. 5 to 30 comment 210 Cython/Utility) and name util_code_name. If from_file is not given, 455 from Cython.Tempita import sub 746 cython.declare(possible_unicode_identifier=object, possible_bytes_identifier=object [all...] |
| TypeInference.py | 6 from Cython import Utils
|
| Main.py | 2 # Cython Top Level 7 sys.stderr.write("Sorry, Cython requires Python 2.4 or later\n") 20 from Cython import Utils 43 # one or more Cython implementation files along with their 64 self.modules["cython"] = self.cython_scope 423 if line.startswith(u'<!-- Generated by Cython'): 456 Options to the Cython compiler: 511 Results from the Cython compiler: 629 sys.stderr.write("Cython version %s\n" % Version.version)
|
| ModuleNode.py | 5 import cython namespace 6 cython.declare(Naming=object, Options=object, PyrexTypes=object, TypeSlots=object, 26 from Cython.Utils import open_new_file, replace_suffix, decode_filename 457 # for Cython generated utility code 458 from Cython.Compiler.UtilityCode import NonManglingModuleScope 547 code.putln("/* Generated by Cython %s */" % Version.watermark) 576 code.putln(" #error Cython requires Python 2.4+.") 580 from Cython import __version__ [all...] |
| Parsing.py | 0 # cython: auto_cpdef=True, infer_types=True, language_level=3, py2_import=True 7 import cython namespace 8 cython.declare(Nodes=object, ExprNodes=object, EncodedString=object, 18 from Cython.Compiler.Scanning import PyrexScanner, FileSourceDescriptor 26 from Cython import Utils 240 comparison_ops = cython.declare(set, set([ [all...] |
| Optimize.py | 1 from Cython.Compiler import TypeSlots 2 from Cython.Compiler.ExprNodes import not_a_constant 3 import cython namespace 4 cython.declare(UtilityCode=object, EncodedString=object, BytesLiteral=object, [all...] |
| ExprNodes.py | 5 import cython namespace 6 cython.declare(error=object, warning=object, warn_once=object, InternalError=object, 35 from Cython import Utils 37 from Cython.Compiler import Future 38 from Cython.Debugging import print_call_chain 767 # is enough, but Cython gets confused when the types are [all...] |
| Nodes.py | 5 import cython namespace 6 cython.declare(sys=object, os=object, copy=object, 11 absolute_path_length=cython.Py_ssize_t) 28 from Cython.Utils import cached_function 474 # name string The Cython name being declared [all...] |
| /external/chromium_org/third_party/cython/src/Cython/Includes/numpy/ |
| __init__.pxd | 1 # NumPy static imports for Cython 158 # ask on cython-dev if you need more. 195 # This implementation of getbuffer is geared towards Cython 721 # in Cython to enable them only on the right systems. 804 # One could encode it in the format string and have Cython 809 # A proper PEP 3118 exporter for other clients than Cython 847 # Cython ignores struct boundary information ("T{...}"), [all...] |
| /external/chromium_org/third_party/cython/src/Cython/Tempita/ |
| _tempita.py | 45 from Cython.Tempita._looper import looper 46 from Cython.Tempita.compat3 import bytes, basestring_, next, is_unicode, coerce_text [all...] |
| /external/chromium_org/third_party/cython/src/Cython/Debugger/ |
| libcython.py | 2 GDB extension that adds Cython support. 48 from Cython.Debugger import libpython 94 'Cython function we know about.') 225 Get the current Cython line number. Returns 0 if there is no 226 correspondence between the C and Cython code. 273 Cython code 280 # check for direct C function call from a Cython function 289 Print a C, Cython or Python stack frame and the line of source code 364 Get the Cython globals dict where the remote names are turned into 469 Base class for Cython-command related erorr [all...] |
| /external/chromium_org/third_party/bintrees/bintrees/ |
| cwalker.c | 1 /* Generated by Cython 0.17.4 on Sun Feb 24 19:48:34 2013 */ 8 #error Cython requires Python 2.4+. [all...] |
| qavltree.c | 1 /* Generated by Cython 0.17.4 on Sun Feb 24 19:48:34 2013 */ 8 #error Cython requires Python 2.4+. [all...] |
| qbintree.c | 1 /* Generated by Cython 0.17.4 on Sun Feb 24 19:48:34 2013 */ 8 #error Cython requires Python 2.4+. [all...] |
| qrbtree.c | 1 /* Generated by Cython 0.17.4 on Sun Feb 24 19:48:34 2013 */ 8 #error Cython requires Python 2.4+. [all...] |