Searched refs: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.java49 String[] mSelectionArgs; field in class:CursorLoader
66 mSelectionArgs, mSortOrder, mCancellationSignal);
141 mSelectionArgs = selectionArgs;
216 return mSelectionArgs;
220 mSelectionArgs = selectionArgs;
238 writer.print(prefix); writer.print("mSelectionArgs=");
239 writer.println(Arrays.toString(mSelectionArgs));
H A DContentProviderOperation.java43 private final String[] mSelectionArgs; field in class:ContentProviderOperation
61 mSelectionArgs = builder.mSelectionArgs;
73 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null;
105 if (mSelectionArgs != null) {
107 dest.writeStringArray(mSelectionArgs);
324 return mSelectionArgs;
326 String[] newArgs = new String[mSelectionArgs.length];
327 System.arraycopy(mSelectionArgs, 0, newArgs, 0, mSelectionArgs
405 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 70 milliseconds