HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 101 - 125 of 348) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/page/chromium/
EventHandlerChromium.cpp 58 // greyed out even though we're clicking on the selection. This looks
60 // selection.
62 if (m_frame->selection()->contains(p)) {
67 m_frame->selection()->setSelection(newSelection);
  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 57 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
59 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
  /frameworks/base/core/java/com/google/android/mms/util/
SqliteWrapper.java 69 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
71 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerDataHelper.java 109 String selection = (tag == null ? null : TrackerEntry.TAG + "=?"); local
113 selection, selectionArgs, null);
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 58 String selection = Events.HTML_URI + " LIKE \"%eid=" + eid + "%\""; local
61 selection, null, null);
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionSettings.java 63 String selection = (apnName != null)? local
68 APN_PROJECTION, selection, null, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 77 public void selectionChanged(IAction action, ISelection selection) {
78 mSelection = selection;
ConvertToAndroidAction.java 86 public void selectionChanged(IAction action, ISelection selection) {
87 mSelection = selection;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 512 Cursor cursor = mDb.rawQuery(SQL_SELECT_EVENTSRAWTIMES, null /* selection args */);
631 null /* selection */, null /* sort */,
675 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
691 return mDbHelper.getSyncState().query(db, projection, selection, selectionArgs,
745 selection, sortOrder, match == INSTANCES_BY_DAY,
764 return handleEventDayQuery(qb, startDay, endDay, projection, selection,
    [all...]
  /external/webkit/WebCore/editing/
InsertListCommand.cpp 64 VisibleSelection selection = selectionForParagraphIteration(endingSelection()); local
65 ASSERT(selection.isRange());
66 VisiblePosition startOfSelection = selection.visibleStart();
67 VisiblePosition endOfSelection = selection.visibleEnd();
80 // Fetch the start of the selection after moving the first paragraph,
82 // We'll use the new start to restore the original selection after
87 // doApply() may operate on and remove the last paragraph of the selection from the document
91 // the new location of endOfSelection and use it as the end of the new selection.
100 // Fetch the end of the selection, for the reason mentioned above.
117 // When a selection ends at the start of a paragraph, we rarely paint
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 69 String selection, String[] selectionArgs, String sortOrder) {
203 Cursor ret = qb.query(db, projection, selection,
497 public int delete(Uri uri, String selection,
552 String finalSelection = concatSelections(selection, extraSelection);
574 String selection, String[] selectionArgs, Uri uri) {
576 selection, selectionArgs, null, null, null);
594 int count = db.delete(TABLE_PDU, selection, selectionArgs);
606 private static int deleteParts(SQLiteDatabase db, String selection,
608 return deleteDataRows(db, TABLE_PART, selection, selectionArgs);
611 private static int deleteTempDrmData(SQLiteDatabase db, String selection,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
AvdManagerAction.java 70 public void selectionChanged(IAction action, ISelection selection) {
71 // nothing related to the current selection.
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 924 frame()->selection()->toNormalizedRange().get(), text);
1048 // frame()->selection()->isNone() never returns true.
1049 return (frame()->selection()->start() != frame()->selection()->end());
1054 return frame()->selection()->toNormalizedRange();
    [all...]
  /frameworks/base/core/java/android/widget/
AdapterView.java 89 * Indicates whether to sync based on the selection or position. Possible
347 * @param parent The AdapterView where the selection happened
355 * Callback method to be invoked when the selection disappears from this
356 * view. The selection can disappear for instance when touch is activated
550 int selection = getSelectedItemPosition(); local
551 if (adapter != null && adapter.getCount() > 0 && selection >= 0) {
552 return adapter.getItem(selection);
858 // we fire selection events here not in View
868 int selection = this.getSelectedItemPosition(); local
869 if (selection >= 0)
    [all...]
  /cts/tools/host/src/com/android/cts/
Selector.java 55 public enum Selection {
118 * @return The selection by the user.
120 public Selection doAccept(final String name) throws IOException {
121 Selection selection = Selection.REJECT; local
133 selection = Selection.ACCEPT;
145 selection = Selection.ACCEPT
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 315 String selection; local
339 selection = "upper(" + Data.DATA1 + ")=?"
347 selection = null;
353 Log.d(LOG_TAG, "==> selection: " + selection);
383 selection, // selection
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 694 final String selection, final String[] selectionArgs,
697 Helpers.validateSelection(selection, sAppReadableColumnsSet);
710 if (projection != null || selection != null || sort != null) {
717 SqlSelection fullSelection = getWhereClause(uri, selection, selectionArgs, match);
733 logVerboseQueryInfo(projection, selection, selectionArgs, sort, db);
931 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
973 SqlSelection selection = new SqlSelection(); local
1003 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 144 public Cursor query(Uri uri, String[] projection, String selection,
163 public Cursor query(Uri uri, String[] projection, String selection,
179 public Cursor query(Uri uri, String[] projection, String selection,
195 public Cursor query(Uri uri, String[] projection, String selection,
304 builderSetSelection(builder, "selection");
318 assertEquals("selection", operationGetSelection(op2));
404 ContentProviderOperation.Builder builder, String selection)
409 field.set(builder, selection);
529 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
542 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 134 public Cursor query(Uri uri, String[] projection, String selection,
160 selection,
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 57 * selection when the activity is not loaded.
74 * The key or label for "selection" in the preferences file
76 public static final String SELECTION_KEY = "Selection";
88 * 3) Instantiates a callback listener for handling selection from the
140 * The test will fail because the selection listener for the
187 * @param pos - the 0-based position of the selection in the mLocalAdapter
188 * @param row - the 0-based row number of the selection in the View
371 public void setSpinnerSelection(String selection) {
372 this.mSelection = selection;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 85 public Cursor query(Uri url, String[] projectionIn, String selection,
105 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FileList.java 157 abstract void processDirectory(String path, boolean selection);
161 * The flag indicates if this was from a selection or not.
163 abstract void processFile(String filename, boolean selection);
  /external/webkit/WebCore/html/
HTMLFormControlElement.h 168 VisibleSelection selection() const;
  /external/webkit/WebCore/rendering/
RenderTextControl.h 49 VisibleSelection selection(int start, int end) const;

Completed in 991 milliseconds

1 2 3 45 6 7 8 91011>>