Home
last modified time | relevance | path

Searched refs:selEnd (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/dports/editors/nedit/nedit-5.7/source/
H A Dshift.c94 selEnd = BufEndOfLine(buf, cursorPos); in ShiftSelection()
95 if (selEnd < buf->length) in ShiftSelection()
96 selEnd++; in ShiftSelection()
97 BufSelect(buf, selStart, selEnd); in ShiftSelection()
110 if (selEnd != 0 && BufGetCharacter(buf, selEnd-1) != '\n') { in ShiftSelection()
111 selEnd = BufEndOfLine(buf, selEnd); in ShiftSelection()
112 if (selEnd < buf->length) in ShiftSelection()
113 selEnd++; in ShiftSelection()
115 BufSelect(buf, selStart, selEnd); in ShiftSelection()
116 text = BufGetRange(buf, selStart, selEnd); in ShiftSelection()
[all …]
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/tracker/
H A DPatternEditorTools.h219 Position selStart = selectionStart, selEnd = selectionEnd; in flattenSelection() local
224 selEnd.channel = selectionStart.channel; in flattenSelection()
226 selEnd.inner = selectionStart.inner; in flattenSelection()
231 selEnd.channel = selectionEnd.channel; in flattenSelection()
233 selEnd.inner= selectionEnd.inner; in flattenSelection()
236 if (selStart.channel == selEnd.channel && selEnd.inner < selStart.inner) in flattenSelection()
238 mp_sint32 h = selEnd.inner; in flattenSelection()
239 selEnd.inner = selStart.inner; in flattenSelection()
246 selEnd.row = selectionStart.row; in flattenSelection()
251 selEnd.row = selectionEnd.row; in flattenSelection()
[all …]
H A DSampleEditor.h173 pp_int32 selEnd = selectionEnd < selectionStart ? selectionStart : selectionEnd; in getLogicalSelectionEnd() local
175 if (selEnd < 0) in getLogicalSelectionEnd()
176 selEnd = 0; in getLogicalSelectionEnd()
177 if (selEnd > getSampleLen()) in getLogicalSelectionEnd()
178 selEnd = getSampleLen(); in getLogicalSelectionEnd()
179 return selEnd; in getLogicalSelectionEnd()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DAutocompleteState.java26 public AutocompleteState(String userText, String autocompleteText, int selStart, int selEnd) { in AutocompleteState() argument
27 set(userText, autocompleteText, selStart, selEnd); in AutocompleteState()
30 public void set(String userText, String autocompleteText, int selStart, int selEnd) { in set() argument
34 mSelEnd = selEnd; in set()
66 public void setSelection(int selStart, int selEnd) { in setSelection() argument
68 mSelEnd = selEnd; in setSelection()
H A DAutocompleteEditTextModel.java137 public void onSelectionChanged(int selStart, int selEnd) { in onSelectionChanged() argument
138 if (DEBUG) Log.i(TAG, "onSelectionChanged -- selStart: %d, selEnd: %d", selStart, selEnd); in onSelectionChanged()
141 if (validateSelection(selStart, selEnd)) { in onSelectionChanged()
159 private boolean validateSelection(int selStart, int selEnd) {
166 selStart, selEnd, spanStart, spanEnd);
169 if (spanStart >= 0 && (spanStart != selStart || spanEnd != selEnd)) {
183 if (selEnd <= spanStart
503 int selEnd = mDelegate.getSelectionEnd(); in updateSelectionForTesting() local
504 if (selStart == mLastUpdateSelStart && selEnd == mLastUpdateSelEnd) return; in updateSelectionForTesting()
507 mLastUpdateSelEnd = selEnd; in updateSelectionForTesting()
[all …]
/dports/games/dhewm3/dhewm3-1.5.1/neo/tools/comafx/
H A DCSyntaxRichEditCtrl.cpp1043 long selStart, selEnd; in AutoCompleteInsertText() local
1063 long selStart, selEnd; in AutoCompleteUpdate() local
1155 long selStart, selEnd; in BracedSectionStart() local
1187 long selStart, selEnd; in BracedSectionEnd() local
1283 long selStart, selEnd; in GetNameBeforeCurrentSelection() local
1515 long selStart, selEnd; in OnKeyDown() local
1614 long selStart, selEnd; in OnChar() local
1634 long selStart, selEnd; in OnChar() local
1648 long selStart, selEnd; in OnChar() local
1861 long selStart, selEnd; in OnChange() local
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/
H A DCustomEditText.java44 public void onSelectionChanged(int selStart, int selEnd); in onSelectionChanged() argument
52 protected void onSelectionChanged(int selStart, int selEnd) { in onSelectionChanged() argument
54 mOnSelectionChangedListener.onSelectionChanged(selStart, selEnd); in onSelectionChanged()
56 super.onSelectionChanged(selStart, selEnd); in onSelectionChanged()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/
H A DCustomEditText.java44 public void onSelectionChanged(int selStart, int selEnd); in onSelectionChanged() argument
52 protected void onSelectionChanged(int selStart, int selEnd) { in onSelectionChanged() argument
54 mOnSelectionChangedListener.onSelectionChanged(selStart, selEnd); in onSelectionChanged()
56 super.onSelectionChanged(selStart, selEnd); in onSelectionChanged()
/dports/audio/audacity/audacity-Audacity-3.1.3/lib-src/libnyquist/nyquist/sys/mac/
H A Dmacdrag.c36 short selStart, selEnd; in DragText() local
53 selEnd = (**hTERec).selEnd; in DragText()
60 err = AddDragItemFlavor(dragRef, 1, 'TEXT', *hText + selStart, selEnd - selStart, 0); in DragText()
/dports/games/openspades/openspades-0.1.3/Resources/Scripts/Gui/Client/
H A DFieldWithHistory.as27 int selEnd;
29 CommandHistoryItem(string text, int selStart, int selEnd) {
32 this.selEnd = selEnd;
56 this.Select(value.selStart, value.selEnd - value.selStart);
/dports/lang/python-legacy/Python-2.7.18/Mac/Modules/
H A Dicgluemodule.c242 long selStart, selEnd; in ici_ICParseURL() local
246 &selStart, &selEnd, ResObj_Convert, &h)) in ici_ICParseURL()
249 &selStart, &selEnd, h)) != 0 ) in ici_ICParseURL()
251 return Py_BuildValue("ii", (int)selStart, (int)selEnd); in ici_ICParseURL()
266 long selStart, selEnd; in ici_ICLaunchURL() local
269 &selStart, &selEnd)) in ici_ICLaunchURL()
272 &selStart, &selEnd)) != 0 ) in ici_ICLaunchURL()
274 return Py_BuildValue("ii", (int)selStart, (int)selEnd); in ici_ICLaunchURL()
/dports/lang/python27/Python-2.7.18/Mac/Modules/
H A Dicgluemodule.c242 long selStart, selEnd; in ici_ICParseURL() local
246 &selStart, &selEnd, ResObj_Convert, &h)) in ici_ICParseURL()
249 &selStart, &selEnd, h)) != 0 ) in ici_ICParseURL()
251 return Py_BuildValue("ii", (int)selStart, (int)selEnd); in ici_ICParseURL()
266 long selStart, selEnd; in ici_ICLaunchURL() local
269 &selStart, &selEnd)) in ici_ICLaunchURL()
272 &selStart, &selEnd)) != 0 ) in ici_ICLaunchURL()
274 return Py_BuildValue("ii", (int)selStart, (int)selEnd); in ici_ICLaunchURL()
/dports/graphics/azpainter/azpainter-2.1.7/mlib/src/private/
H A DmEditTextBuf.c365 return (p->selTop != -1 && p->selTop <= pos && pos < p->selEnd); in mEditTextBuf_isSelectAtPos()
560 p->selEnd = p->textLen; in mEditTextBuf_selectAll()
573 mEditTextBuf_deleteText(p, p->selTop, p->selEnd - p->selTop); in mEditTextBuf_deleteSelText()
646 p->selTop = pos, p->selEnd = p->curPos; in mEditTextBuf_expandSelect()
648 p->selTop = p->curPos, p->selEnd = pos; in mEditTextBuf_expandSelect()
659 p->selEnd = pos; in mEditTextBuf_expandSelect()
663 if(pos > p->selEnd) in mEditTextBuf_expandSelect()
664 p->selEnd = pos; in mEditTextBuf_expandSelect()
669 if(p->selTop == p->selEnd) in mEditTextBuf_expandSelect()
714 p->selEnd - p->selTop, &len); in mEditTextBuf_copy()
[all …]
/dports/graphics/azpainterb/azpainterb-1.1.3/mlib/src/private/
H A DmEditTextBuf.c365 return (p->selTop != -1 && p->selTop <= pos && pos < p->selEnd); in mEditTextBuf_isSelectAtPos()
560 p->selEnd = p->textLen; in mEditTextBuf_selectAll()
573 mEditTextBuf_deleteText(p, p->selTop, p->selEnd - p->selTop); in mEditTextBuf_deleteSelText()
646 p->selTop = pos, p->selEnd = p->curPos; in mEditTextBuf_expandSelect()
648 p->selTop = p->curPos, p->selEnd = pos; in mEditTextBuf_expandSelect()
659 p->selEnd = pos; in mEditTextBuf_expandSelect()
663 if(pos > p->selEnd) in mEditTextBuf_expandSelect()
664 p->selEnd = pos; in mEditTextBuf_expandSelect()
669 if(p->selTop == p->selEnd) in mEditTextBuf_expandSelect()
714 p->selEnd - p->selTop, &len); in mEditTextBuf_copy()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/public/test/android/javatests/src/org/chromium/content_public/browser/test/util/
H A DTestInputMethodManagerWrapper.java124 View view, int selStart, int selEnd, int candidatesStart, int candidatesEnd) { in updateSelection() argument
125 Log.d(TAG, "updateSelection: [%d %d] [%d %d]", selStart, selEnd, candidatesStart, in updateSelection()
128 new Pair<>(new Range(selStart, selEnd), new Range(candidatesStart, candidatesEnd)); in updateSelection()
139 new Range(selStart, selEnd), new Range(candidatesStart, candidatesEnd))); in updateSelection()
140 mSelection.set(selStart, selEnd); in updateSelection()
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/
H A DGeckoInputConnection.java193 final int selEnd = Selection.getSelectionEnd(editable); in performContextMenuAction() local
201 if (selStart == selEnd) { in performContextMenuAction()
207 editable.subSequence(Math.min(selStart, selEnd), in performContextMenuAction()
208 Math.max(selStart, selEnd))); in performContextMenuAction()
209 editable.delete(selStart, selEnd); in performContextMenuAction()
220 final String copiedText = selStart == selEnd ? "" : in performContextMenuAction()
222 Math.min(selStart, selEnd), in performContextMenuAction()
223 Math.max(selStart, selEnd)); in performContextMenuAction()
260 final int selEnd = Selection.getSelectionEnd(editable); in getExtractedText() local
267 extract.selectionEnd = selEnd; in getExtractedText()
H A DGeckoEditable.java392 Selection.setSelection(mShadowText, selStart, selEnd); in syncShadowText()
793 int selEnd = Selection.getSelectionEnd(sequence); in icMaybeSendComposition() local
816 if (useEntireText && (selStart < 0 || selEnd < 0)) { in icMaybeSendComposition()
818 selEnd = composingEnd; in icMaybeSendComposition()
866 if (selEnd >= composingStart && selEnd <= composingEnd) { in icSendComposition()
868 selEnd - composingStart, selEnd - composingStart, in icSendComposition()
888 } else if (selEnd > rangeStart && selEnd < rangeEnd) { in icSendComposition()
889 rangeEnd = selEnd; in icSendComposition()
1031 if (selStart == selEnd) { in sendKeyEvent()
1349 mText.currentSetSelection(selStart, selEnd); in geckoActionReply()
[all …]
/dports/www/firefox/firefox-99.0/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/
H A DGeckoInputConnection.java195 final int selEnd = Selection.getSelectionEnd(editable); in performContextMenuAction() local
203 if (selStart == selEnd) { in performContextMenuAction()
210 editable.subSequence(Math.min(selStart, selEnd), Math.max(selStart, selEnd))); in performContextMenuAction()
211 editable.delete(selStart, selEnd); in performContextMenuAction()
223 selStart == selEnd in performContextMenuAction()
227 .substring(Math.min(selStart, selEnd), Math.max(selStart, selEnd)); in performContextMenuAction()
263 final int selEnd = Selection.getSelectionEnd(editable); in getExtractedText() local
270 extract.selectionEnd = selEnd; in getExtractedText()
H A DGeckoEditable.java861 selEnd = composingEnd; in icMaybeSendComposition()
881 .append(selEnd); in icMaybeSendComposition()
918 final int selEnd, in icSendComposition() argument
935 .append(selEnd) in icSendComposition()
940 if (selEnd >= composingStart && selEnd <= composingEnd) { in icSendComposition()
942 selEnd - composingStart, in icSendComposition()
943 selEnd - composingStart, in icSendComposition()
969 } else if (selEnd > rangeStart && selEnd < rangeEnd) { in icSendComposition()
970 rangeEnd = selEnd; in icSendComposition()
1123 if (selStart == selEnd) { in sendKeyEvent()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/
H A DGeckoInputConnection.java193 final int selEnd = Selection.getSelectionEnd(editable); in performContextMenuAction() local
201 if (selStart == selEnd) { in performContextMenuAction()
207 editable.subSequence(Math.min(selStart, selEnd), in performContextMenuAction()
208 Math.max(selStart, selEnd))); in performContextMenuAction()
209 editable.delete(selStart, selEnd); in performContextMenuAction()
220 final String copiedText = selStart == selEnd ? "" : in performContextMenuAction()
222 Math.min(selStart, selEnd), in performContextMenuAction()
223 Math.max(selStart, selEnd)); in performContextMenuAction()
260 final int selEnd = Selection.getSelectionEnd(editable); in getExtractedText() local
267 extract.selectionEnd = selEnd; in getExtractedText()
H A DGeckoEditable.java392 Selection.setSelection(mShadowText, selStart, selEnd); in syncShadowText()
793 int selEnd = Selection.getSelectionEnd(sequence); in icMaybeSendComposition() local
816 if (useEntireText && (selStart < 0 || selEnd < 0)) { in icMaybeSendComposition()
818 selEnd = composingEnd; in icMaybeSendComposition()
866 if (selEnd >= composingStart && selEnd <= composingEnd) { in icSendComposition()
868 selEnd - composingStart, selEnd - composingStart, in icSendComposition()
888 } else if (selEnd > rangeStart && selEnd < rangeEnd) { in icSendComposition()
889 rangeEnd = selEnd; in icSendComposition()
1031 if (selStart == selEnd) { in sendKeyEvent()
1349 mText.currentSetSelection(selStart, selEnd); in geckoActionReply()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/
H A DGeckoInputConnection.java193 int selEnd = Selection.getSelectionEnd(editable); in performContextMenuAction() local
201 if (selStart == selEnd) { in performContextMenuAction()
207 editable.subSequence(Math.min(selStart, selEnd), in performContextMenuAction()
208 Math.max(selStart, selEnd))); in performContextMenuAction()
209 editable.delete(selStart, selEnd); in performContextMenuAction()
220 String copiedText = selStart == selEnd ? "" : in performContextMenuAction()
222 Math.min(selStart, selEnd), in performContextMenuAction()
223 Math.max(selStart, selEnd)); in performContextMenuAction()
259 int selEnd = Selection.getSelectionEnd(editable); in getExtractedText() local
266 extract.selectionEnd = selEnd; in getExtractedText()
/dports/lang/python-legacy/Python-2.7.18/Lib/plat-mac/
H A Dic.py210 selEnd = len(data)
212 selStart = selEnd = start
214 selEnd = end
215 selStart, selEnd = self.ic.ICParseURL(hint, data, selStart, selEnd, self.h)
216 return self.h.data, selStart, selEnd
/dports/lang/python27/Python-2.7.18/Lib/plat-mac/
H A Dic.py210 selEnd = len(data)
212 selStart = selEnd = start
214 selEnd = end
215 selStart, selEnd = self.ic.ICParseURL(hint, data, selStart, selEnd, self.h)
216 return self.h.data, selStart, selEnd
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlabplugins/edit_texture/
H A Drenderarea.cpp1192 selEnd = QPoint(-MAX,-MAX); in SelectFaces()
1220 selEnd = QPoint(-MAX,-MAX); in SelectVertexes()
1769 if (selected && selStart.x() < selEnd.x() && selStart.y() < selEnd.y()) in RecalculateSelectionArea()
1785 if (a.x() > selEnd.x()) selEnd.setX(a.x()); in SetUpRegion()
1786 if (b.x() > selEnd.x()) selEnd.setX(b.x()); in SetUpRegion()
1787 if (c.x() > selEnd.x()) selEnd.setX(c.x()); in SetUpRegion()
1788 if (a.y() > selEnd.y()) selEnd.setY(a.y()); in SetUpRegion()
1789 if (b.y() > selEnd.y()) selEnd.setY(b.y()); in SetUpRegion()
1790 if (c.y() > selEnd.y()) selEnd.setY(c.y()); in SetUpRegion()
1899 if (topRight.x() > selEnd.x()) selEnd.setX(topRight.x()); in UpdateBoundingArea()
[all …]

12345678910>>...22