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.java66 private final SparseArray<Object> mSelectionArgs; field in ContentProviderOperation
85 mSelectionArgs = builder.mSelectionArgs; in ContentProviderOperation()
111 mSelectionArgs = source.readSparseArray(null); in ContentProviderOperation()
126 mSelectionArgs = cpo.mSelectionArgs; in ContentProviderOperation()
166 dest.writeSparseArray(mSelectionArgs); in writeToParcel()
368 if (mSelectionArgs != null) { in applyInternal()
498 if (mSelectionArgs != null) { in resolveSelectionArgsBackReferences()
500 for (int i = 0; i < mSelectionArgs.size(); i++) { in resolveSelectionArgsBackReferences()
501 max = Math.max(max, mSelectionArgs.keyAt(i)); in resolveSelectionArgsBackReferences()
505 for (int i = 0; i < mSelectionArgs.size(); i++) { in resolveSelectionArgsBackReferences()
[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()