HomeSort by relevance Sort by last modified time
    Searched defs:arraycopy (Results 101 - 125 of 1254) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
LongVector.java 53 System.arraycopy(objects, 0, newObj, 0, len);
  /external/mockito/src/main/java/org/mockito/internal/invocation/
ArgumentsProcessor.java 35 System.arraycopy(args, 0, newArgs, 0, nonVarArgsCount);
36 System.arraycopy(varArgs, 0, newArgs, nonVarArgsCount, varArgsCount);
  /external/okhttp/okio/okio/src/main/java/okio/
Base64.java 106 System.arraycopy(out, 0, prefix, 0, outCount);
  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 230 System.arraycopy(attributes, 0,
261 System.arraycopy(attributes, index + 1,
  /external/proguard/src/proguard/classfile/instruction/visitor/
MultiInstructionVisitor.java 74 System.arraycopy(instructionVisitors, 0,
  /external/proguard/src/proguard/util/
ArrayUtil.java 396 System.arraycopy(array, 0,
469 System.arraycopy(array, index,
487 System.arraycopy(array, index + 1,
512 System.arraycopy(array, 0,
585 System.arraycopy(array, index,
603 System.arraycopy(array, index + 1,
628 System.arraycopy(array, 0,
701 System.arraycopy(array, index,
719 System.arraycopy(array, index + 1,
744 System.arraycopy(array, 0
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSignature.java 27 System.arraycopy(mSignature, 0, bytes, 0, mSignature.length);
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
SortAndPruneComposites.java 60 System.arraycopy(originalArray, 0, sortedArray, 0, originalArrrayLength);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
MemoryDataStore.java 34 System.arraycopy(b, 0, buf, position, b.length);
40 System.arraycopy(b, off, buf, position, len);
72 System.arraycopy(buf, position, b, 0, readLength);
85 System.arraycopy(buf, position, b, 0, readLength);
  /external/volley/src/main/java/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 77 System.arraycopy(buf, 0, newbuf, 0, count);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ByteBuffer.java 110 System.arraycopy(buffer, offset, this.buffer, 0, length);
199 System.arraycopy(bytes, offset, buffer, length, len);
323 System.arraycopy(oldBuf, 0, buffer, 0, oldBuf.length);
  /frameworks/base/core/java/android/nfc/
NdefMessage.java 123 System.arraycopy(records, 0, mRecords, 1, records.length);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseOutputStream.java 66 System.arraycopy(mBuf, 0, newBuf, 0, len);
78 System.arraycopy(mBuf, 0, newBuf, 0, mEnd >>> 3);
  /frameworks/base/obex/javax/obex/
ObexSession.java 88 System.arraycopy(description, 1, realmString, 0, realmString.length);
163 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
170 System.arraycopy(challenge, 0, digest, 0, challenge.length);
173 System.arraycopy(password, 0, digest, challenge.length + 1, password.length);
179 System.arraycopy(ObexHelper.computeMd5Hash(digest), 0, header.mAuthResp, 2, 16);
184 System.arraycopy(challenge, 0, header.mAuthResp, 20, 16);
209 System.arraycopy(mChallengeDigest, 0, temp, 0, 16);
210 System.arraycopy(correctPassword, 0, temp, 16, correctPassword.length);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/util/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
48 System.arraycopy(mData, 0, result, 0, mSize);
  /frameworks/base/rs/java/android/renderscript/
ScriptC.java 99 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSmsAddress.java 43 System.arraycopy(data, offset, origBytes, 0, length);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
Base64.java 163 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 133 System.arraycopy(key1, 2, exp, 0, 24);
  /libcore/ojluni/src/main/java/java/io/
CharArrayReader.java 141 System.arraycopy(buf, pos, b, off, len);
  /libcore/ojluni/src/main/java/java/security/
MessageDigestSpi.java 182 System.arraycopy(digest, 0, buf, offset, digest.length);
  /libcore/ojluni/src/main/java/java/util/jar/
JarOutputStream.java 100 System.arraycopy(edata, 0, tmp, 4, edata.length);
  /libcore/ojluni/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 123 System.arraycopy(iv, offset, this.iv, 0, blockSize);
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/serial/
TCKValueRangeSerialization.java 147 System.arraycopy(bad1, 0, val, 114, bad1.length);
158 System.arraycopy(bad1, 0, val, 114, bad2.length);
169 System.arraycopy(bad1, 0, val, 114, bad3.length);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleWriter.java 63 System.arraycopy(src, offset, buf, pos, count);
73 System.arraycopy(buf, 0, toReturn, 0, pos);

Completed in 1831 milliseconds

1 2 3 45 6 7 8 91011>>