Searched refs:rowcount (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Modules/_sqlite/ |
D | cursor.c | 66 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},
|
D | cursor.h | 41 long rowcount; member
|
/third_party/python/Doc/includes/sqlite3/ |
D | shortcut_methods.py | 20 print("I just deleted", con.execute("delete from lang").rowcount, "rows")
|
/third_party/ffmpeg/libavfilter/ |
D | vf_signature.c | 161 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/ |
D | dbapi.py | 368 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/ |
D | sqlite3.rst | 752 .. 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/ |
D | register-allocator.cc | 1165 int rowcount = 0; in PrintRangeOverview() local 1168 if (rowcount++ % 10 == 0) PrintBlockRow(os, code()->instruction_blocks()); in PrintRangeOverview()
|