Home
last modified time | relevance | path

Searched refs:mSelectionArgs (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
DSelectionBuilder.java35 private ArrayList<String> mSelectionArgs = new ArrayList<String>(); field in SelectionBuilder
42 mSelectionArgs.clear(); in reset()
70 mSelectionArgs.add(String.valueOf(arg)); in append()
92 return mSelectionArgs.toArray(new String[mSelectionArgs.size()]); in getSelectionArgs()
/frameworks/base/core/java/android/content/
DContentProviderOperation.java55 private final String[] mSelectionArgs; field in ContentProviderOperation
74 mSelectionArgs = builder.mSelectionArgs; in ContentProviderOperation()
87 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null; in ContentProviderOperation()
111 mSelectionArgs = cpo.mSelectionArgs; in ContentProviderOperation()
134 if (mSelectionArgs != null) { in writeToParcel()
136 dest.writeStringArray(mSelectionArgs); in writeToParcel()
431 return mSelectionArgs; in resolveSelectionArgsBackReferences()
433 String[] newArgs = new String[mSelectionArgs.length]; in resolveSelectionArgsBackReferences()
434 System.arraycopy(mSelectionArgs, 0, newArgs, 0, mSelectionArgs.length); in resolveSelectionArgsBackReferences()
511 private String[] mSelectionArgs; field in ContentProviderOperation.Builder
[all …]
DCursorLoader.java54 String[] mSelectionArgs; field in CursorLoader
72 mSelectionArgs, mSortOrder, mCancellationSignal); in loadInBackground()
147 mSelectionArgs = selectionArgs; in CursorLoader()
222 return mSelectionArgs; in getSelectionArgs()
226 mSelectionArgs = selectionArgs; in setSelectionArgs()
245 writer.println(Arrays.toString(mSelectionArgs)); in dump()