HomeSort by relevance Sort by last modified time
    Searched full:srcend (Results 1 - 15 of 15) 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);
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;
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...]
  /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...]
  /external/qemu/proxy/
proxy_common.c 465 const char* srcend = src + srclen; local
468 while (src+3 <= srcend && result+4 <= dstlen)
478 if (src < srcend) {
485 in[1] = src+1 < srcend ? src[1] : 0;
486 in[2] = src+2 < srcend ? src[2] : 0;
490 dst[result+2] = (unsigned char) (src+1 < srcend ? cb64[ ((in[1] & 0xf) << 2) | ((in[2] & 0xc0) >> 6) ] : '=');
491 dst[result+3] = (unsigned char) (src+2 < srcend ? cb64[ in[2] & 0x3f ] : '=');
  /external/chromium/third_party/icu/source/test/cintltst/
ncnvtst.c     [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c     [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...]
  /frameworks/base/cmds/installd/
commands.c 706 int srcend = strlen(srcpath); local
748 if ((srcend+strlen(name)) >= (PKG_PATH_MAX-2)) {
758 srcpath[srcend] = dstpath[dstend] = '/';
759 strcpy(srcpath+srcend+1, name);
770 srcpath[srcend] = dstpath[dstend] = 0;
    [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);
  /system/core/run-as/
package.c 56 const char* srcend = src + srclen; local
64 while (dst < dstend && src < srcend && *src != '\0')
  /external/webkit/WebCore/platform/
KURL.cpp 218 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
StringBuilderTest.java 691 fail("no IOOBE, srcBegin > srcEnd");
698 fail("no IOOBE, srcEnd > length");
    [all...]

Completed in 731 milliseconds