Home
last modified time | relevance | path

Searched refs:rowcount (Results 1 – 7 of 7) 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.c161 uint64_t rowcount; in filter_frame() local
225 rowcount = 0; in filter_frame()
239 rowcount += intpic[i][j] * a * b * precfactor / denom; in filter_frame()
241 intpic[i][j] = intpic[i-1][j] + rowcount; in filter_frame()
243 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
/third_party/node/deps/v8/src/compiler/backend/
Dregister-allocator.cc1165 int rowcount = 0; in PrintRangeOverview() local
1168 if (rowcount++ % 10 == 0) PrintBlockRow(os, code()->instruction_blocks()); in PrintRangeOverview()