Home
last modified time | relevance | path

Searched refs:mSelectionArgs (Results 1 – 2 of 2) 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.java43 private final String[] mSelectionArgs; field in ContentProviderOperation
61 mSelectionArgs = builder.mSelectionArgs; in ContentProviderOperation()
73 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null; in ContentProviderOperation()
105 if (mSelectionArgs != null) { in writeToParcel()
107 dest.writeStringArray(mSelectionArgs); in writeToParcel()
324 return mSelectionArgs; in resolveSelectionArgsBackReferences()
326 String[] newArgs = new String[mSelectionArgs.length]; in resolveSelectionArgsBackReferences()
327 System.arraycopy(mSelectionArgs, 0, newArgs, 0, mSelectionArgs.length); in resolveSelectionArgsBackReferences()
405 private String[] mSelectionArgs; field in ContentProviderOperation.Builder
570 mSelectionArgs = null; in withSelection()
[all …]