/frameworks/base/core/java/android/content/ |
D | ContentProviderOperation.java | 49 private final String[] mSelectionArgs; field in ContentProviderOperation 67 mSelectionArgs = builder.mSelectionArgs; in ContentProviderOperation() 79 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null; in ContentProviderOperation() 106 mSelectionArgs = cpo.mSelectionArgs; in ContentProviderOperation() 136 if (mSelectionArgs != null) { in writeToParcel() 138 dest.writeStringArray(mSelectionArgs); in writeToParcel() 412 return mSelectionArgs; in resolveSelectionArgsBackReferences() 414 String[] newArgs = new String[mSelectionArgs.length]; in resolveSelectionArgsBackReferences() 415 System.arraycopy(mSelectionArgs, 0, newArgs, 0, mSelectionArgs.length); in resolveSelectionArgsBackReferences() 492 private String[] mSelectionArgs; field in ContentProviderOperation.Builder [all …]
|
D | CursorLoader.java | 48 String[] mSelectionArgs; field in CursorLoader 65 mSelectionArgs, mSortOrder, mCancellationSignal); in loadInBackground() 140 mSelectionArgs = selectionArgs; in CursorLoader() 215 return mSelectionArgs; in getSelectionArgs() 219 mSelectionArgs = selectionArgs; in setSelectionArgs() 238 writer.println(Arrays.toString(mSelectionArgs)); in dump()
|
/frameworks/base/core/java/com/android/internal/content/ |
D | SelectionBuilder.java | 35 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/support/v4/java/android/support/v4/content/ |
D | CursorLoader.java | 43 String[] mSelectionArgs; field in CursorLoader 60 mUri, mProjection, mSelection, mSelectionArgs, mSortOrder, in loadInBackground() 136 mSelectionArgs = selectionArgs; in CursorLoader() 211 return mSelectionArgs; in getSelectionArgs() 215 mSelectionArgs = selectionArgs; in setSelectionArgs() 234 writer.println(Arrays.toString(mSelectionArgs)); in dump()
|
/frameworks/base/docs/html-intl/intl/ko/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 443 쿼리 메서드가 그 값을 선택 인수 배열에서 검색합니다(변수 <code>mSelectionArgs</code>). 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/ru/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 443 <code>mSelectionArgs</code>). 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/zh-tw/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 441 如果您指定可替換的參數 <code>?</code>,而不是某個值,則查詢方法會從選取引數陣列 (即 <code>mSelectionArgs</code> 變數) 擷取相關值。 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 441 如果您指定了可替换参数 <code>?</code> 而非值,则查询方法会从选择参数数组(变量 <code>mSelectionArgs</code>)中检索值。 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/ja/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 441 値の代わりに置き換え可能パラメータ <code>?</code> を指定すると、クエリ メソッドによって、選択引数の配列(変数 <code>mSelectionArgs</code>)から値が取得さ… 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html/training/contacts-provider/ |
D | retrieve-details.jd | 138 private String[] mSelectionArgs = { "" }; 225 mSelectionArgs[0] = mLookupKey; 233 mSelectionArgs, 366 private String[] mSelectionArgs = { "" };
|
D | retrieve-names.jd | 382 private String[] mSelectionArgs = { mSearchString }; 459 mSelectionArgs[0] = "%" + mSearchString + "%"; 466 mSelectionArgs, 680 String[] mSelectionArgs = { "" }; 697 mSelectionArgs[0] = mSearchString; 704 mSelectionArgs, 776 Don't define the <code>SELECTION</code> constants or the <code>mSelectionArgs</code> variable.
|
/frameworks/base/docs/html-intl/intl/in/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 443 dari larik argumen pemilihan (variabel <code>mSelectionArgs</code>). 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | content-provider-basics.jd | 251 mSelectionArgs, // Selection criteria 427 String[] mSelectionArgs = {""}; 445 from the selection arguments array (the variable <code>mSelectionArgs</code>). 457 String[] mSelectionArgs = {""}; 468 mSelectionArgs[0] = ""; 475 mSelectionArgs[0] = mSearchString; 484 mSelectionArgs, // Either empty, or the string the user entered 812 String[] mSelectionArgs = {"en_%"}; 828 mSelectionArgs // the value to compare to 847 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/pt-br/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 443 da matriz de argumentos de seleção (a variável <code>mSelectionArgs</code>). 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|
/frameworks/base/docs/html-intl/intl/vi/guide/topics/providers/ |
D | content-provider-basics.jd | 249 mSelectionArgs, // Selection criteria 425 String[] mSelectionArgs = {""}; 443 từ mảng tham đối lựa chọn (biến <code>mSelectionArgs</code>). 455 String[] mSelectionArgs = {""}; 466 mSelectionArgs[0] = ""; 473 mSelectionArgs[0] = mSearchString; 482 mSelectionArgs, // Either empty, or the string the user entered 810 String[] mSelectionArgs = {"en_%"}; 826 mSelectionArgs // the value to compare to 845 String[] mSelectionArgs = {"user"}; [all …]
|