Home
last modified time | relevance | path

Searched refs:rowcount (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Modules/_sqlite/
Dcursor.c66 self->rowcount = -1L; in pysqlite_cursor_init_impl()
486 self->rowcount = 0L; in _pysqlite_query_execute()
596 self->rowcount += (long)sqlite3_changes(self->connection->db); in _pysqlite_query_execute()
598 self->rowcount= -1L; in _pysqlite_query_execute()
639 self->rowcount = -1L; in _pysqlite_query_execute()
1014 {"rowcount", T_LONG, offsetof(pysqlite_Cursor, rowcount), READONLY},
Dcursor.h41 long rowcount; member
/third_party/python/Doc/includes/sqlite3/
Dshortcut_methods.py20 print("I just deleted", con.execute("delete from lang").rowcount, "rows")
/third_party/ffmpeg/libavfilter/
Dvf_signature.c166 uint64_t rowcount; in filter_frame() local
230 rowcount = 0; in filter_frame()
244 rowcount += intpic[i][j] * a * b * precfactor / denom; in filter_frame()
246 intpic[i][j] = intpic[i-1][j] + rowcount; in filter_frame()
248 intpic[i][j] = rowcount; in filter_frame()
/third_party/python/Lib/sqlite3/test/
Ddbapi.py368 self.assertEqual(self.cu.rowcount, 2)
377 self.assertEqual(self.cu.rowcount, -1)
382 self.assertEqual(self.cu.rowcount, 3)
/third_party/python/Doc/library/
Dsqlite3.rst752 .. attribute:: rowcount
759 into :attr:`rowcount`.
761 As required by the Python DB API Spec, the :attr:`rowcount` attribute "is -1 in
762 case no ``executeXX()`` has been performed on the cursor or the rowcount of the