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

  /libcore/luni/src/main/java/java/io/
PipedReader.java 268 int copyLength = 0;
271 copyLength = count > this.buffer.length - out ? this.buffer.length - out : count;
272 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
273 out += copyLength;
288 if (copyLength == count || in == -1) {
289 return copyLength;
292 int charsCopied = copyLength;
294 copyLength = in - out > count - copyLength ? count - copyLength : in - out
    [all...]
PushbackInputStream.java 181 int copiedBytes = 0, copyLength = 0, newOffset = offset;
184 copyLength = (buf.length - pos >= length) ? length : buf.length
186 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
187 newOffset += copyLength;
188 copiedBytes += copyLength;
190 pos += copyLength;
193 if (copyLength == length) {
PushbackReader.java 189 int copyLength = 0;
193 copyLength = (buf.length - pos >= count) ? count : buf.length
195 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
196 newOffset += copyLength;
197 copiedChars += copyLength;
199 pos += copyLength;
202 if (copyLength == count) {
  /libcore/luni/src/main/java/java/util/
Arrays.java     [all...]
  /dalvik/vm/
Misc.cpp 592 size_t copyLength = srcLength;
595 copyLength = size - 1;
599 strncpy(dst, src, copyLength);
600 dst[copyLength] = '\0';
  /external/icu4c/common/
locdispnames.cpp 332 int32_t copyLength=uprv_min(length, destCapacity);
333 if(copyLength>0 && s != NULL) {
334 u_memcpy(dest, s, copyLength);
ustrcase.cpp 421 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity;
422 if(copyLength>0) {
423 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
uresbund.cpp     [all...]
  /external/icu4c/i18n/
uregex.cpp 665 int32_t copyLength = fullLength;
666 if (copyLength < destCapacity) {
667 dest[copyLength] = 0;
668 } else if (copyLength == destCapacity) {
671 copyLength = destCapacity;
678 if (copyLength > 0) {
679 u_memcpy(dest, &regexp->fText[startIx], copyLength);
    [all...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 184 final int copyLength = Math.min(resultLength, originalLength - start);
187 System.arraycopy(original, start, result, 0, copyLength);
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCameraHWInterface.cpp     [all...]
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 810 milliseconds