Searched refs: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.java47 String mSelection; field in class:CursorLoader
64 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
139 mSelection = selection;
207 return mSelection;
211 mSelection = selection;
236 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
H A DContentProviderOperation.java43 private final String mSelection; field in class:ContentProviderOperation
61 mSelection = builder.mSelection;
73 mSelection = source.readInt() != 0 ? source.readString() : null;
100 mSelection = cpo.mSelection;
125 if (mSelection != null) {
127 dest.writeString(mSelection);
249 numRows = provider.delete(mUri, mSelection, selectionArgs);
251 numRows = provider.update(mUri, values, mSelection, selectionArg
429 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 85 milliseconds