Searched defs:mSelection (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java34 private StringBuilder mSelection = new StringBuilder(); field in class:SelectionBuilder
41 mSelection.setLength(0);
61 if (mSelection.length() > 0) {
62 mSelection.append(" AND ");
65 mSelection.append("(").append(selection).append(")");
83 return mSelection.toString();
/frameworks/base/core/java/android/content/
H A DCursorLoader.java48 String mSelection; field in class:CursorLoader
65 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
140 mSelection = selection;
208 return mSelection;
212 mSelection = selection;
237 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
H A DContentProviderOperation.java42 private final String mSelection; field in class:ContentProviderOperation
60 mSelection = builder.mSelection;
72 mSelection = source.readInt() != 0 ? source.readString() : null;
99 if (mSelection != null) {
101 dest.writeString(mSelection);
223 numRows = provider.delete(mUri, mSelection, selectionArgs);
225 numRows = provider.update(mUri, values, mSelection, selectionArgs);
237 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null);
341 ", mSelection
404 private String mSelection; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DCursorLoader.java40 String mSelection; field in class:CursorLoader
49 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
103 mSelection = selection;
171 return mSelection;
175 mSelection = selection;
200 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);

Completed in 104 milliseconds