Searched refs:cython (Results 1 – 25 of 51) sorted by relevance
123
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Visitor.pxd | 1 cimport cython 31 @cython.final 33 @cython.final 35 @cython.final 37 @cython.final 39 @cython.final
|
D | FlowControl.pxd | 1 cimport cython 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
|
D | Scanning.pxd | 1 import cython 40 @cython.locals(current_level=cython.long, new_level=cython.long)
|
D | Code.pxd | 2 cimport cython 46 @cython.locals(n=size_t) 73 @cython.locals(intern=bint, is_str=bint, is_unicode=bint)
|
D | ParseTreeTransforms.pxd | 2 cimport cython 28 @cython.locals(starred_targets=Py_ssize_t, lhs_size=Py_ssize_t, rhs_size=Py_ssize_t)
|
D | Visitor.py | 15 import cython 141 @cython.final 162 @cython.final 180 @cython.final 190 @cython.final 191 @cython.locals(idx=int)
|
/external/chromium_org/third_party/cython/src/Tools/site_scons/site_tools/ |
D | cython.py | 32 cython = env['BUILDERS']['Cython'] 34 cython = SCons.Builder.Builder( 39 env['BUILDERS']['Cython'] = cython 41 return cython
|
/external/chromium_org/third_party/cython/ |
D | cython_compiler.gypi | 7 'python_flags': '<(DEPTH)/third_party/cython/python_flags.py', 28 'cython_compiler': '<(DEPTH)/third_party/cython/src/cython.py', 34 '<(SHARED_INTERMEDIATE_DIR)/cython/<(python_base_module)/<(RULE_INPUT_ROOT).cc',
|
D | README.chromium | 1 Name: cython 2 URL: http://cython.org/ 7 Source File: http://cython.org/release/Cython-0.20.2.zip
|
D | rules.gni | 11 cython_root = "//third_party/cython" 12 cython_script = "$cython_root/src/cython.py" 45 python_flags = "//third_party/cython/python_flags.py"
|
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
D | CppConvert.pyx | 21 #cimport cython 82 cimport cython 102 o.append(X_to_py(cython.operator.dereference(iter))) 103 cython.operator.preincrement(iter) 125 cimport cython 145 o.add(X_to_py(cython.operator.dereference(iter))) 146 cython.operator.preincrement(iter) 207 cimport cython 229 key_value = &cython.operator.dereference(iter) 231 cython.operator.preincrement(iter)
|
D | TestCythonScope.pyx | 57 return "hello from cython scope, value=%d" % value 63 return "hello from cython.view scope, value=%d" % value
|
/external/chromium_org/third_party/cython/src/bin/ |
D | cython.bat | 1 @REM Start cython from windows commandline as "cython", not "cython.py".
|
/external/chromium_org/third_party/cython/src/Cython/Plex/ |
D | Scanners.pxd | 1 import cython 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/ |
D | USAGE.txt | 39 cython filename.pyx 43 python cython.py filename.pyx 54 The cython command supports the following options: 58 -v --version Display version number of cython compiler
|
D | Makefile | 2 REPO = git://github.com/cython/cython.git
|
D | README.txt | 4 Cython (http://cython.org) is a language that makes writing C extensions for 38 https://github.com/cython/cython
|
D | PKG-INFO | 5 Home-page: http://www.cython.org 7 Author-email: cython-devel@python.org
|
D | CHANGES.rst | 38 ``cython.array`` objects was disabled in Py3. 130 * The new extension type decorator ``@cython.no_gc_clear`` prevents 142 * The cython-mode.el script for Emacs was updated. Patch by Ivan Andrus. 327 * A new class decorator ``@cython.freelist(N)`` creates a static freelist of N 539 * c(p)def functions in pure mode can specify their return type with "@cython.returns()". 579 * Modules generated by @cython.inline() are written into the directory pointed to by the environmen… 654 * Improved pure syntax including cython.cclass, cython.cfunc, and cython.ccall. 716 … inheritance in Python space. This feature is available through the new "cython.final" decorator. … 718 … up in the module dictionary. This feature is available through the new "cython.internal" decorato… 722 * GDB support. http://docs.cython.org/src/userguide/debugging.html [all …]
|
D | MANIFEST.in | 8 include cython.py
|
/external/chromium_org/third_party/bintrees/ |
D | NEWS.txt | 30 * installs on systems without cython (tested with pypy) 47 * low level functions written as c-module only interface to python is a cython
|
/external/chromium_org/third_party/cython/src/Tools/ |
D | cython-mode.el | 67 (defgroup cython nil "Major mode for editing and compiling Cython files" unknown 76 :group 'cython
|
/external/chromium_org/mojo/python/ |
D | BUILD.gn | 5 import("//third_party/cython/rules.gni")
|
/external/chromium_org/third_party/cython/src/Cython/Build/Tests/ |
D | TestInline.py | 44 import cython as cy
|
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/ |
D | Makefile.inc | 30 EXTRA_DIST += m4/cython.m4
|
123