Searched defs:setSelection (Results 1 - 25 of 45) sorted by relevance

12

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImplMac.java51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { method in class:ButtonPropertyEditorPresentationImplMac
H A DButtonPropertyEditorPresentation.java58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { method in class:ButtonPropertyEditorPresentation
59 m_impl.setSelection(propertyTable, property, selected);
H A DButtonPropertyEditorPresentationImpl.java82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) { method in class:ButtonPropertyEditorPresentationImpl
85 button.setSelection(selected);
/external/llvm/lib/MC/
H A DMCSectionCOFF.cpp33 void MCSectionCOFF::setSelection(int Selection) const { function in class:MCSectionCOFF
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAbsSpinner.java27 public void setSelection(int position, boolean animate) { method in class:ShadowAbsSpinner
28 super.setSelection(position);
H A DShadowEditText.java51 public void setSelection(int index) { method in class:ShadowEditText
52 super.setSelection(index);
57 public void setSelection(int start, int end) { method in class:ShadowEditText
58 super.setSelection(start, end);
H A DShadowCursorLoader.java58 public void setSelection(String selection) { method in class:ShadowCursorLoader
H A DShadowAdapterView.java46 setSelection(0);
227 public void setSelection(final int position) { method in class:ShadowAdapterView
H A DShadowTextView.java488 public void setSelection(int index) { method in class:ShadowTextView
489 setSelection(index, index);
492 public void setSelection(int start, int end) { method in class:ShadowTextView
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelectionTest.cpp33 void setSelection(const VisibleSelection&);
58 void FrameSelectionTest::setSelection(const VisibleSelection& newSelection) function in class:__anon11062::FrameSelectionTest
60 m_dummyPageHolder->frame().selection().setSelection(newSelection);
72 setSelection(validSelection);
90 setSelection(invalidSelection);
100 setSelection(validSelection);
124 setSelection(validSelection);
H A DVisibleSelectionTest.cpp45 void setSelection(int base) { setSelection(base, base); } function in class:blink::VisibleSelectionTest
48 void setSelection(int base, int extend) function in class:blink::VisibleSelectionTest
76 setSelection(0);
91 setSelection(0);
102 setSelection(8);
115 setSelection(5);
128 setSelection(26);
139 setSelection(27);
150 setSelection(
[all...]
H A DFrameSelection.h106 void setSelection(const VisibleSelection&, SetSelectionOptions = CloseTyping | ClearTypingStyle, CursorAlignOnScroll = AlignCursorOnScrollIfNeeded, TextGranularity = CharacterGranularity);
107 void setSelection(const VisibleSelection& selection, TextGranularity granularity) { setSelection(selection, CloseTyping | ClearTypingStyle, AlignCursorOnScrollIfNeeded, granularity); } function in class:blink::FINAL
H A DFrameSelection.cpp138 setSelection(VisibleSelection(pos.deepEquivalent(), pos.deepEquivalent(), pos.affinity(), m_selection.isDirectional()), options, align);
145 setSelection(VisibleSelection(base.deepEquivalent(), extent.deepEquivalent(), base.affinity(), selectionHasDirection), options);
151 setSelection(VisibleSelection(pos, affinity, m_selection.isDirectional()), options);
218 setSelection(newSelection, granularity);
221 void FrameSelection::setSelection(const VisibleSelection& newSelection, SetSelectionOptions options, CursorAlignOnScroll align, TextGranularity granularity) function in class:blink::FrameSelection
236 // <http://bugs.webkit.org/show_bug.cgi?id=23464>: Infinite recursion at FrameSelection::setSelection
242 document.frame()->selection().setSelection(s, options, align, granularity);
375 setSelection(VisibleSelection(), DoNotSetFocus);
475 setSelection(newSelection, DoNotSetFocus);
942 trialFrameSelection->setSelection(m_selectio
[all...]
/external/llvm/include/llvm/CodeGen/PBQP/
H A DSolution.h75 void setSelection(GraphBase::NodeId nodeId, unsigned selection) { function in class:PBQP::Solution
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
H A Dpreview_panel.js190 PreviewPanel.prototype.setSelection = function(selection) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DAdapterInputConnection.java124 Selection.setSelection(mEditable, outAttrs.initialSelStart, outAttrs.initialSelEnd);
171 Selection.setSelection(mEditable, selectionStart, selectionEnd);
431 * @see BaseInputConnection#setSelection(int, int)
434 public boolean setSelection(int start, int end) { method in class:AdapterInputConnection
435 if (DEBUG) Log.w(TAG, "setSelection [" + start + " " + end + "]");
438 super.setSelection(start, end);
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Dtraverse_util.js109 TraverseUtil.setSelection = function(start, end) {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dtraverse_util.js78 cvox.TraverseUtil.setSelection = function(start, end) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCSpinner.java124 m_spinner.setSelection(25);
140 m_spinner.setSelection(25);
210 setSelection(Math.max(m_value, m_minimum));
218 setSelection(Math.min(m_value, m_maximum));
234 public void setSelection(int newValue) { method in class:CSpinner
278 setSelection(newValue);
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DImeTest.java128 setSelection(mConnection, 2, 5);
256 setSelection(mConnection, 1, 5);
281 setSelection(mConnection, 3, 5);
341 setSelection(mConnection, 1, 1);
856 private void setSelection(final AdapterInputConnection connection, final int start, method in class:ImeTest
861 connection.setSelection(start, end);
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.h286 STDMETHODIMP setSelection(LONG selection_index, function
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderView.cpp528 void RenderView::setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionPaintInvalidationMode blockPaintInvalidationMode) function in class:blink::RenderView
703 setSelection(0, -1, 0, -1, PaintInvalidationNewMinusOld);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DCountersGraph.js263 setSelection: function(selection)
H A DTimelineFlameChart.js852 setSelection: function(selection)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTable.java1006 public void setSelection(ISelection selection) { method in class:PropertyTable

Completed in 1972 milliseconds

12