| /libcore/libart/src/main/java/java/lang/ |
| StringFactory.java | 178 System.arraycopy(v, 0, value, 0, s); 198 System.arraycopy(cb.array(), 0, value, 0, length);
|
| /libcore/luni/src/main/java/java/math/ |
| BitLevel.java | 191 System.arraycopy(source, intCount, result, 0, resultLen); 223 System.arraycopy(val.digits, 0, resDigits, 0, val.numberLength);
|
| /libcore/luni/src/main/java/org/xml/sax/helpers/ |
| AttributesImpl.java | 443 System.arraycopy(data, (index+1)*5, data, index*5, 590 System.arraycopy(data, 0, newData, 0, length*5);
|
| /libcore/ojluni/src/main/java/java/io/ |
| Console.java | 387 System.arraycopy(rcb, 0, b, 0, len); 398 System.arraycopy(rcb, 0, t, 0, rcb.length);
|
| /libcore/ojluni/src/main/java/java/text/ |
| ChoiceFormat.java | 251 System.arraycopy(newChoiceLimits, 0, choiceLimits, 0, count); 253 System.arraycopy(newChoiceFormats, 0, choiceFormats, 0, count); 608 System.arraycopy(array, 0, newArray, 0, oldSize); 615 System.arraycopy(array, 0, newArray, 0, oldSize);
|
| /libcore/ojluni/src/main/java/sun/net/www/ |
| HeaderParser.java | 79 System.arraycopy (tab, start, n.tab, 0, (end-start)); 134 System.arraycopy (tab, 0, ntab, 0, tab.length);
|
| /libcore/ojluni/src/main/java/sun/security/util/ |
| DerIndefLenConverter.java | 190 System.arraycopy(lenBytes, 0, newData, newDataPos, 352 System.arraycopy(indefData, dataSize,
|
| /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
| StreamTestDataProvider.java | 65 System.arraycopy(to100, 0, twice, 0, to100.length); 66 System.arraycopy(to100, 0, twice, to100.length, to100.length);
|
| /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
| StreamTestDataProvider.java | 68 System.arraycopy(to100, 0, twice, 0, to100.length); 69 System.arraycopy(to100, 0, twice, to100.length, to100.length);
|
| /packages/apps/Messaging/src/com/android/messaging/ui/ |
| CompositeAdapter.java | 109 System.arraycopy(mPartitions, 0, newAdapters, 0, mSize); 121 System.arraycopy(mPartitions, index + 1, mPartitions, index,
|
| /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/ |
| CachedInputStream.java | 162 System.arraycopy(buf, indexInBuf, buffer, offset, reads); 197 System.arraycopy(buf, indexInBuf, buffer, offset, toRead);
|
| /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
| UnicodeEscaper.java | 203 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); 426 System.arraycopy(dest, 0, copy, 0, index);
|
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
| ExpectedKeyboardBuilder.java | 78 System.arraycopy(keys, columnIndex + 1, newKeys, columnIndex + replacingKeys.length, 81 System.arraycopy(replacingKeys, 0, newKeys, columnIndex, replacingKeys.length);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/ |
| UiViewElementNode.java | 121 System.arraycopy(direct_attrs, 0, 124 System.arraycopy(layout_attrs, 0,
|
| /frameworks/base/core/java/android/text/ |
| SpannableStringBuilder.java | 147 System.arraycopy(mText, 0, newText, 0, mGapStart); 151 System.arraycopy(mText, oldLength - after, newText, newLength - after, after); 175 System.arraycopy(mText, where, mText, mGapStart + mGapLength - overlap, overlap); 178 System.arraycopy(mText, where + mGapLength - overlap, mText, mGapStart, overlap); 490 System.arraycopy(mSpans, i + 1, mSpans, i, count); 491 System.arraycopy(mSpanStarts, i + 1, mSpanStarts, i, count); 492 System.arraycopy(mSpanEnds, i + 1, mSpanEnds, i, count); 493 System.arraycopy(mSpanFlags, i + 1, mSpanFlags, i, count); 494 System.arraycopy(mSpanOrder, i + 1, mSpanOrder, i, count); [all...] |
| /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
| PduComposer.java | 187 protected void arraycopy(byte[] buf, int pos, int length) { method in class:PduComposer 295 arraycopy(text, 0, text.length); method 436 arraycopy(text, 0, text.length); method 985 arraycopy(partData, 0, partData.length); method [all...] |
| /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
| PduComposer.java | 194 protected void arraycopy(final byte[] buf, final int pos, final int length) { method in class:PduComposer 302 arraycopy(text, 0, text.length); method 443 arraycopy(text, 0, text.length); method 1052 arraycopy(partData, 0, partData.length); method [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/math/ |
| BigDecimal.java | 43 /* 5. System.arraycopy is faster than explicit loop as follows */ 49 /* but arraycopy is still the one to use, in general, until later */ [all...] |
| /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/ |
| BigDecimal.java | 40 /* 5. System.arraycopy is faster than explicit loop as follows */ 46 /* but arraycopy is still the one to use, in general, until later */ [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/ |
| BigDecimal.java | 42 /* 5. System.arraycopy is faster than explicit loop as follows */ 48 /* but arraycopy is still the one to use, in general, until later */ [all...] |
| /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
| BigMatrixImpl.java | 620 System.arraycopy(data[i], startColumn, 733 System.arraycopy(subMatrix, 0, data, 0, subMatrix.length); 741 System.arraycopy(subMatrix[i], 0, data[row + i], column, nCols); 760 System.arraycopy(data[row], 0, out[0], 0, ncols); 796 System.arraycopy(data[row], 0, out, 0, ncols); [all...] |
| /frameworks/base/core/java/android/net/ |
| NetworkStatsHistory.java | 420 System.arraycopy(bucketStart, index, bucketStart, dstPos, length); 421 if (activeTime != null) System.arraycopy(activeTime, index, activeTime, dstPos, length); 422 if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes, dstPos, length); 423 if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets, dstPos, length); 424 if (txBytes != null) System.arraycopy(txBytes, index, txBytes, dstPos, length); 425 if (txPackets != null) System.arraycopy(txPackets, index, txPackets, dstPos, length); 426 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
|
| /frameworks/support/core-ui/java/android/support/v4/widget/ |
| ViewDragHelper.java | 818 System.arraycopy(mInitialMotionX, 0, imx, 0, mInitialMotionX.length); 819 System.arraycopy(mInitialMotionY, 0, imy, 0, mInitialMotionY.length); 820 System.arraycopy(mLastMotionX, 0, lmx, 0, mLastMotionX.length); 821 System.arraycopy(mLastMotionY, 0, lmy, 0, mLastMotionY.length); 822 System.arraycopy(mInitialEdgesTouched, 0, iit, 0, mInitialEdgesTouched.length); 823 System.arraycopy(mEdgeDragsInProgress, 0, edip, 0, mEdgeDragsInProgress.length); 824 System.arraycopy(mEdgeDragsLocked, 0, edl, 0, mEdgeDragsLocked.length); [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
| SocketTest.java | [all...] |
| /libcore/ojluni/src/main/java/java/lang/ |
| FloatingDecimal.java | 125 System.arraycopy( b5p, 0, t, 0, b5p.length ); 360 System.arraycopy( digits, digitno, result, 0, ndigits ); [all...] |