HomeSort by relevance Sort by last modified time
    Searched refs:splitText (Results 1 - 25 of 49) sorted by null

1 2

  /libcore/luni/src/main/java/org/w3c/dom/
Text.java 58 public Text splitText(int offset)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Text.idl 26 [RaisesException] Text splitText(unsigned long offset);
Text.h 44 PassRefPtrWillBeRawPtr<Text> splitText(unsigned offset, ExceptionState&);
RangeTest.cpp 59 oldText->splitText(2, ASSERT_NO_EXCEPTION);
104 oldText->splitText(3, ASSERT_NO_EXCEPTION);
Text.cpp 105 PassRefPtrWillBeRawPtr<Text> Text::splitText(unsigned offset, ExceptionState& exceptionState)
Range.cpp     [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_textindexsizeerroffsetoutofbounds.java 31 * The "splitText(offset)" method raises an
36 * third employee and invoke the "splitText(offset)" method.
81 splitNode = textNode.splitText(300);
hc_textsplittextfour.java 31 * The "splitText(offset)" method returns the new Text node.
34 * first employee and invoke the "splitText(offset)" method.
75 splitNode = textNode.splitText(30);
hc_textsplittextone.java 31 * The "splitText(offset)" method breaks the Text node into
36 * third employee and invoke the "splitText(offset)" method.
77 splitNode = textNode.splitText(7);
hc_textsplittextthree.java 31 * After the "splitText(offset)" method breaks the Text node
36 * third employee and invoke the "splitText(offset)" method.
77 splitNode = textNode.splitText(6);
hc_textsplittexttwo.java 31 * After the "splitText(offset)" method breaks the Text node
36 * third employee and invoke the "splitText(offset)" method.
76 splitNode = textNode.splitText(5);
textindexsizeerroffsetoutofbounds.java 31 * The "splitText(offset)" method raises an
36 * third employee and invoke the "splitText(offset)" method.
82 splitNode = textNode.splitText(300);
textsplittextfour.java 31 * The "splitText(offset)" method returns the new Text node.
34 * first employee and invoke the "splitText(offset)" method.
76 splitNode = textNode.splitText(30);
textsplittextnomodificationallowederrEE.java 31 * Create an ent3 reference and execute the "splitText(offset)" method.
75 splitNode = ((Text) /*Node */entText).splitText(2);
textsplittextone.java 31 * The "splitText(offset)" method breaks the Text node into
36 * third employee and invoke the "splitText(offset)" method.
78 splitNode = textNode.splitText(7);
textsplittextthree.java 31 * After the "splitText(offset)" method breaks the Text node
36 * third employee and invoke the "splitText(offset)" method.
78 splitNode = textNode.splitText(6);
textsplittexttwo.java 31 * After the "splitText(offset)" method breaks the Text node
36 * third employee and invoke the "splitText(offset)" method.
77 splitNode = textNode.splitText(5);
hc_textindexsizeerrnegativeoffset.java 31 * The "splitText(offset)" method raises an
36 * third employee and invoke the "splitText(offset)" method.
85 splitNode = textNode.splitText(-69);
textindexsizeerrnegativeoffset.java 31 * The "splitText(offset)" method raises an
36 * third employee and invoke the "splitText(offset)" method.
86 splitNode = textNode.splitText(-69);
textsplittextnomodificationallowederr.java 31 * The "splitText(offset)" method raises a
37 * Text Node of the entity reference and execute the "splitText(offset)" method.
95 splitNode = ((Text) /*Node */entElementText).splitText(2);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java 79 final CharSequence splitText = splitTexts[j];
80 if (TextUtils.isEmpty(splitText)) {
83 if (mSuggestionsCache.getSuggestionsFromCache(splitText.toString(), prevWordsInfo)
87 final int newLength = splitText.length();
93 Log.d(TAG, "Override and remove old span over: " + splitText + ", "
AndroidWordLevelSpellCheckerSession.java 242 final String[] splitText = inText.split(Constants.REGEXP_PERIOD);
244 for (final String word : splitText) {
254 TextUtils.join(Constants.STRING_SPACE, splitText) });
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 49 public final Text splitText(int offset) throws DOMException {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 1106 public Text splitText(int offset) throws DOMException
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 967 public final Text splitText(int offset) throws DOMException
    [all...]

Completed in 684 milliseconds

1 2