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

/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java35 private ArrayList<String> mSelectionArgs = new ArrayList<String>(); field in class:SelectionBuilder
42 mSelectionArgs.clear();
70 mSelectionArgs.add(String.valueOf(arg));
92 return mSelectionArgs.toArray(new String[mSelectionArgs.size()]);
/frameworks/base/core/java/android/content/
H A DCursorLoader.java48 String[] mSelectionArgs; field in class:CursorLoader
65 mSelectionArgs, mSortOrder, mCancellationSignal);
140 mSelectionArgs = selectionArgs;
215 return mSelectionArgs;
219 mSelectionArgs = selectionArgs;
237 writer.print(prefix); writer.print("mSelectionArgs=");
238 writer.println(Arrays.toString(mSelectionArgs));
H A DContentProviderOperation.java44 private final String[] mSelectionArgs; field in class:ContentProviderOperation
62 mSelectionArgs = builder.mSelectionArgs;
74 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null;
101 mSelectionArgs = cpo.mSelectionArgs;
131 if (mSelectionArgs != null) {
133 dest.writeStringArray(mSelectionArgs);
350 return mSelectionArgs;
352 String[] newArgs = new String[mSelectionArgs
430 private String[] mSelectionArgs; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DCursorLoader.java41 String[] mSelectionArgs; field in class:CursorLoader
50 mSelectionArgs, mSortOrder);
104 mSelectionArgs = selectionArgs;
179 return mSelectionArgs;
183 mSelectionArgs = selectionArgs;
201 writer.print(prefix); writer.print("mSelectionArgs=");
202 writer.println(Arrays.toString(mSelectionArgs));

Completed in 86 milliseconds