HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 426 - 450 of 836) sorted by null

<<11121314151617181920>>

  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 253 String selection = Sms.ADDRESS + " = ? AND " + Sms.PROTOCOL + " = ?"; local
258 REPLACE_PROJECTION, selection, selectionArgs, null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 63 public static EntitySet fromQuery(ContentResolver resolver, String selection,
66 RawContactsEntity.CONTENT_URI, null, selection, selectionArgs,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
FastScrollingIndexCacheTest.java 85 String selection, String[] selectionArgs, String sortOrder, String countExpression,
88 cache.put(queryUri, selection, selectionArgs, sortOrder, countExpression, bundle);
BaseContactsProvider2Test.java 1179 String selection = null; local
    [all...]
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 125 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
155 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/actions/
DexDumpAction.java 88 public void selectionChanged(IAction action, ISelection selection) {
89 mSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 52 * Removes the layout surrounding the current selection (or if the current selection has
71 ITextSelection selection,
73 super(file, delegate, selection, treeSelection);
90 status.addFatalError("No selection to wrap");
94 // Make sure that the selection all has the same parent?
105 // it's the selection itself which represents the container.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringProposal.java 60 ITextSelection selection = new TextSelection(start, length); local
63 selection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoringTest.java 100 // Test extracting on a range selection inside an element: should extract just
101 // the attributes that overlap the selection
130 // Check extract style on a selection of elements
174 ITextSelection selection = new TextSelection(beginOffset, endOffset - beginOffset); local
176 layoutEditor, selection, null);
  /external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_view_gtk.cc 120 // Copied from GTK+. Called when we lose the primary selection. This will clear
121 // the selection in the text buffer.
427 // If any text has been selected, register it as the PRIMARY selection so it
446 // Move the marks for the cursor and the other end of the selection to the
532 CharRange selection = GetSelection(); local
533 *start = static_cast<size_t>(selection.cp_min);
534 *end = static_cast<size_t>(selection.cp_max);
540 // PRIMARY selection here.
549 // Don't inline autocomplete when the caret/selection isn't at the end of
632 // PRIMARY selection from being changed
1570 CharRange selection = GetSelection(); local
1874 const CharRange selection = GetSelection(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 287 ISelection selection = event.getSelection();
288 if (selection instanceof IStructuredSelection) {
289 IStructuredSelection structSelection = (IStructuredSelection)selection;
316 IStructuredSelection selection =
319 Object first = selection.getFirstElement();
341 IStructuredSelection selection =
344 Object first = selection.getFirstElement();
386 // ignore selection changes during resfreshes in some cases.
391 ISelection selection = event.getSelection();
392 if (selection instanceof IStructuredSelection)
577 ISelection selection = null; local
    [all...]
  /build/
envsetup.sh 465 local selection=
469 selection=aosp_arm-eng
474 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
478 selection=$answer
481 if [ -z "$selection" ]
490 local product=$(echo -n $selection | sed -e "s/-.*$//")
500 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.cc 649 const std::vector<const BookmarkNode*>& selection,
653 if (selection.size() == 1 && selection[0]->is_folder())
654 real_parent = selection[0];
657 if (selection.size() == 1 && selection[0]->is_url()) {
658 *index = real_parent->GetIndexOf(selection[0]) + 1;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
EasyDialogs.py 664 if not rr.validRecord or not rr.selection:
669 return tpwanted(rr.selection[0])
717 if not rr.validRecord or not rr.selection:
722 return tpwanted(rr.selection[0])
725 vrefnum, dirid, name = rr.selection[0].as_tuple()
774 if not rr.validRecord or not rr.selection:
779 return tpwanted(rr.selection[0])
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UIUtils.js 465 var selection = window.getSelection();
466 if (!selection.rangeCount)
469 var selectionRange = selection.getRangeAt(0);
522 selection.removeAllRanges();
523 selection.addRange(finalSelectionRange);
952 // Make a caret selection inside the new element if there isn't a range selection and there isn't already a caret selection inside.
955 var selection = window.getSelection();
956 if (!WebInspector._isTextEditingElement(WebInspector._currentFocusElement) && selection.isCollapsed && !WebInspector._currentFocusElement.isInsertionCaretInside())
    [all...]
SearchableView.js 350 var selection = window.getSelection();
351 if (selection.rangeCount) {
352 var queryCandidate = selection.toString().replace(/\r?\n.*/, "");
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp     [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 1137 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
1188 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
1254 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
1407 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.cc 69 // focus in order for text selection to work.
288 ui::Range selection; local
289 textfield_->GetSelectedRange(&selection);
292 AutocompleteEditState(model_state, ViewState(selection)));
315 // Move the marks for the cursor and the other end of the selection to
421 // Don't inline autocomplete when the caret/selection isn't at the end of
478 // See if the text or selection have changed since OnBeforePossibleChange().
488 // (or typing) the prefix of that selection. (We detect these by making
490 // forward of the old selection start.)
499 // If only selection was changed, we don't need to call |model_|'
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 68 void GetSelectedIndices(GtkTreeSelection* selection, std::set<int>* out) {
70 selection, NULL);
326 gboolean TableAdapter::OnSelectionFilter(GtkTreeSelection* selection,
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.cc 111 std::vector<const BookmarkNode*> selection; local
112 selection.push_back(node);
117 bookmark_utils::OpenAll(parent_, profile_, page_navigator_, selection,
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_tree.cc 70 void GetSelectedIndices(GtkTreeSelection* selection, std::set<int>* out) {
72 selection, NULL);
328 gboolean TableAdapter::OnSelectionFilter(GtkTreeSelection* selection,
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_menu_delegate.cc 136 std::vector<const BookmarkNode*> selection; local
137 selection.push_back(node);
139 chrome::OpenAll(parent_->GetNativeWindow(), page_navigator_, selection,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp 250 document().frame()->selection().revealSelection();
296 // selectionLength represents the selection length of this text field to be
299 // selection length. The selection is the source of text drag-and-drop in
301 unsigned selectionLength = focused() ? computeLengthForSubmission(plainText(document().frame()->selection().selection().toNormalizedRange().get())) : 0;

Completed in 2899 milliseconds

<<11121314151617181920>>