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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 308 * The Selection Arguments back references are represented as a Map of Integer->Integer where
309 * the key is an index into the selection argument array (see {@link Builder#withSelection})
310 * and the value is the index of the previous result that should be used for that selection
477 * Add a back references as a selection arg. Any value at that index of the selection arg
485 + "can have selection back-references");
556 * The selection and arguments to use. An occurrence of '?' in the selection will be
557 * replaced with the corresponding occurence of the selection argument. Any of the
558 * selection arguments may be overwritten by a selection argument back reference a
    [all...]
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 370 String[] projection, String selection, String[] selectionArgs,
377 uri, projection, selection, selectionArgs, sortOrder);
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java 1550 int selection = mMessageContentView.length(); local
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 313 * Supports REST Uri only, for a single row - selection, selection args, and sortOrder are
317 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
377 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 501 String[] projection, String selection, String[] selectionArgs,
508 uri, projection, selection, selectionArgs, sortOrder);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 186 // selection is ensured and in single mode.
187 TableItem selection = mTable.getSelection()[0];
188 ItemData data = (ItemData) selection.getData();
212 // reset the selection
232 // reset the selection
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java     [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.h 176 virtual VisibleSelection selection() const;
  /external/webkit/WebCore/inspector/front-end/
utilities.js 263 var selection = window.getSelection();
264 if (!selection.rangeCount || !selection.isCollapsed)
266 var selectionRange = selection.getRangeAt(0);
StylesSidebarPane.js     [all...]
  /external/webkit/WebCore/page/
Frame.h 95 SelectionController* selection() const;
Page.h 176 const VisibleSelection& selection() const;
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 227 frame->selection()->setFocused(true);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 118 public Cursor query(Uri url, String[] projectionIn, String selection,
  /packages/apps/Mms/src/com/android/mms/ui/
MessageUtils.java 697 String selection = Mms.MESSAGE_TYPE + " = " + PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF local
702 selection = selection + " AND " + Mms.THREAD_ID + " = " + threadId;
707 selection, null, null);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactAggregatorTest.java 66 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1 local
73 AGGREGATION_EXCEPTION_PROJECTION, selection, null, null);
87 selection, null, null);
102 selection, null, null);
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdSelector.java 73 * {@link #getSelected()} to retrieve the selection.
121 * In the "check" selection mode, checkboxes are displayed on each line
131 * In the "select" selection mode, there are no checkboxes and
433 * Tries to keep the selection.
481 * filter target will displayed an available for selection.
492 * Sets a selection listener. Set it to null to remove it.
493 * The listener will be called <em>after</em> this table processed its selection
514 * Sets the current target selection.
516 * If the selection is actually changed, this will invoke the selection listene
822 AvdInfo selection = getTableSelection(); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AllApps3D.java 103 * Used to keep track of the selection when AllAppsView loses window focus.
109 * Used to keep track of the selection when AllAppsView loses window focus
309 // Clear selection when we lose window focus
317 int selection = mLastSelectedIcon; local
319 if (selection < 0 || // No selection
320 selection < firstIcon || // off the top of the screen
321 selection >= sRollo.mState.iconCount || // past last icon
322 selection >= firstIcon + // past last icon on screen
324 selection = firstIcon
    [all...]
  /packages/apps/Music/src/com/android/music/
TrackBrowserActivity.java 391 // When showing the queue, position the selection on the currently playing track
392 // Otherwise, position the selection on the first matching artist, if any
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoActivity.java 308 // If the selection is the same as the original, then don't display the
765 cr.update(uri, values, null /* where */, null /* selection args */);
1003 StringBuilder selection = new StringBuilder(Email.DATA + " IN ("); local
    [all...]
EditEvent.java 704 CALENDARS_WHERE, null /* selection args */, null /* sort order */);
2133 int selection = mRecurrenceIndexes.get(position); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 103 * the selection provider from the {@link LayoutCanvasViewer}.
105 * Note that {@link LayoutCanvasViewer} sets a selection change listener on this
107 * selection changes.
113 * - handle context menu (depending on selection).
158 /** The current selection list. The list is never null, however it can be empty. */
187 * The <em>current</em> alternate selection, if any, which changes when the Alt key is
188 * used during a selection. Can be null.
213 /** List of clients listening to selection changes. */
219 /** Barrier set when updating the selection to prevent from recursively
394 // Check if the selection is still the same (based on the object keys
    [all...]
  /external/webkit/WebCore/css/
CSSSelector.cpp 145 DEFINE_STATIC_LOCAL(AtomicString, selection, ("selection"));
372 } else if (m_value == selection) {
  /external/webkit/WebCore/rendering/
RenderListBox.cpp 317 if (document()->frame()->selection()->isFocusedAndActive() && document()->focusedNode() == node())
353 if (document()->frame()->selection()->isFocusedAndActive() && document()->focusedNode() == node())
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 206 if (targetFrame->selection()->isRange()) {
208 dataObject->setRange(targetFrame->selection()->toNormalizedRange());
492 // selection, even if the composition is cancelled or fails later on.

Completed in 1951 milliseconds

1 2 3 4 5 6 7 8 91011>>