/frameworks/base/core/java/com/android/internal/content/ |
SelectionBuilder.java | 34 private StringBuilder mSelection = new StringBuilder(); 41 mSelection.setLength(0); 61 if (mSelection.length() > 0) { 62 mSelection.append(" AND "); 65 mSelection.append("(").append(selection).append(")"); 83 return mSelection.toString();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/actions/ |
AddNativeAction.java | 33 private ISelection mSelection; 37 if (mSelection instanceof IStructuredSelection) { 38 IStructuredSelection ss = (IStructuredSelection) mSelection; 59 mSelection = selection;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringAction.java | 76 private ITextSelection mSelection; 105 mSelection = null; 109 mSelection = (ITextSelection) selection; 110 if (mSelection.getLength() > 0) { 116 action.setEnabled(mSelection != null && mFile != null); 123 if (mSelection != null && mFile != null) { 124 ExtractStringRefactoring ref = new ExtractStringRefactoring(mFile, mEditor, mSelection);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
ExportAction.java | 35 private ISelection mSelection; 46 if (mSelection instanceof IStructuredSelection) { 47 IStructuredSelection selection = (IStructuredSelection)mSelection; 75 mSelection = selection;
|
ExportWizardAction.java | 36 private ISelection mSelection; 47 if (mSelection instanceof IStructuredSelection) { 48 IStructuredSelection selection = (IStructuredSelection)mSelection; 83 mSelection = selection;
|
OpenWizardAction.java | 65 private ISelection mSelection; 109 ISelection selection = mSelection; 169 mSelection = selection;
|
/development/samples/Spinner/src/com/android/example/spinner/ |
SpinnerActivity.java | 43 protected String mSelection; 193 SpinnerActivity.this.mSelection = parent.getItemAtPosition(pos).toString(); 198 resultText.setText(SpinnerActivity.this.mSelection); 310 this.mSelection = p.getString(SELECTION_KEY, ""); 348 e.putString(SELECTION_KEY, this.mSelection); 368 return this.mSelection; 372 this.mSelection = selection;
|
/frameworks/base/core/java/android/content/ |
CursorLoader.java | 47 String mSelection; 56 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection, 118 mSelection = selection; 186 return mSelection; 190 mSelection = selection; 215 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
|
ContentProviderOperation.java | 42 private final String mSelection; 60 mSelection = builder.mSelection; 72 mSelection = source.readInt() != 0 ? source.readString() : null; 99 if (mSelection != null) { 101 dest.writeString(mSelection); 223 numRows = provider.delete(mUri, mSelection, selectionArgs); 225 numRows = provider.update(mUri, values, mSelection, selectionArgs); 237 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null); 341 ", mSelection: " + mSelection [all...] |
/frameworks/support/v4/java/android/support/v4/content/ |
CursorLoader.java | 40 String mSelection; 49 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection, 111 mSelection = selection; 179 return mSelection; 183 mSelection = selection; 208 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
FixProjectAction.java | 49 private ISelection mSelection; 58 if (mSelection instanceof IStructuredSelection) { 60 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); 78 mSelection = selection;
|
AddCompatibilityJarAction.java | 68 private ISelection mSelection; 77 if (mSelection instanceof IStructuredSelection) { 79 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); 97 mSelection = selection;
|
DexDumpAction.java | 59 private ISelection mSelection; 66 if (mSelection instanceof IStructuredSelection) { 67 for (Iterator<?> it = ((IStructuredSelection)mSelection).iterator(); it.hasNext();) { 83 mSelection = selection;
|
/development/samples/SpinnerTest/src/com/android/example/spinner/test/ |
SpinnerActivityTest.java | 73 private String mSelection; 216 mSelection = (String)mSpinner.getItemAtPosition(mPos); 233 assertEquals(resultText,mSelection);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
RenamePackageAction.java | 63 private ISelection mSelection; 74 mSelection = selection; 87 if (mSelection instanceof IStructuredSelection) { 88 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); it.hasNext();) {
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/ |
MockContentProvider.java | 47 private String mSelection; 64 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder); 83 mSelection = selection; 133 if (!mAnySelection && !equals(selection, mSelection)) {
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ConfirmAddDetailActivity.java | 345 private String mSelection; 363 mSelection = "0"; 370 mSelection = RawContacts.CONTACT_ID + "=?"; 375 mSelection = RawContacts.CONTACT_ID + "=?"; 380 mSelection = Data.RAW_CONTACT_ID + "=?"; 386 activityTarget.getContentResolver(), mSelection, [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
Helpers.java | 480 private final String mSelection; 487 mSelection = selection; 489 mChars = new char[mSelection.length()]; 490 mSelection.getChars(0, mChars.length, mChars, 0); 585 String word = mSelection.substring(startOffset, mOffset);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoring.java | 119 protected final ITextSelection mSelection; 147 mSelection = null; 162 mSelection = null; 187 mSelection = selection; 654 assert mTreeSelection == null || mSelection == null : 655 "treeSel= " + mTreeSelection + ", sel=" + mSelection; 685 } else if (mSelection != null) { 686 mSelectionStart = mSelection.getOffset(); 687 mSelectionEnd = mSelectionStart + mSelection.getLength(); [all...] |
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
Adapters.java | [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactAggregator.java | [all...] |
/frameworks/base/core/java/android/webkit/ |
WebView.java | [all...] |