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

  /libcore/luni/src/main/java/java/io/
PipedReader.java 260 int copyLength = 0;
263 copyLength = count > this.buffer.length - out ? this.buffer.length - out : count;
264 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
265 out += copyLength;
280 if (copyLength == count || in == -1) {
281 return copyLength;
284 int charsCopied = copyLength;
286 copyLength = in - out > count - copyLength ? count - copyLength : in - out
    [all...]
PushbackInputStream.java 171 int copiedBytes = 0, copyLength = 0, newOffset = byteOffset;
174 copyLength = (buf.length - pos >= byteCount) ? byteCount : buf.length - pos;
175 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
176 newOffset += copyLength;
177 copiedBytes += copyLength;
179 pos += copyLength;
182 if (copyLength == byteCount) {
PushbackReader.java 178 int copyLength = 0;
182 copyLength = (buf.length - pos >= count) ? count : buf.length
184 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
185 newOffset += copyLength;
186 copiedChars += copyLength;
188 pos += copyLength;
191 if (copyLength == count) {
  /libcore/luni/src/main/java/java/util/
Arrays.java     [all...]
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 331 int32_t copyLength=uprv_min(length, destCapacity);
332 if(copyLength>0 && s != NULL) {
333 u_memcpy(dest, s, copyLength);
ustrcase.c 539 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity;
540 if(copyLength>0) {
541 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
uresbund.c     [all...]
  /external/icu/icu4c/source/common/
locdispnames.cpp 332 int32_t copyLength=uprv_min(length, destCapacity);
333 if(copyLength>0 && s != NULL) {
334 u_memcpy(dest, s, copyLength);
    [all...]
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/chromium_org/third_party/icu/source/i18n/
uregex.cpp 647 int32_t copyLength = fullLength;
648 if (copyLength < destCapacity) {
649 dest[copyLength] = 0;
650 } else if (copyLength == destCapacity) {
653 copyLength = destCapacity;
660 if (copyLength > 0) {
661 u_memcpy(dest, &regexp->fText[startIx], copyLength);
    [all...]
  /external/icu/icu4c/source/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...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 184 final int copyLength = Math.min(resultLength, originalLength - start);
187 System.arraycopy(original, start, result, 0, copyLength);
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 184 final int copyLength = Math.min(resultLength, originalLength - start);
187 System.arraycopy(original, start, result, 0, copyLength);
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/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/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
org.eclipse.jdt.core-3.9.1.v20130905-0837.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 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 

Completed in 3145 milliseconds