Searched refs:selection (Results 201 - 225 of 338) sorted by relevance

1234567891011>>

/external/chromium_org/ui/gfx/
H A Drender_text_win.cc592 const SelectionModel& selection,
596 size_t run_index = GetRunContainingCaret(selection);
600 if (edge.caret_pos() == selection.caret_pos())
608 size_t caret = selection.caret_pos();
636 const SelectionModel& selection,
645 return selection;
649 pos = std::min(selection.caret_pos() + 1, text().length());
652 if (iter.IsWord() && pos > selection.caret_pos())
660 pos = std::max<int>(selection.caret_pos() - 1, 0);
664 if (begin == selection
591 AdjacentCharSelectionModel( const SelectionModel& selection, VisualCursorDirection direction) argument
635 AdjacentWordSelectionModel( const SelectionModel& selection, VisualCursorDirection direction) argument
[all...]
H A Drender_text_unittest.cc55 return render_text->text().substr(render_text->selection().GetMin(),
56 render_text->selection().length());
326 SelectionModel selection = render_text->FindCursorPosition(Point(x, 0)); local
327 EXPECT_TRUE(selection.caret_pos() == 0U || selection.caret_pos() == 2U);
945 // Test that selection bounds may be set amid multi-character graphemes.
959 EXPECT_EQ(Range(2, 1), render_text->selection());
961 // Although selection bounds may be set within a multi-character grapheme,
1046 // Test that an empty string produces an empty selection model.
1068 EXPECT_EQ(Range(6), render_text->selection());
[all...]
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DTestContentProvider.java98 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
183 public Cursor query(Uri uri, String[] projection, String selection, argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditor.h296 inline void Editor::setMark(const VisibleSelection& selection) argument
298 m_mark = selection;
H A DInsertTextCommand.cpp71 // so we are basically treating ending selection as a range to avoid validation.
129 // Delete the current selection.
142 if (EditingStyle* typingStyle = document().frame()->selection().typingStyle())
220 if (RefPtrWillBeRawPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle()) {
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraph.h194 virtual void visitArgument(TGraphArgument* selection) {}; argument
196 virtual void visitSelection(TGraphSelection* selection) {}; argument
H A DDependencyGraphBuilder.cpp208 TGraphSelection *selection = mGraph->createSelection(intermSelection); local
209 connectMultipleNodesToSingleNode(conditionNodes, selection);
/external/chromium_org/ui/webui/resources/css/
H A Dlist.css115 list > .drag-selection-border {
/external/stlport/test/eh/
H A Dintel45.mak56 #Library selection should be BEFORE debug processing!!!
/external/chromium_org/components/search_engines/
H A Dtemplate_url.h79 // TODO(jeremycho): Remove base_page_url and selection parameters once
82 const std::string& selection,
89 const std::string& selection,
99 // Offset into the page content of the start of the user selection.
102 // Offset into the page content of the end of the user selection.
105 // The user selection.
106 std::string selection; member in struct:TemplateURLRef::SearchTermsArgs::ContextualSearchParams
108 // The text including and surrounding the user selection.
111 // The URL of the page containing the user selection.
118 // selection an
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextAreaElement.cpp248 document().frame()->selection().revealSelection();
298 // selectionLength represents the selection length of this text field to be
301 // selection length. The selection is the source of text drag-and-drop in
306 document().frame()->selection().selection().toNormalizedPositions(start, end);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DSearchableView.js377 var selection = window.getSelection();
378 if (selection.rangeCount)
379 queryCandidate = selection.toString().replace(/\r?\n.*/, "");
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp932 Element* root = toLocalFrame(frame)->selection().rootEditableElementOrDocumentElement();
936 // If the selection is inside a form control, the root will be a <div> that
2112 if (element && localFrame->selection().selection().isNone()) {
2113 // If the selection was cleared while the WebView was not
2120 // contentseditable DIVs. So we set the selection explicitly
2124 localFrame->selection().setSelection(VisibleSelection(position, SEL_DEFAULT_AFFINITY));
2203 // selectionStart and selectionEnd, WebKit somehow won't paint the selection
2205 // But the selection range actually takes effect.
2250 Element* editable = focused->selection()
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentResolver.java118 public final Cursor query(Uri uri, String[] projection, String selection, argument
122 return provider.query(uri, projection, selection, selectionArgs, sortOrder);
129 returnCursor.setQuery(uri, projection, selection, selectionArgs,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Druler_track.js348 * Adds items intersecting the given range to a selection.
357 * @param {Selection} selection Selection to which to add hits.
360 loVX, hiVX, loY, hiY, selection) {
365 addAllObjectsMatchingFilterToSelection: function(filter, selection) {
/external/chromium_org/chrome/browser/ui/cocoa/content_settings/
H A Dcollected_cookies_mac.h147 // Given an array of selected NSTreeNode objects, normalizes the selection so
149 + (NSArray*)normalizeNodeSelection:(NSArray*)selection;
/external/chromium_org/chrome/browser/ui/views/
H A Ddesktop_media_picker_views.cc512 DesktopMediaSourceView* selection = list_view_->GetSelection(); local
515 DCHECK(selection);
518 if (selection)
519 source = selection->source_id();
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalFrame.cpp356 return selection().selectedText();
361 return selection().selectedTextForClipboard();
672 if (!selection().isRange())
679 IntRect paintingRect = enclosingIntRect(selection().bounds());
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_aurax11.h37 // |x_window| is the window the cursor is over, and |selection| is the set of
40 const SelectionFormatMap& selection);
53 // selection.
137 // to |selection_owner_| when we take the selection.
/external/chromium_org/win8/metro_driver/
H A Dfile_picker_ash.cc178 const wchar_t* selection = result.c_str(); local
181 while (*selection) { // Empty string indicates end of list.
182 files.push_back(base::FilePath(selection));
184 selection += files.back().value().length() + 1;
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_context_menu_controller.cc43 const std::vector<const BookmarkNode*>& selection)
50 selection_(selection),
405 // Paste to selection from the Bookmark Bar, to parent_ everywhere else
36 BookmarkContextMenuController( gfx::NativeWindow parent_window, BookmarkContextMenuControllerDelegate* delegate, Browser* browser, Profile* profile, PageNavigator* navigator, const BookmarkNode* parent, const std::vector<const BookmarkNode*>& selection) argument
/external/chromium_org/ppapi/tests/
H A Dtest_ime_input_event.cc145 std::make_pair(0U, 0U) // selection
153 const std::pair<uint32_t, uint32_t>& selection) {
161 selection
174 std::make_pair(0U, 0U) // selection
186 std::make_pair(0U, 0U) // selection
149 CreateImeCompositionUpdateEvent( const std::string& text, const std::vector<uint32_t>& segments, int32_t target_segment, const std::pair<uint32_t, uint32_t>& selection) argument
/external/chromium_org/ui/base/x/
H A Dselection_owner.cc39 // The amount of time to wait for the selection requestor to process the data
40 // sent by the selection owner before aborting an incremental data transfer.
111 // If we are the selection owner, we need to release the selection so we
130 // The X server agrees that we are the selection owner. Commit our data.
145 // Incrementally build our selection. By default this is a refusal, and we'll
150 reply.xselection.selection = event.xselectionrequest.selection;
248 // the size of X requests. Notify the selection requestor that the data
260 // Wait for the selection requesto
[all...]

Completed in 783 milliseconds

1234567891011>>