HomeSort by relevance Sort by last modified time
    Searched refs:mSelection (Results 1 - 25 of 53) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ClearLintMarkersAction.java 29 private ISelection mSelection;
33 mSelection = selection;
38 List<IProject> projects = RunLintAction.getProjects(mSelection, false /*warn*/);
RunLintAction.java 62 private ISelection mSelection;
67 mSelection = selection;
72 List<IProject> projects = getProjects(mSelection, true /* warn */);
  /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.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
AddNativeAction.java 33 private ISelection mSelection;
38 if (mSelection instanceof IStructuredSelection) {
39 IStructuredSelection ss = (IStructuredSelection) mSelection;
61 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;
108 mSelection = null;
112 mSelection = (ITextSelection) selection;
113 if (mSelection.getLength() > 0) {
119 action.setEnabled(mSelection != null && mFile != null);
127 if (mSelection != null && mFile != null) {
128 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 36 private ISelection mSelection;
49 if (mSelection instanceof IStructuredSelection) {
50 IStructuredSelection selection = (IStructuredSelection)mSelection;
83 mSelection = selection;
ExportWizardAction.java 37 private ISelection mSelection;
50 if (mSelection instanceof IStructuredSelection) {
51 IStructuredSelection selection = (IStructuredSelection)mSelection;
92 mSelection = selection;
OpenWizardAction.java 65 private ISelection mSelection;
112 ISelection selection = mSelection;
173 mSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportProjectWizard.java 43 private IStructuredSelection mSelection;
53 if (mSelection != null) {
54 mImportPage.init(mSelection, AdtUtils.getActivePart());
61 mSelection = selection;
NewProjectWizard.java 54 private IStructuredSelection mSelection;
83 if (mSelection != null) {
84 mNamePage.init(mSelection, AdtUtils.getActivePart());
113 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;
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 98 private StringBuilder mSelection = new StringBuilder();
110 mSelection.setLength(0);
156 if (mSelection.length() > 0) {
157 mSelection.append(" AND ");
160 mSelection.append("(").append(selection).append(")");
237 return mSelection.toString();
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 98 private StringBuilder mSelection = new StringBuilder();
110 mSelection.setLength(0);
156 if (mSelection.length() > 0) {
157 mSelection.append(" AND ");
160 mSelection.append("(").append(selection).append(")");
237 return mSelection.toString();
  /frameworks/base/core/java/android/content/
CursorLoader.java 48 String mSelection;
65 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
140 mSelection = selection;
208 return mSelection;
212 mSelection = selection;
237 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,
103 mSelection = selection;
171 return mSelection;
175 mSelection = selection;
200 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 74 private List<CanvasViewInfo> mSelection;
124 if (mSelection != null) {
125 if (mSelection.isEmpty()) {
131 if (selectionCount == mSelection.size()) {
138 if (info != mSelection.get(i)) {
157 mSelection = Collections.emptyList();
169 mSelection = newSelection;
185 if (mSelection != null && !mSelection.isEmpty()) {
186 for (CanvasViewInfo item : mSelection) {
    [all...]
  /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/actions/
FixProjectAction.java 50 private ISelection mSelection;
61 if (mSelection instanceof IStructuredSelection) {
63 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator();
82 mSelection = selection;
DexDumpAction.java 62 private ISelection mSelection;
71 if (mSelection instanceof IStructuredSelection) {
72 for (Iterator<?> it = ((IStructuredSelection)mSelection).iterator(); it.hasNext();) {
89 mSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 63 private ISelection mSelection;
76 mSelection = selection;
90 if (mSelection instanceof IStructuredSelection) {
91 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); it.hasNext();) {
  /packages/apps/UnifiedEmail/src/com/android/mail/content/
ObjectCursorLoader.java 43 final String mSelection = null;
77 mSelection, mSelectionArgs, mSortOrder);
177 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 57 private ISelection mSelection;
125 return mSelection;
167 mSelection = selection;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 121 private View mSelection;
183 return mSelection != null;
187 return mSelection;
192 dropOnTable(mSelection);
193 mPhotoSource.donePaging(getBitmap(mSelection));
195 fadeInBackground(mSelection);
197 mSelection = null;
215 mSelection = selected;
218 fadeOutBackground(mSelection);
227 placeOnDeck(mSelection, PREV)
    [all...]
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockContentProvider.java 47 private String mSelection;
64 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder);
83 mSelection = selection;
133 if (!mAnySelection && !equals(selection, mSelection)) {

Completed in 686 milliseconds

1 2 3