Searched refs:PyrexScanner (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Parsing.pxd | 4 from Cython.Compiler.Scanning cimport PyrexScanner 6 ctypedef object (*p_sub_expr_func)(PyrexScanner obj) 10 cpdef p_module(PyrexScanner s, pxd, full_module_name, ctx=*) 11 cpdef p_code(PyrexScanner s, level= *, ctx=*) 15 cdef p_ident(PyrexScanner s, message =*) 16 cdef p_ident_list(PyrexScanner s) 18 cdef tuple p_binop_operator(PyrexScanner s) 19 cdef p_binop_expr(PyrexScanner s, ops, p_sub_expr_func p_sub_expr) 20 cdef p_lambdef(PyrexScanner s, bint allow_conditional=*) 21 cdef p_lambdef_nocond(PyrexScanner s) [all …]
|
D | TreeFragment.py | 7 from Scanning import PyrexScanner, StringSourceDescriptor 66 scanner = PyrexScanner(buf, code_source, source_encoding = encoding,
|
D | Scanning.pxd | 16 cdef class PyrexScanner(Scanner): class
|
D | Main.py | 17 from Scanning import PyrexScanner, FileSourceDescriptor 298 s = PyrexScanner(f, source_desc, source_encoding = f.encoding,
|
D | Scanning.py | 274 class PyrexScanner(Scanner): class
|
D | Parsing.py | 18 from Cython.Compiler.Scanning import PyrexScanner, FileSourceDescriptor 1650 … s2 = PyrexScanner(f, source_desc, s, source_encoding=f.encoding, parse_comments=s.parse_comments)
|