HomeSort by relevance Sort by last modified time
    Searched full:selection (Results 376 - 400 of 3967) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
TestProvider.java 50 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the
54 * delete() and update() do not allow non-null selection or selectionArgs arguments; the presence
100 public int delete(Uri uri, String selection, String[] selectionArgs) {
101 if (selection != null || selectionArgs != null) {
142 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
144 if (selection != null || selectionArgs != null || sortOrder != null || projection == null) {
181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) {
182 if (selection != null || selectionArgs != null) {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
LocalSource.java 131 String selection = MediaStore.Images.Media.BUCKET_ID + " = '" + data.albumId + "'"; local
133 data.cursor = mResolver.query(data.uri, projection, selection, null, null);
193 String selection = ""; local
198 if (selection.length() > 0) {
199 selection += " OR ";
201 selection += MediaStore.Images.Media.BUCKET_ID + " = '" + parts[1] + "'";
205 if (selection.isEmpty()) {
208 Cursor cursor = mResolver.query(uri, projection, selection, null, null);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
nss.h 41 /* Overwrite service selection for database DBNAME using specification
46 whole memory since previous selection data cannot be freed. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
nss.h 41 /* Overwrite service selection for database DBNAME using specification
46 whole memory since previous selection data cannot be freed. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
nss.h 41 /* Overwrite service selection for database DBNAME using specification
46 whole memory since previous selection data cannot be freed. */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasAlternateSelection.java 22 * Information for the current alternate selection, i.e. the possible selected items
31 * Creates a new alternate selection based on the given originating view and the
LayoutCanvasViewer.java 43 * canvas' selection changes are broadcasted to anyone listening, which includes
111 * Sets a new selection. <code>reveal</code> is ignored right now.
113 * The selection can be null, which is interpreted as an empty selection.
116 public void setSelection(ISelection selection, boolean reveal) {
120 mCanvas.getSelectionManager().setSelection(selection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateTestWizard.java 38 public void init(IWorkbench workbench, IStructuredSelection selection) {
39 super.init(workbench, selection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 29 * A Workbench {@link ViewPart} that requires {@link Device}/{@link Client} selection notifications
40 // and add ourself as listener of selection events.
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
AddNativeAction.java 60 public void selectionChanged(IAction action, ISelection selection) {
61 mSelection = selection;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 256 // Find the option with value() matching the given parameter and make it the current selection.
395 // selection as single-line and multi-line has different defaults.
550 // Save the selection so it can be compared to the new selectAll selection
582 // Cache the selection state so we can restore the old selection as the new
583 // selection pivots around this anchor index.
631 // If the cached selection list is empty, or the size has changed, then fire
711 // Manual selection anchor is reset when manipulating the select programmatically.
903 // Save the selection so it can be compared to the new selection whe
    [all...]
  /cts/tests/src/android/content/cts/
DummyProvider.java 118 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
125 Cursor c = db.query(tbName, projection, selection, selectionArgs, null, null, sortOrder);
165 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
171 int count = db.update(tbName, values, selection, selectionArgs);
182 public int delete(Uri uri, String selection, String[] selectionArgs) {
188 int count = db.delete(tbName, selection, selectionArgs);
  /cts/tests/tests/text/src/android/text/method/cts/
BaseKeyListenerTest.java 22 import android.text.Selection;
47 // Delete the first three letters using a selection.
78 // ALT+DEL deletes the selection only.
92 * 2. Set a selection and press DEL key, the selection is deleted.
128 Selection.setSelection(
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac.h 146 // the selection to |range|. Otherwise does nothing.
157 // Update the field with |display_text| and set the selection.
168 // any selection. Named to be consistent with GTK and Windows,
181 // Places the caret at the given position. This clears any selection.
199 // Selection at the point where the user started using the
216 // Was the delete key pressed with an empty selection at the end of the edit?
autocomplete_edit_view_win.cc 515 CHARRANGE selection; local
516 GetSelection(selection);
517 const int start = std::max(0, static_cast<int>(selection.cpMax - 1));
531 CHARRANGE selection; local
532 GetSelection(selection);
536 State(selection, saved_selection_for_focus_change_)));
571 // Restore user's selection. We do this after restoring the user_text
573 SetSelectionRange(state->view_state.selection);
588 // NOTE: The selection can be longer than the text length if the edit is in
675 CHARRANGE selection; local
686 CHARRANGE selection; local
1649 CHARRANGE selection; local
1895 CHARRANGE selection; local
1946 CHARRANGE selection; local
1955 CHARRANGE selection; local
2009 CHARRANGE selection; local
2536 CHARRANGE selection; local
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.h 59 // |reset_to_default| is true when the selection is being reset back to the
73 // current selection down (|count| > 0) or up (|count| < 0), clamping to the
74 // first or last result if necessary. If |count| == 0, the selection will be
81 // selected line does not have both matches (or there is no selection).
93 const AutocompleteResult::Selection& manually_selected_match() const {
128 AutocompleteResult::Selection manually_selected_match_;
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 73 assertTrue("The CRL should match the selection criteria.", selector
75 assertFalse("The CRL should not match the selection criteria.",
78 assertTrue("The CRL should match the selection criteria.", selector
100 assertTrue("The CRL should match the selection criteria.", selector
102 assertFalse("The CRL should not match the selection criteria.",
110 assertTrue("The CRL should match the selection criteria.", selector
153 assertTrue("The CRL should match the selection criteria.", selector
156 assertFalse("The CRL should not match the selection criteria.",
186 assertTrue("The CRL should match the selection criteria.", selector
189 assertFalse("The CRL should not match the selection criteria."
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 181 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
185 callCursor = mResolver.query(myUri, null, selection, null,
200 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
211 callCursor = mResolver.query(myUri, projection, selection, null,
367 String selection; local
369 selection = recordSelection;
371 selection = "(" + typeSelection + ") AND (" + recordSelection + ")";
374 if (V) Log.v(TAG, "Call log query selection is: " + selection);
376 return composeAndSendVCards(op, selection, vcardType21, null, false)
411 final String selection; local
432 String selection = null; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 107 * Returns true if this event intersects the selection region.
109 boolean eventIntersectsSelection(Event event, Rect selection) {
110 if (event.left < selection.right && event.right >= selection.left
111 && event.top < selection.bottom && event.bottom >= selection.top) {
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
City.java 100 * Get a list of cities given selection.
103 * @param selection A filter declaring which rows to return, formatted as an
106 * @param selectionArgs You may include ?s in selection, which will be
108 * appear in the selection. The values will be bound as Strings.
112 String selection, String... selectionArgs) {
114 selection, selectionArgs, null);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/common/db/
SelectionBuilder.java 38 * Helper for building selection clauses for {@link SQLiteDatabase}.
116 * Append the given selection clause to the internal state. Each clause is
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
127 * <p>User input should never be directly supplied as as part of the selection statement.
128 * Instead, use positional parameters in your selection statement, then pass the user input
140 * @param selection SQL where statement
142 * {@code selection} statement. Will be automatically escaped.
145 public SelectionBuilder where(String selection, String... selectionArgs) {
146 if (TextUtils.isEmpty(selection)) {
149 "Valid selection required when including arguments=")
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 38 * Helper for building selection clauses for {@link SQLiteDatabase}.
116 * Append the given selection clause to the internal state. Each clause is
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
127 * <p>User input should never be directly supplied as as part of the selection statement.
128 * Instead, use positional parameters in your selection statement, then pass the user input
140 * @param selection SQL where statement
142 * {@code selection} statement. Will be automatically escaped.
145 public SelectionBuilder where(String selection, String... selectionArgs) {
146 if (TextUtils.isEmpty(selection)) {
149 "Valid selection required when including arguments=")
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 38 * Helper for building selection clauses for {@link SQLiteDatabase}.
116 * Append the given selection clause to the internal state. Each clause is
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
127 * <p>User input should never be directly supplied as as part of the selection statement.
128 * Instead, use positional parameters in your selection statement, then pass the user input
140 * @param selection SQL where statement
142 * {@code selection} statement. Will be automatically escaped.
145 public SelectionBuilder where(String selection, String... selectionArgs) {
146 if (TextUtils.isEmpty(selection)) {
149 "Valid selection required when including arguments=")
    [all...]
  /frameworks/base/docs/html/training/contacts-provider/
retrieve-details.jd 127 <h3>Define the selection criteria</h3>
129 Define a constant for your selection clause, an array to hold selection arguments, and a
130 variable to hold the selection value. Use
135 // Defines the selection clause
136 private static final String SELECTION = Data.LOOKUP_KEY + " = ?";
140 * Defines a variable to contain the selection value. Once you
148 Using "?" as a placeholder in your selection text expression ensures that the resulting search
224 // Assigns the selection parameter
232 SELECTION,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
help.txt 35 Cut -- Copy a selection into system-wide clipboard,
36 then delete the selection
37 Copy -- Copy selection into system-wide clipboard
43 Find Selection -- Search for the string in the selection
48 Show Completions -- Open a scroll window allowing selection keywords
125 Cut -- Copy a selection into system-wide clipboard,
126 then delete the selection
127 Copy -- Copy selection into system-wide clipboard
134 Cut -- Copy a selection into system-wide clipboard
    [all...]

Completed in 1320 milliseconds

<<11121314151617181920>>