HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 276 - 300 of 507) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 409 // Collapse the selection without clearing it
411 frame->selection()->setBase(frame->selection()->extent(), frame->selection()->affinity());
425 if (!targetFrame->selection()->isRange())
429 dataObject->setRange(targetFrame->selection()->toNormalizedRange());
441 g_signal_emit_by_name(m_webView, "selection-changed");
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
AllocationPanel.java 413 sash.addListener(SWT.Selection, new Listener() {
507 mStackTracePanel.setViewerInput(null); // always empty on client selection change.
526 // get the current selection in the ThreadTable
553 * Returns the current allocation selection or <code>null</code> if none is found.
555 * selection is returned, otherwise, the <code>ISelection</code> returned by
557 * @param selection the {@link ISelection} to use, or <code>null</code>
559 private AllocationInfo getAllocationSelection(ISelection selection) {
560 if (selection == null) {
561 selection = mAllocationViewer.getSelection();
564 if (selection instanceof IStructuredSelection)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js 100 "", "first-line", "first-letter", "before", "after", "selection", "", "-webkit-scrollbar", "-webkit-file-upload-button",
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 278 ISelection selection = event.getSelection();
279 if (selection instanceof IStructuredSelection) {
280 IStructuredSelection structSelection = (IStructuredSelection)selection;
307 IStructuredSelection selection =
310 Object first = selection.getFirstElement();
332 IStructuredSelection selection =
335 Object first = selection.getFirstElement();
376 // ignore selection changes during resfreshes in some cases.
381 ISelection selection = event.getSelection();
382 if (selection instanceof IStructuredSelection)
565 ISelection selection = null; local
    [all...]
  /build/
envsetup.sh 427 local selection=
431 selection=full-eng
436 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
440 selection=$answer
443 if [ -z "$selection" ]
452 local product=$(echo -n $selection | sed -e "s/-.*$//")
462 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
  /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;
bookmark_utils.h 201 // Returns the parent for newly created folders/bookmarks. If |selection| has
202 // one element and it is a folder, |selection[0]| is returned, otherwise
207 const std::vector<const BookmarkNode*>& selection,
  /frameworks/base/core/java/android/webkit/
WebTextView.java 39 import android.text.Selection;
103 // Whether or not a selection change was generated from webkit. If it was,
104 // we do not need to pass the selection back to webkit.
106 // Whether or not a selection change was generated from the WebTextView
108 // selection comes from the MovementMethod, but we behave differently. If
110 // selection.
112 // Whether or not a selection change was generated from setInputType. We
296 int oldStart = Selection.getSelectionStart(text);
297 int oldEnd = Selection.getSelectionEnd(text);
349 // If we are at max length, and there is a selection rather than
919 int selection = mSingle ? text.length() : 0; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceExplorer.java 139 * selection
204 // setup a listener for selection
216 IStructuredSelection selection = (IStructuredSelection) sel;
217 Object element = selection.getFirstElement();
222 mPushAction.setEnabled(selection.size() == 1);
223 if (selection.size() == 1) {
241 IStructuredSelection selection = (IStructuredSelection) sel;
243 if (selection.size() == 1) {
244 FileEntry entry = (FileEntry)selection.getFirstElement();
484 * Pull the current selection on the local drive. This method display
    [all...]
  /external/webkit/Source/WebCore/page/
ContextMenuController.cpp 280 if (frame->editor()->shouldInsertText(item->title(), frame->selection()->toNormalizedRange().get(), EditorInsertActionPasted)) {
284 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
321 RefPtr<Range> selectedRange = frame->selection()->toNormalizedRange();
626 for (TextIterator it(frame->selection()->toNormalizedRange().get()); !it.atEnd(); it.advance()) {
831 SelectionController* selection = frame->selection(); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 194 * @param selection as with a query call
198 static public int count(Context context, Uri uri, String selection, String[] selectionArgs) {
200 uri, COUNT_COLUMNS, selection, selectionArgs, null, 0, Long.valueOf(0)).intValue();
204 * Same as {@link #count(Context, Uri, String, String[])} without selection.
599 * Selection for messages that are loaded
619 /** Selection to retrieve all messages in "inbox" for any account */
627 /** Selection to retrieve all messages in "drafts" for any account */
635 /** Selection to retrieve all messages in "outbox" for any account */
642 /** Selection to retrieve unread messages in "inbox" for any account */
646 /** Selection to retrieve unread messages in "inbox" for one account *
990 final StringBuilder selection = new StringBuilder(); local
998 final StringBuilder selection = new StringBuilder(); 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/webkit/Source/WebCore/editing/
Editor.h 293 void confirmComposition(const String&); // if no existing composition, replaces selection
342 Node* findEventTargetFrom(const VisibleSelection& selection) const;
448 inline void Editor::setMark(const VisibleSelection& selection)
450 m_mark = selection;
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp 158 // This keeps track of the editable block that the selection was in (if it was in one) just before the link was clicked
160 if (event->type() == eventNames().mousedownEvent && event->isMouseEvent() && static_cast<MouseEvent*>(event)->button() != RightButton && document()->frame() && document()->frame()->selection()) {
161 m_rootEditableElementForSelectionOnMouseDown = document()->frame()->selection()->rootEditableElement();
191 // Don't set the link to be active if the current selection is in the same editable block as
194 if (down && document()->frame() && document()->frame()->selection()->rootEditableElement() == rootEditableElement())
519 // If the selection prior to clicking on this link resided in the same editable block as this link,
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 201 return m_impl->frame->selection()->toNormalizedRange()->toHTML();
209 return m_impl->frame->selection()->toNormalizedRange()->text();
217 return wxWebKitSelection(m_impl->frame->selection());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 343 if (RefPtr<Range> range = frame->editor()->hasComposition() ? frame->editor()->compositionRange() : frame->selection()->selection().toNormalizedRange()) {
355 RefPtr<Range> selectedRange = frame->selection()->toNormalizedRange();
  /frameworks/base/media/java/android/media/
RingtoneManager.java 571 String selection,
575 return mActivity.managedQuery(uri, projection, selection, selectionArgs, sortOrder);
577 return mContext.getContentResolver().query(uri, projection, selection, selectionArgs,
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
LocalDataTest.java 410 String selection, String[] selectionArgs, String sortOrder) {
426 Log.v(TAG, "query = " + qb.buildQuery(projection, selection,
435 Cursor c = qb.query(mDatabase, projection, selection,
  /packages/apps/Phone/src/com/android/phone/
SipCallOptionHandler.java 313 String selection = getResources().getStringArray( local
315 if (DBG) Log.v(TAG, "User pick phone " + selection);
316 if (selection.equals(getString(R.string.internet_phone))) {
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 1048 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " + local
1091 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
1151 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " local
1282 String selection = EmailContent.MessageColumns.ACCOUNT_KEY + "=? AND " + local
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityRenderObject.cpp 2016 VisibleSelection AccessibilityRenderObject::selection() const function in class:WebCore::AccessibilityRenderObject
2457 SelectionController selection; local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java     [all...]

Completed in 581 milliseconds

<<11121314151617181920>>