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

1 2 3 4 5 6 78 91011>>

  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmProvider.java 95 public Cursor query(Uri url, String[] projectionIn, String selection,
115 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
  /packages/apps/Email/src/com/android/exchange/
AbstractSyncService.java 314 protected String[] getRowColumns(Uri contentUri, String[] projection, String selection,
318 Cursor c = cr.query(contentUri, projection, selection, selectionArgs, null);
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetProvider.java 169 String selection = String.format("%s=%d", FIELD_APPWIDGET_ID, local
171 c = db.query(TABLE_PHOTOS, PHOTOS_PROJECTION, selection, null,
  /packages/apps/Gallery3D/src/com/cooliris/media/
PhotoAppWidgetProvider.java 158 String selection = String.format("%s=%d", FIELD_APPWIDGET_ID, appWidgetId); local
159 c = db.query(TABLE_PHOTOS, PHOTOS_PROJECTION, selection, null, null, null, null, null);
HudLayer.java 482 // Show the selection menu in selection mode.
492 // Show the time bar in stack and grid states, except in selection mode.
497 // Hide the path bar and top-right button in selection mode.
689 ArrayList<MediaBucket> selection = mGridLayer.getSelectedBuckets(); local
692 if (!selection.isEmpty()) {
694 int numBuckets = selection.size();
696 MediaBucket bucket = selection.get(j);
829 ArrayList<MediaBucket> selection = mGridLayer.getSelectedBuckets(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 187 // TODO ContentResolver.query() appends closing ')' to the selection argument
211 String selection = Mms.CONTENT_LOCATION + " = ?"; local
216 selection, selectionArgs, null);
RetrieveTransaction.java 193 String selection = "(" + Mms.MESSAGE_ID + " = ? AND " local
200 selection, selectionArgs, null);
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 212 String selection = Sms.ADDRESS + " = ? AND " + Sms.PROTOCOL + " = ?"; local
217 REPLACE_PROJECTION, selection, selectionArgs, null);
  /packages/apps/Tag/src/com/android/apps/tag/
TagList.java 120 String selection = mShowStarredOnly ? NdefMessages.STARRED + "=1" : null; local
124 selection,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AutoDictionary.java 206 private Cursor query(String selection, String[] selectionArgs) {
213 Cursor c = qb.query(db, null, selection, selectionArgs, null, null,
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 104 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
134 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 60 public void init(IWorkbench workbench, IStructuredSelection selection) {
68 mMainPage.setInitialSelection(selection);
  /external/webkit/WebCore/page/
Page.cpp 455 startFrame->selection()->clear();
462 // Search contents of startFrame, on the other side of the selection that we did earlier.
464 if (shouldWrap && !startFrame->selection()->isNone()) {
502 const VisibleSelection& Page::selection() const function in class:WebCore::Page
504 return focusController()->focusedOrMainFrame()->selection()->selection();
  /external/webkit/WebCore/rendering/
RenderTextControl.cpp 216 return indexForVisiblePosition(frame->selection()->start());
224 return indexForVisiblePosition(frame->selection()->end());
268 frame->selection()->setSelection(newSelection);
270 // FIXME: Granularity is stored separately on the frame, but also in the selection controller.
271 // The granularity in the selection controller should be used, and then this line of code would not be needed.
276 VisibleSelection RenderTextControl::selection(int start, int end) const function in class:WebCore::RenderTextControl
503 if (frame->selection()->isRange() && userTriggered)
  /frameworks/base/media/java/android/media/
RingtoneManager.java 558 String selection,
562 return mActivity.managedQuery(uri, projection, selection, selectionArgs, sortOrder);
564 return mContext.getContentResolver().query(uri, projection, selection, selectionArgs,
  /packages/apps/Phone/src/com/android/phone/
SipCallOptionHandler.java 258 String selection = getResources().getStringArray( local
260 Log.v(TAG, "User pick phone " + selection);
261 if (selection.equals(getString(R.string.internet_phone))) {
  /dalvik/vm/mterp/armv5te/
entry.S 85 moveq r2,#kJitTSelectRequestHot @ ask for trace selection
  /external/webkit/WebCore/editing/
SelectionController.h 60 const VisibleSelection& selection() const { return m_selection; } function in class:WebCore::SelectionController
89 // Return the renderer that is responsible for painting the caret (in the selection start node)
CompositeEditCommand.cpp 367 void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
369 if (selection.isRange())
370 applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
474 VisibleSelection selection = endingSelection(); local
475 if (selection.isNone())
478 rebalanceWhitespaceAt(selection.start());
479 if (selection.isRange())
480 rebalanceWhitespaceAt(selection.end());
719 // links from a selection to create fully selected chunks that can be removed.
812 // If the selection to move was empty and in an empty block that
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 559 String selection = deleteAll ? null : "locked=0"; local
560 handler.startDelete(token, null, uri, selection, null);
571 String selection = deleteAll ? null : "locked=0"; local
572 handler.startDelete(token, null, Threads.CONTENT_URI, selection, null);
    [all...]
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 270 public Cursor query(Uri uri, String[] projectionIn, String selection,
274 if (!TextUtils.isEmpty(selection)) {
275 throw new IllegalArgumentException("selection not allowed for " + uri);
484 public int update(Uri uri, ContentValues values, String selection,
490 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 1268 String selection; local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 660 protected void assertStoredValue(Uri rowUri, String selection, String[] selectionArgs,
662 String value = getStoredValue(rowUri, selection, selectionArgs, column);
674 protected String getStoredValue(Uri uri, String selection, String[] selectionArgs,
677 Cursor c = mResolver.query(uri, new String[] { column }, selection, selectionArgs, null);
692 protected void assertStoredValues(Uri rowUri, String selection, String[] selectionArgs,
694 Cursor c = mResolver.query(rowUri, null, selection, selectionArgs, null);
716 * Constructs a selection (where clause) out of all supplied values, uses it
791 protected int getCount(Uri uri, String selection, String[] selectionArgs) {
792 Cursor c = mResolver.query(uri, null, selection, selectionArgs, null);
825 String selection = null; local
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 287 private Cursor getCursor(String tableName, String selection, String[] columnNames) {
288 return mDatabase.query(tableName, columnNames, selection, null, null, null, "number");
  /external/stlport/test/eh/
intel50.mak 57 #Library selection should be BEFORE debug processing!!!

Completed in 358 milliseconds

1 2 3 4 5 6 78 91011>>