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

1 2

  /libcore/luni/src/main/java/org/w3c/dom/
CharacterData.java 36 * may call <code>substringData</code> to retrieve the data in
51 * may call <code>substringData</code> to retrieve the data in
61 * and the <code>substringData</code> method below. This may have the
81 public String substringData(int offset,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.idl 26 [TreatReturnedNullStringAs=Null, RaisesException] DOMString substringData(unsigned long offset, unsigned long length);
CharacterData.h 39 String substringData(unsigned offset, unsigned count, ExceptionState&);
CharacterData.cpp 60 String CharacterData::substringData(unsigned offset, unsigned count, ExceptionState& es)
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataindexsizeerrsubstringoffsetgreater.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
82 badString = child.substringData(40, 3);
characterdatasubstringexceedsvalue.java 32 * "length" then the "substringData(offset,count)" method
37 * by using the substringData(offset,count) method
76 substring = child.substringData(9, 10);
characterdatasubstringvalue.java 31 * The "substringData(offset,count)" method returns the
36 * by using the substringData(offset,count) method. The
75 substring = child.substringData(0, 8);
hc_characterdataindexsizeerrsubstringoffsetgreater.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
81 badString = child.substringData(40, 3);
hc_characterdatasubstringexceedsvalue.java 32 * "length" then the "substringData(offset,count)" method
37 * by using the substringData(offset,count) method
75 substring = child.substringData(9, 10);
hc_characterdatasubstringvalue.java 31 * The "substringData(offset,count)" method returns the
36 * by using the substringData(offset,count) method. The
74 substring = child.substringData(0, 8);
characterdataindexsizeerrsubstringcountnegative.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
86 badSubstring = child.substringData(10, -3);
characterdataindexsizeerrsubstringnegativeoffset.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
86 badString = child.substringData(-5, 3);
hc_characterdataindexsizeerrdeletedatacountnegative.java 85 childSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrreplacedatacountnegative.java 86 badString = child.substringData(10, -3);
hc_characterdataindexsizeerrsubstringcountnegative.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
85 badSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrsubstringnegativeoffset.java 31 * The "substringData(offset,count)" method raises an
36 * first employee and invoke its "substringData(offset,count)
85 badString = child.substringData(-5, 3);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteFromTextNodeCommand.cpp 56 m_text = m_node->substringData(m_offset, m_count, es);
SplitTextNodeCommand.cpp 59 String prefixText = m_text2->substringData(0, m_offset, IGNORE_EXCEPTION);
ApplyBlockElementCommand.cpp 165 String textAtPosition = toText(textNode)->substringData(offset, 1, es);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CharacterDataImpl.java 91 public String substringData(int offset, int count) throws DOMException {
TextImpl.java 51 substringData(offset, getLength() - offset));
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 1036 public String substringData(int offset, int count) throws DOMException
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 1017 public final String substringData(int offset, int count) throws DOMException
    [all...]
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 970 def substringData(self, offset, count):
    [all...]

Completed in 452 milliseconds

1 2