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

<<11121314151617181920>>

  /packages/apps/Calendar/src/com/android/calendar/
AllInOneMenuExtensionsInterface.java 33 * Handle selection of the additional options.
  /packages/apps/Contacts/src/com/android/contacts/list/
OnMultiplePhoneNumberPickerActionListener.java 31 * Closes the picker without changing the selection.
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 60 final String selection; local
63 selection = BASE_SELECTION + " AND " + RawContacts.DATA_SET + " IS NULL";
66 selection = BASE_SELECTION + " AND " + RawContacts.DATA_SET + " = ?";
71 ID_PROJECTION, selection, args, null);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 117 String selection, String[] selectionArgs) {
121 .withSelection(selection, selectionArgs)
130 public void run(ContentResolver resolver, Uri uri, String selection,
134 .withSelection(selection, selectionArgs)
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SqlInjectionDetectionTest.java 98 final String selection, final String sortOrder) {
99 final Cursor c = mResolver.query(uri, projection, selection, null, sortOrder);
104 final String[] projection, final String selection, final String sortOrder) {
108 final Cursor c = mResolver.query(uri, projection, selection, null, sortOrder);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchShortcut.java 45 public void launch(ISelection selection, String mode) {
46 if (selection instanceof IStructuredSelection) {
49 IStructuredSelection structSelect = (IStructuredSelection)selection;
84 // since we force the shortcut to only work on selection in the
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java 74 addEvents(m_arrow, m_arrowListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut});
85 addEvents(m_table, m_tableListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut});
191 // check for keyboard navigation and selection
232 case SWT.Selection : {
242 case SWT.Selection : {
249 // send selection event
263 * Sends selection event.
269 notifyListeners(SWT.Selection, e);
302 addListener(SWT.Selection, typedListener);
362 // scroll to selection if neede
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentResolverTest.java 158 String selection = "select"; local
165 Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder);
169 assertThat(testCursor.selection, equalTo(selection));
325 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
331 @Override public int delete(Uri uri, String selection, String[] selectionArgs) {
334 @Override public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
358 public String selection; field in class:ContentResolverTest.QueryParamTrackingTestCursor
363 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
366 this.selection = selection
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /external/chromium/chrome/browser/ui/
shell_dialogs.h 58 // Notifies the Listener that a file/folder selection has been made. The
70 // Notifies the Listener that the file/folder selection was aborted (via
71 // the user canceling or closing the selection dialog box, for example).
108 // associated with this object will be notified when the selection is
124 // where the InfoBar should be shown in case file-selection dialogs are
150 // Displays the actual file-selection dialog.
163 // The listener to be notified of selection completion.
167 // Tests if the file selection dialog can be displayed by
shell_dialogs_unittest.cc 72 // file-selection dialogs disabled by policy.
84 // Disallow file-selection dialogs.
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
process_track.js 58 loWX, hiWX, viewPixWidthWorld, selection) {
60 var hit = selection.addSlice(this, instantEvent);
  /external/chromium_org/ash/wm/overview/
window_selector_controller.h 53 // Returns true if window selection mode is active.
63 // Dispatched when window selection begins.
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk_unittest.cc 51 std::string selection(reinterpret_cast<char*>(data.data), data.length);
52 EXPECT_EQ("<a href=\"http://www.google.com/\">Google</a>", selection);
  /external/chromium_org/ppapi/cpp/
text_input_controller.h 52 /// selection and surrounding text.
61 /// <code>text</code>. If there is no selection, this value should be equal to
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 88 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements, bool sanitizeMarkup)
89 : CompositeEditCommand(*selection.start().document())
99 , m_selectionToDelete(selection)
116 // but in these cases, we want to delete it, so manually expand the selection
201 // Usually the start and the end of the selection to delete are pulled together as a result of the deletion.
212 // that such a selection actually ends at the start of the next paragraph. This matches TextEdit behavior
214 // Only apply this rule if the endingSelection is a range selection. If it is a caret, then other operations have created
215 // the selection we're deleting (like the process of creating a selection to delete during a backspace), and the user isn't in the situation described above.
223 // Handle leading and trailing whitespace, as well as smart delete adjustments to the selection
    [all...]
SetSelectionCommand.h 36 static PassRefPtr<SetSelectionCommand> create(const VisibleSelection& selection, FrameSelection::SetSelectionOptions options)
38 return adoptRef(new SetSelectionCommand(selection, options));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderOperationBuilder.java 32 public Builder withSelection(String selection, String[] selectionArgs) {
33 shadowContentProviderOperation.getSelections().put(selection, selectionArgs);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
  /frameworks/support/v4/java/android/support/v4/database/
DatabaseUtilsCompat.java 46 * Appends one set of selection args to another. This is useful when adding a selection
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandler.java 36 public void startQuery(int token, Object cookie, Uri uri, String[] projection, String selection,
39 super.startQuery(token, projectionCookie, uri, projection, selection, selectionArgs,
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 47 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the
52 * delete() and update() do not allow non-null selection or selectionArgs arguments; the
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/apps/Settings/src/com/android/settings/
SelectableEditTextPreference.java 40 * Sets the selection mode for the text when it shows up in the dialog
54 // Set the selection based on the mSelectionMode

Completed in 1243 milliseconds

<<11121314151617181920>>