HomeSort by relevance Sort by last modified time
    Searched refs:updateCounts (Results 1 - 12 of 12) sorted by null

  /libcore/luni/src/main/java/java/sql/
BatchUpdateException.java 45 private int[] updateCounts = null;
78 public BatchUpdateException(int[] updateCounts, Throwable cause) {
80 this.updateCounts = updateCounts;
92 public BatchUpdateException(String reason, int[] updateCounts,
95 this.updateCounts = updateCounts;
100 * to the given cause Throwable object and the updateCounts array set to the
109 int[] updateCounts, Throwable cause) {
111 this.updateCounts = updateCounts
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
BatchUpdateExceptionTest.java 315 int[] updateCounts = new int[] { 1, 2, 3 };
317 updateCounts, cause);
322 for (int i = 0; i < updateCounts.length; i++) {
323 assertEquals(updateCounts[i], result[i]);
335 int[] updateCounts = new int[] { 1, 2, 3 };
337 "MYTESTSTRING1", "MYTESTSTRING2", updateCounts, cause);
343 for (int i = 0; i < updateCounts.length; i++) {
344 assertEquals(updateCounts[i], result[i]);
355 int[] updateCounts = new int[] { 1, 2, 3 };
357 null, null, updateCounts, null)
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldStatementTest.java 38 int[] updateCounts = st.executeBatch();
39 assertEquals(2, updateCounts.length);
40 assertEquals(1, updateCounts[0]);
41 assertEquals(1, updateCounts[1]);
173 int[] updateCounts = st.executeBatch();
175 for (int i = 0; i < updateCounts.length; i++) {
176 assertEquals(0, updateCounts[i]);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 207 int updateCounts;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 150 milliseconds