/external/chromium_org/third_party/WebKit/Source/core/html/ime/ |
Composition.idl | 36 readonly attribute long selectionStart;
|
Composition.cpp | 68 int Composition::selectionStart() const 70 return m_inputMethodContext->selectionStart();
|
Composition.h | 51 int selectionStart() const;
|
InputMethodContext.h | 66 int selectionStart() const;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebTextInputInfo.cpp | 40 && selectionStart == other.selectionStart
|
WebInputElement.cpp | 140 int WebInputElement::selectionStart() const 142 return constUnwrap<HTMLInputElement>()->selectionStart();
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebTextInputInfo.h | 42 int selectionStart; 62 , selectionStart(0)
|
WebWidget.h | 156 // If selectionStart and selectionEnd has the same value, then it indicates 163 int selectionStart,
|
WebAXObject.h | 144 BLINK_EXPORT unsigned selectionStart() const; 177 BLINK_EXPORT void setSelectedTextRange(int selectionStart, int selectionEnd) const;
|
/frameworks/base/core/java/android/text/method/ |
BaseKeyListener.java | 101 int selectionStart = Selection.getSelectionStart(content); 103 if (selectionEnd < selectionStart) { 105 selectionEnd = selectionStart; 106 selectionStart = temp; 108 if (selectionStart != selectionEnd) { 109 content.delete(selectionStart, selectionEnd); 183 int selectionStart = Selection.getSelectionStart(content); 185 if (selectionEnd < selectionStart) { 187 selectionEnd = selectionStart; 188 selectionStart = temp [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
MoveSelectionCommand.cpp | 54 Position selectionStart = endingSelection().start(); 55 if (selectionStart.anchorType() == Position::PositionIsOffsetInAnchor && selectionStart.containerNode() == pos.containerNode()) 56 pos.moveToOffset(pos.offsetInContainerNode() + selectionStart.offsetInContainerNode());
|
InputMethodController.h | 54 void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
AdapterInputConnection.java | 112 * @param selectionStart The character offset of the selection start, or the caret position if 122 public void updateState(String text, int selectionStart, int selectionEnd, int compositionStart, 125 Log.w(TAG, "updateState [" + text + "] [" + selectionStart + " " + selectionEnd + "] [" 133 selectionStart = Math.min(selectionStart, text.length()); 146 Selection.setSelection(editable, selectionStart, selectionEnd); 163 int selectionStart = Selection.getSelectionStart(editable); 168 if (mLastUpdateSelectionStart == selectionStart && 175 Log.w(TAG, "updateSelectionIfRequired [" + selectionStart + " " + selectionEnd + "] [" 181 selectionStart, selectionEnd, compositionStart, compositionEnd) [all...] |
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
ExtractedTextTest.java | 30 extractedText.selectionStart = 2; 40 assertEquals(extractedText.selectionStart, target.selectionStart);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PersistentState.java | 104 int selectionStart = prefs.getInt("selection-start", -1); 106 if (selectionStart != -1 && selectionEnd != -1) { 107 mSaved.setSelection(selectionStart, selectionEnd);
|
/frameworks/base/core/java/android/view/inputmethod/ |
ExtractedText.java | 59 * <var>startOffset</var>+<var>selectionStart</var>. 61 public int selectionStart; 100 dest.writeInt(selectionStart); 116 res.selectionStart = source.readInt();
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/ |
AdapterInputConnectionTest.java | 121 public void verifyUpdateSelectionCall(int index, int selectionStart, int selectionEnd, 124 assertEquals("Selection start did not match", selectionStart, state.selectionStart); 153 private static void assertCorrectState(String text, int selectionStart, int selectionEnd, 156 assertEquals("Selection start did not match", selectionStart, actual.selectionStart);
|
ImeTest.java | 316 final int index, String text, int selectionStart, int selectionEnd, 325 text, selectionStart, selectionEnd, compositionStart, compositionEnd); 373 public void updateState(String text, int selectionStart, int selectionEnd, 375 mImeUpdateQueue.add(new TestImeState(text, selectionStart, selectionEnd, 377 super.updateState(text, selectionStart, selectionEnd, compositionStart, 389 public TestImeState(String text, int selectionStart, int selectionEnd, 392 mSelectionStart = selectionStart; 398 public void assertEqualState(String text, int selectionStart, int selectionEnd, 401 assertEquals("Selection start did not match", selectionStart, mSelectionStart);
|
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/ |
WriteData.java | 31 private static final String PROP_SELECTION_START = "selectionStart"; 122 int selectionStart = getSelectionStart(); 125 if (selectionStart > 0 || selectionEnd > 0) { 130 if (selectionStart < 0 && selectionEnd >= 0) { 135 if (selectionStart > textLength || selectionEnd > textLength) {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
content_script.js | 15 focused.selectionStart, focused.selectionEnd);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
HyperlinksTest.java | 301 int selectionStart = selection.x - lineStart; 302 int selectionEnd = selectionStart + selection.y; 303 if (selectionEnd > selectionStart) { 305 text = text.substring(0, selectionStart) + "[^" + 306 text.substring(selectionStart, selectionEnd) + "]" + 309 text = text.substring(0, selectionStart) + "^" + 310 text.substring(selectionStart);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CodeMirrorTextEditor.js | [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
BaseKeyListenerTest.java | 123 final boolean selectInTextView, final int selectionStart, final int selectionEnd) { 130 selectionStart, selectionEnd);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextAreaElement.idl | 51 attribute long selectionStart;
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebViewTest.cpp | 529 EXPECT_EQ(5, info.selectionStart); 542 EXPECT_EQ(8, info.selectionStart); 562 EXPECT_EQ(3, info.selectionStart); 569 EXPECT_EQ(3, info.selectionStart); 577 EXPECT_EQ(6, info.selectionStart); 584 EXPECT_EQ(8, info.selectionStart); 603 EXPECT_EQ(4, info.selectionStart); 610 EXPECT_EQ(4, info.selectionStart); 618 EXPECT_EQ(5, info.selectionStart); 634 EXPECT_EQ(5, info.selectionStart); [all...] |