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.java48 String[] mSelectionArgs; field in class:CursorLoader
57 mSelectionArgs, mSortOrder);
119 mSelectionArgs = selectionArgs;
194 return mSelectionArgs;
198 mSelectionArgs = selectionArgs;
216 writer.print(prefix); writer.print("mSelectionArgs=");
217 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);
112 mSelectionArgs = selectionArgs;
187 return mSelectionArgs;
191 mSelectionArgs = selectionArgs;
209 writer.print(prefix); writer.print("mSelectionArgs=");
210 writer.println(Arrays.toString(mSelectionArgs));

Completed in 101 milliseconds