Searched defs:FLAG_AUTO_REQUERY (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DCursorAdapter.java95 public static final int FLAG_AUTO_REQUERY = 0x01; field in class:CursorAdapter
120 init(context, c, FLAG_AUTO_REQUERY);
136 init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
145 * be any combination of {@link #FLAG_AUTO_REQUERY} and
158 init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
162 if ((flags & FLAG_AUTO_REQUERY) == FLAG_AUTO_REQUERY) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorAdapter.java97 public static final int FLAG_AUTO_REQUERY = 0x01; field in class:CursorAdapter
122 init(context, c, FLAG_AUTO_REQUERY);
138 init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
147 * be any combination of {@link #FLAG_AUTO_REQUERY} and
160 init(context, c, autoRequery ? FLAG_AUTO_REQUERY : FLAG_REGISTER_CONTENT_OBSERVER);
164 if ((flags & FLAG_AUTO_REQUERY) == FLAG_AUTO_REQUERY) {

Completed in 31 milliseconds