HomeSort by relevance Sort by last modified time
    Searched full:srcend (Results 1 - 16 of 16) sorted by null

  /external/apache-xml/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/skia/src/core/
SkBlitRow_D32.cpp 29 const SkPMColor* SK_RESTRICT srcEnd = src + count;
30 while (src != srcEnd) {
60 const SkPMColor* SK_RESTRICT srcEnd = src + count;
61 while (src != srcEnd) {
101 const SkPMColor* SK_RESTRICT srcEnd = src + count;
102 while (src != srcEnd) {
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 104 unsigned char* srcEnd = srcBegin + srcSize;
108 while (src < srcEnd) {
140 m_numBufferedBytes = srcEnd - src;
169 unsigned char* srcEnd = srcBegin + srcSize;
173 while (src < srcEnd) {
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 118 static void move(const T* src, const T* srcEnd, T* dst)
120 while (src != srcEnd) {
131 static void moveOverlapping(const T* src, const T* srcEnd, T* dst)
134 move(src, srcEnd, dst);
136 T* dstEnd = dst + (srcEnd - src);
137 while (src != srcEnd) {
138 --srcEnd;
140 new (dstEnd) T(*srcEnd);
141 srcEnd->~T();
150 static void move(const T* src, const T* srcEnd, T* dst)
    [all...]
  /external/qemu/proxy/
proxy_common.c 466 const char* srcend = src + srclen; local
469 while (src+3 <= srcend && result+4 <= dstlen)
479 if (src < srcend) {
486 in[1] = src+1 < srcend ? src[1] : 0;
487 in[2] = src+2 < srcend ? src[2] : 0;
491 dst[result+2] = (unsigned char) (src+1 < srcend ? cb64[ ((in[1] & 0xf) << 2) | ((in[2] & 0xc0) >> 6) ] : '=');
492 dst[result+3] = (unsigned char) (src+2 < srcend ? cb64[ in[2] & 0x3f ] : '=');
  /external/icu4c/test/cintltst/
ncnvtst.c     [all...]
  /frameworks/base/cmds/installd/
commands.c 622 int srcend = strlen(srcpath); local
664 if ((srcend+strlen(name)) >= (PKG_PATH_MAX-2)) {
674 srcpath[srcend] = dstpath[dstend] = '/';
675 strcpy(srcpath+srcend+1, name);
686 srcpath[srcend] = dstpath[dstend] = 0;
  /external/apache-xml/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...]
  /system/core/run-as/
package.c 56 const char* srcend = src + srclen; local
64 while (dst < dstend && src < srcend && *src != '\0')
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 563 unsigned srcEnd = cfhtml.find("\n", lineStart, false);
565 String rawSrcURL = cfhtml.substring(srcStart, srcEnd-srcStart);
  /external/webkit/Source/WebCore/platform/
KURL.cpp 220 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBuilderTest.java 691 fail("no IOOBE, srcBegin > srcEnd");
698 fail("no IOOBE, srcEnd > length");
    [all...]

Completed in 1928 milliseconds