Searched refs:mSelection (Results 1 - 3 of 3) 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 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);
339 ", mSelection
402 private String mSelection; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java6835 private int mSelection; field in class:WebView.InvokeListBox
6973 mSelection = selection;
7080 if (mSelection != -1) {
7081 listView.setSelection(mSelection);
7083 listView.setItemChecked(mSelection, true);
7085 adapter.getItemId(mSelection), listView, adapter);

Completed in 238 milliseconds