Home | History | Annotate | Download | only in Tests

Lines Matching refs:parse

10     def parse(self, s):
18 self.parse(u"cdef int[:] x")
19 self.parse(u"cdef short int[:] x")
22 self.parse(u"cdef int[:,:,:,:,:] x")
23 self.parse(u"cdef unsigned long int[:,:,:,:,:] x")
24 self.parse(u"cdef unsigned int[:,:,:,:,:] x")
27 self.parse(u"cdef long double[0:] x")
28 self.parse(u"cdef int[0:] x")
31 self.parse(u"cdef int[0:,0:,0:,0:] x")
34 self.parse(u"def foo(int[:,:] x): pass")
37 self.parse(u"cdef foo(int[:,:] x): pass")
40 self.parse(u'cdef float[::ptr, ::direct & contig, 0::full & strided] x')
49 t = self.parse(u"cdef int[:] x")
61 self.parse(u"sizeof(int[NN])")
62 self.parse(u"sizeof(int[])")
63 self.parse(u"sizeof(int[][NN])")