OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ContentQueryMap
(Results
1 - 25
of
27
) sorted by null
1
2
/frameworks/base/core/java/android/content/
ContentQueryMap.java
35
public class
ContentQueryMap
extends Observable {
51
* Creates a
ContentQueryMap
that caches the content backing the cursor
62
public
ContentQueryMap
(Cursor cursor, String columnNameOfKey, boolean keepUpdated,
79
* Change whether or not the
ContentQueryMap
will register with the cursor's ContentProvider
80
* for change notifications. If you use a
ContentQueryMap
in an activity you should call this
83
* @param keepUpdated if true the
ContentQueryMap
should be registered with the cursor's
/cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java
20
import android.content.
ContentQueryMap
;
36
* Test {@link
ContentQueryMap
}.
56
private
ContentQueryMap
mContentQueryMap;
97
new
ContentQueryMap
(mCursor, DummyProvider.NAME, true, null);
99
new
ContentQueryMap
(mCursor, DummyProvider.VALUE, false, new Handler());
102
new
ContentQueryMap
(mCursor, null, false, new Handler());
108
new
ContentQueryMap
(null, DummyProvider.NAME, false, new Handler());
117
mContentQueryMap = new
ContentQueryMap
(mCursor, DummyProvider.NAME, true, null);
127
mContentQueryMap = new
ContentQueryMap
(mCursor, DummyProvider.NAME, false, new Handler());
138
mContentQueryMap = new
ContentQueryMap
(mCursor, DummyProvider.NAME, false, null)
[
all
...]