HomeSort by relevance Sort by last modified time
    Searched refs:srcEnd (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/main/java/org/apache/xpath/objects/
XStringForChars.java 196 * @param srcEnd index after the last character in the string
203 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
204 * <li><code>srcEnd</code> is greater than the length of this
207 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
XString.java 262 * @param srcEnd index after the last character in the string
269 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
270 * <li><code>srcEnd</code> is greater than the length of this
273 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
279 str().getChars(srcBegin, srcEnd, dst, dstBegin);
    [all...]
XStringForFSB.java 237 * @param srcEnd index after the last character in the string
244 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
245 * <li><code>srcEnd</code> is greater than the length of this
248 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
257 int n = srcEnd - srcBegin;
  /external/webkit/JavaScriptCore/wtf/
Vector.h 127 static void move(const T* src, const T* srcEnd, T* dst)
129 while (src != srcEnd) {
136 static void moveOverlapping(const T* src, const T* srcEnd, T* dst)
139 move(src, srcEnd, dst);
141 T* dstEnd = dst + (srcEnd - src);
142 while (src != srcEnd) {
143 --srcEnd;
145 new (dstEnd) T(*srcEnd);
146 srcEnd->~T();
155 static void move(const T* src, const T* srcEnd, T* dst)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 128 * @param srcEnd index after the last character in the string
135 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
136 * <li><code>srcEnd</code> is greater than the length of this
139 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
143 public void getChars(int srcBegin, int srcEnd, char dst[],
147 for (int i = srcBegin; i < srcEnd; i++)
XMLString.java 107 * @param srcEnd index after the last character in the string
114 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
115 * <li><code>srcEnd</code> is greater than the length of this
118 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
122 public abstract void getChars(int srcBegin, int srcEnd, char dst[],
FastStringBuffer.java     [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c     [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
ncnvtst.c     [all...]
  /external/webkit/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 403 unsigned srcEnd = cf_html.find("\n", lineStart, false);
405 String rawSrcURL = cf_html.substring(srcStart, srcEnd-srcStart);
  /external/webkit/WebCore/platform/
KURL.cpp 218 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd);
    [all...]

Completed in 2325 milliseconds