HomeSort by relevance Sort by last modified time
    Searched defs:requery (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 67 public static boolean requery(Context context, Cursor cursor) { method in class:SqliteWrapper
69 return cursor.requery();
71 Log.e(TAG, "Catch a SQLiteException when requery: ", e);
SQLiteCursor.java 219 public boolean requery() { method in class:SQLiteCursor
239 return super.requery();
242 Log.w(TAG, "requery() failed " + e.getMessage(), e);
254 * Changes the selection arguments. The new values take effect after a call to requery().
  /frameworks/base/core/java/android/database/
BulkCursorToCursorAdaptor.java 131 public boolean requery() { method in class:BulkCursorToCursorAdaptor
135 mCount = mBulkCursor.requery(getObserver());
140 // super.requery() will call onChanged. Do it here instead of relying on the
143 super.requery();
150 Log.e(TAG, "Unable to requery because the remote process exception " + ex.getMessage());
IBulkCursor.java 50 public int requery(IContentObserver observer) throws RemoteException; method in interface:IBulkCursor
BulkCursorNative.java 93 int count = requery(observer);
222 public int requery(IContentObserver observer) throws RemoteException { method in class:BulkCursorProxy
MergeCursor.java 220 public boolean requery() method in class:MergeCursor
228 if (mCursors[i].requery() == false) {
Cursor.java 346 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
348 * Calling {@link #requery} will make the cursor active again.
349 * @deprecated Since {@link #requery()} is deprecated, so too is this.
363 * @return true if the requery succeeded, false if not, in which case the
369 boolean requery(); method in interface:Cursor
373 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
386 * Typically the data set won't change until {@link #requery()} is called.
405 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
459 * <p>These values may only change when requery is called.
CursorToBulkCursorAdaptor.java 219 public int requery(IContentObserver observer) { method in class:CursorToBulkCursorAdaptor
226 if (!mCursor.requery()) {
231 mProviderName + " Requery misuse db, mCursor isClosed:" +
CursorWrapper.java 227 public boolean requery() { method in class:CursorWrapper
228 return mCursor.requery();
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
SqliteWrapper.java 79 public static boolean requery(Context context, Cursor cursor) { method in class:SqliteWrapper
81 return cursor.requery();
83 Log.e(TAG, "Catch a SQLiteException when requery: ", e);
  /external/pdfium/fxjs/xfa/
cjx_source.cpp 29 {"requery", requery_static},
128 CJS_Return CJX_Source::requery( function in class:CJX_Source
  /development/apps/Development/src/com/android/development/
DataList.java 70 mCursor.requery();
79 menu.add(0, 0, 0, "Requery").setOnMenuItemClickListener(mRequery);
117 // Should just do requery on cursor, but
119 mCursor.requery();
  /frameworks/base/core/java/android/content/
ContentQueryMap.java 47 /** Set when a cursor change notification is received and is cleared on a call to requery(). */
105 requery();
125 if (mDirty) requery(); method
130 public void requery() { method in class:ContentQueryMap
133 // If mCursor is null then it means there was a requery() in flight
135 // If this happens ignore the requery() since we are closed anyways.
139 if (!cursor.requery()) {
164 if (mDirty) requery(); method
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 112 cursor1.requery();
113 cursor2.requery();
  /cts/tests/app/src/android/app/cts/
AlertDialog_BuilderCursorTest.java 89 mCursor.requery();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorWrapper.java 154 public boolean requery() { method in class:ShadowCursorWrapper
155 return wrappedCursor.requery();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
TestCursor.java 148 public boolean requery() { method in class:TestCursor
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
BaseCursor.java 151 public boolean requery() { method in class:BaseCursor
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCursorWrapper.java 162 public boolean requery() { method in class:ShadowCursorWrapper
163 return wrappedCursor.requery();
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 295 public boolean requery() method in class:SortCursor
301 if (mCursors[i].requery() == false) {
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteCursorTest.java 129 c.requery();
140 // and then delete 75% of data - and then do requery
150 c.requery();
  /frameworks/base/test-mock/src/android/test/mock/
MockCursor.java 199 public boolean requery() { method in class:MockCursor
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 111 mCursor.requery();
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 83 assertTrue(cursor.requery());
85 assertFalse(cursor.requery());
111 assertTrue(cursor.requery());
126 assertTrue(cursor.requery());
162 assertTrue(cursor.requery());
163 // only after requery, getCount can get most up-to-date counting info now.
179 // add more data to the table and requery
181 assertTrue(c.requery());
189 // close the database and see if requery throws an exception
191 assertFalse(c.requery());
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 130 mContentQueryMap.requery();
136 // Disable the keepUpdated to make sure requery() will not be called
156 mContentQueryMap.requery();
200 mContentQueryMap.requery();
302 mContentQueryMap.requery();

Completed in 244 milliseconds

1 2 3 4 5