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

1 2

  /libcore/luni/src/main/java/org/w3c/dom/
CharacterData.java 148 public void replaceData(int offset,
  /external/webkit/WebCore/dom/
CharacterData.h 39 void replaceData(unsigned offset, unsigned count, const String&, ExceptionCode&);
CharacterData.idl 44 [OldStyleObjC] void replaceData(in [IsIndex] unsigned long offset,
CharacterData.cpp 139 void CharacterData::replaceData(unsigned offset, unsigned count, const String& arg, ExceptionCode& ec)
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataindexsizeerrreplacedataoffsetgreater.java 31 * The "replaceData(offset,count,arg)" method raises an
37 * "replaceData(offset,count,arg) method with offset=40
82 child.replaceData(40, 3, "ABC");
characterdatareplacedatabegining.java 31 * The "replaceData(offset,count,arg)" method replaces the
36 * first employee. The "replaceData(offset,count,arg)"
75 child.replaceData(0, 4, "2500");
characterdatareplacedataend.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
77 child.replaceData(30, 5, "98665");
characterdatareplacedataexceedslengthofarg.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
78 child.replaceData(0, 4, "260030");
characterdatareplacedataexceedslengthofdata.java 35 * first employee. The "replaceData(offset,count,arg)"
76 child.replaceData(0, 50, "2600");
characterdatareplacedatamiddle.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
77 child.replaceData(5, 5, "South");
hc_characterdatareplacedatabegining.java 31 * The "replaceData(offset,count,arg)" method replaces the
36 * first employee. The "replaceData(offset,count,arg)"
74 child.replaceData(0, 4, "2500");
hc_characterdatareplacedataend.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
76 child.replaceData(30, 5, "98665");
hc_characterdatareplacedataexceedslengthofarg.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
77 child.replaceData(0, 4, "260030");
hc_characterdatareplacedataexceedslengthofdata.java 35 * first employee. The "replaceData(offset,count,arg)"
75 child.replaceData(0, 50, "2600");
hc_characterdatareplacedatamiddle.java 31 * The "replaceData(offset,count,arg)" method replaces the
37 * first employee. The "replaceData(offset,count,arg)"
76 child.replaceData(5, 5, "South");
characterdataindexsizeerrreplacedatacountnegative.java 31 * The "replaceData(offset,count,arg)" method raises an
37 * "replaceData(offset,count,arg) method with offset=10
86 child.replaceData(10, -3, "ABC");
characterdataindexsizeerrreplacedataoffsetnegative.java 31 * The "replaceData(offset,count,arg)" method raises an
37 * "replaceData(offset,count,arg) method with offset=-5
87 child.replaceData(-5, 3, "ABC");
characterdatareplacedatanomodificationallowederr.java 31 * The "replaceData(offset,count,arg)" method raises a NO_MODIFICATION_ALLOWED_ERR
36 * from the entity reference and execute the "replaceData(offset,count,arg)" method.
93 ((CharacterData) /*Node */entElementContent).replaceData(1, 3, "newArg");
characterdatareplacedatanomodificationallowederrEE.java 31 * Create an ent3 entity reference and call replaceData on a text child, should thrown a NO_MODIFICATION_ALLOWED_ERR.
79 entText.replaceData(1, 3, "newArg");
hc_characterdataindexsizeerrinsertdataoffsetnegative.java 84 child.replaceData(-5, 3, "ABC");
hc_characterdataindexsizeerrreplacedataoffsetnegative.java 31 * The "replaceData(offset,count,arg)" method raises an
37 * "replaceData(offset,count,arg) method with offset=-5
86 child.replaceData(-5, 3, "ABC");
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CharacterDataImpl.java 78 public void replaceData(int offset, int count, String arg)
  /libcore/luni/src/main/java/org/apache/xml/utils/
UnImplNode.java 1091 public void replaceData(int offset, int count, String arg)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
DOMCore.idl 461 - (void)replaceData:(unsigned)offset :(unsigned)count :(NSString *)arg;
463 HRESULT replaceData([in] UINT offset, [in] UINT count, [in] BSTR arg);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 1069 public final void replaceData(int offset, int count, String arg)
    [all...]

Completed in 1372 milliseconds

1 2