HomeSort by relevance Sort by last modified time
    Searched refs:pxd (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Main.py 31 # While Context contains every pxd ever loaded, path information etc.,
110 # the corresponding .pxd file and process it.
145 print("...pxd not loaded")
149 print("...looking for pxd file")
158 error(pos, "'%s.pxd' not found" % module_name)
177 # Search include path for the .pxd file corresponding to the
184 pxd = self.search_include_directories(qualified_name, ".pxd", pos, sys_path=True)
185 if pxd is None: # XXX Keep this until Includes/Deprecated is removed
193 pxd = self.search_include_directories(qualified_name, ".pxd", pos
    [all...]
Pipeline.py 34 tree = context.parse(source_desc, scope, pxd = 0, full_module_name = full_module_name)
43 tree = context.parse(source_desc, scope, pxd=True,
129 assert mode in ('pyx', 'py', 'pxd')
154 if mode == 'pxd':
167 # code in pxd files. So it will be run multiple times in a
249 # The pxd pipeline ends up with a CCodeWriter containing the
250 # code of the pxd, as well as a pxd scope.
253 ] + create_pipeline(context, 'pxd') + [
Parsing.pxd 10 cpdef p_module(PyrexScanner s, pxd, full_module_name, ctx=*)
ModuleNode.py 121 def h_entries(entries, api=0, pxd=0):
125 (pxd and entry.defined_in_pxd))]
195 def api_entries(entries, pxd=0):
197 if entry.api or (pxd and entry.defined_in_pxd)]
    [all...]
Parsing.py     [all...]
  /external/chromium_org/third_party/cython/src/Cython/Build/
Dependencies.py 476 pxd = self.context.find_pxd_file(relative, None)
477 if pxd:
478 return pxd
485 if filename[-4:] == '.pyx' and path_exists(filename[:-4] + '.pxd'):
486 pxd_list = [filename[:-4] + '.pxd']
859 # TODO: Share context? Issue: pyx processing leaks into pxd module
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
array.pxd 2 array.pxd
  /external/chromium_org/third_party/cython/src/Cython/Includes/numpy/
__init__.pxd 191 # Note: This syntax (function definition in pxd files) is an
276 raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
799 raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
844 raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
    [all...]

Completed in 1850 milliseconds