/libcore/luni/src/main/java/org/w3c/dom/ |
CharacterData.java | 148 public void replaceData(int offset,
|
/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");
|
/external/webkit/Source/WebCore/dom/ |
CharacterData.idl | 44 [OldStyleObjC] void replaceData(in [IsIndex] unsigned long offset,
|
CharacterData.h | 39 void replaceData(unsigned offset, unsigned count, const String&, ExceptionCode&);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
CharacterDataImpl.java | 78 public void replaceData(int offset, int count, String arg)
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_characterdataindexsizeerrreplacedataoffsetnegative.js | 79 The "replaceData(offset,count,arg)" method raises an 85 "replaceData(offset,count,arg) method with offset=-5 116 child.replaceData(-5,3,"ABC");
|
hc_characterdatareplacedatabegining.js | 78 The "replaceData(offset,count,arg)" method replaces the 84 first employee. The "replaceData(offset,count,arg)" 110 child.replaceData(0,4,"2500");
|
hc_characterdatareplacedataend.js | 78 The "replaceData(offset,count,arg)" method replaces the 84 first employee. The "replaceData(offset,count,arg)" 111 child.replaceData(30,5,"98665");
|
hc_characterdatareplacedataexceedslengthofarg.js | 78 The "replaceData(offset,count,arg)" method replaces the 84 first employee. The "replaceData(offset,count,arg)" 112 child.replaceData(0,4,"260030");
|