Home | History | Annotate | Download | only in sqlite

Lines Matching full:rows

81         Set<Integer> rows = new HashSet<Integer>();
86 rows.add(j); // store in a hashtable so we can verify the results from cursor later on
90 assertEquals(N, rows.size());
102 assertTrue(rows.contains(val));
103 assertTrue(rows.remove(val));
105 // did I see all the rows in the table?
106 assertTrue(rows.isEmpty());
109 rows = new HashSet<Integer>();
113 rows.add(j);
122 assertEquals(M, rows.size());
127 assertTrue(rows.contains(val));
128 assertTrue(rows.remove(val));
131 assertTrue(rows.isEmpty());