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

  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Java6Arrays.java 50 int copyLength = Math.min(length, original.length - start);
52 System.arraycopy(original, start, copy, 0, copyLength);
66 int copyLength = Math.min(length, original.length - start);
69 System.arraycopy(original, start, copy, 0, copyLength);
  /dalvik/libcore/luni/src/main/java/java/io/
PipedReader.java 249 int copyLength = 0;
252 copyLength = count > this.buffer.length - out ? this.buffer.length - out
254 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
255 out += copyLength;
270 if (copyLength == count || in == -1) {
271 return copyLength;
274 int charsCopied = copyLength;
276 copyLength = in - out > count - copyLength ? count - copyLength
    [all...]
PushbackInputStream.java 183 int copiedBytes = 0, copyLength = 0, newOffset = offset;
186 copyLength = (buf.length - pos >= length) ? length : buf.length
188 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
189 newOffset += copyLength;
190 copiedBytes += copyLength;
192 pos += copyLength;
195 if (copyLength == length) {
PushbackReader.java 199 int copyLength = 0;
203 copyLength = (buf.length - pos >= count) ? count : buf.length
205 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
206 newOffset += copyLength;
207 copiedChars += copyLength;
209 pos += copyLength;
212 if (copyLength == count) {
  /dalvik/vm/
Misc.c 675 size_t copyLength = srcLength;
678 copyLength = size - 1;
682 strncpy(dst, src, copyLength);
683 dst[copyLength] = '\0';
  /external/icu4c/i18n/
uregex.cpp 424 int32_t copyLength = fullLength;
425 if (copyLength < destCapacity) {
426 dest[copyLength] = 0;
427 } else if (copyLength == destCapacity) {
430 copyLength = destCapacity;
437 if (copyLength > 0) {
438 u_memcpy(dest, &regexp->fText[startIx], copyLength);
    [all...]
  /external/icu4c/common/
ustrcase.c 543 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity;
544 if(copyLength>0) {
545 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
uloc.c     [all...]
uresbund.c     [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 4029 milliseconds