Home
last modified time | relevance | path

Searched refs:mSelection (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
DSelectionBuilder.java34 private StringBuilder mSelection = new StringBuilder(); field in SelectionBuilder
41 mSelection.setLength(0); in reset()
61 if (mSelection.length() > 0) { in append()
62 mSelection.append(" AND "); in append()
65 mSelection.append("(").append(selection).append(")"); in append()
83 return mSelection.toString(); in getSelection()
/frameworks/base/core/java/android/content/
DContentProviderOperation.java42 private final String mSelection; field in ContentProviderOperation
60 mSelection = builder.mSelection; in ContentProviderOperation()
72 mSelection = source.readInt() != 0 ? source.readString() : null; in ContentProviderOperation()
99 if (mSelection != null) { in writeToParcel()
101 dest.writeString(mSelection); in writeToParcel()
223 numRows = provider.delete(mUri, mSelection, selectionArgs); in apply()
225 numRows = provider.update(mUri, values, mSelection, selectionArgs); in apply()
237 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null); in apply()
341 ", mSelection: " + mSelection + in toString()
404 private String mSelection; field in ContentProviderOperation.Builder
[all …]
/frameworks/base/core/java/android/webkit/
DWebView.java7323 private int mSelection;
7461 mSelection = selection;
7568 if (mSelection != -1) {
7569 listView.setSelection(mSelection);
7571 listView.setItemChecked(mSelection, true);
7573 adapter.getItemId(mSelection), listView, adapter);
/frameworks/base/docs/html/resources/tutorials/testing/
Dactivity_test.jd702 mSelection = (String)mSpinner.getItemAtPosition(mPos);
710 assertEquals(resultText,mSelection);
718 private String mSelection;