HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 301 - 325 of 937) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/text/
DynamicLayout.java 415 System.arraycopy(mBlockEndLines, 0, blockEndLines, 0, mNumberOfBlocks);
489 System.arraycopy(mBlockEndLines, 0, blockEndLines, 0, firstBlock);
490 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock);
491 System.arraycopy(mBlockEndLines, lastBlock + 1,
493 System.arraycopy(mBlockIndices, lastBlock + 1,
498 System.arraycopy(mBlockEndLines, lastBlock + 1,
500 System.arraycopy(mBlockIndices, lastBlock + 1,
545 System.arraycopy(blockEndLines, 0, mBlockEndLines, 0, blockEndLines.length);
546 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length);
SpannableStringBuilder.java 137 System.arraycopy(mText, 0, newText, 0, mGapStart);
139 System.arraycopy(mText, oldLength - after, newText, newLength - after, after);
160 System.arraycopy(mText, where, mText, mGapStart + mGapLength - overlap, overlap);
163 System.arraycopy(mText, where + mGapLength - overlap, mText, mGapStart, overlap);
421 System.arraycopy(mSpans, i + 1, mSpans, i, count);
422 System.arraycopy(mSpanStarts, i + 1, mSpanStarts, i, count);
423 System.arraycopy(mSpanEnds, i + 1, mSpanEnds, i, count);
424 System.arraycopy(mSpanFlags, i + 1, mSpanFlags, i, count);
671 System.arraycopy(mSpans, 0, newspans, 0, mSpanCount);
672 System.arraycopy(mSpanStarts, 0, newspanstarts, 0, mSpanCount)
    [all...]
SpannableStringInternal.java 122 System.arraycopy(mSpans, 0, newtags, 0, mSpanCount);
123 System.arraycopy(mSpanData, 0, newdata, 0, mSpanCount * 3);
151 System.arraycopy(spans, i + 1, spans, i, c);
152 System.arraycopy(data, (i + 1) * COLUMNS,
259 System.arraycopy(ret, j, ret, j + 1, count - j);
281 System.arraycopy(ret, 0, nret, 0, count);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DB_Results.java 299 System.arraycopy(this.times, 0, this.times = new long[this.depth+10], 0, this.depth);
300 System.arraycopy(this.buffers, 0, this.buffers= new StringBuffer[this.depth+10], 0, this.depth);
431 System.arraycopy(BUILDS, 0, builds, 0, BUILDS_LENGTH);
472 System.arraycopy(KNOWN_COMPONENTS, 0, KNOWN_COMPONENTS = new String[length+1], 0, length);
486 System.arraycopy(COMPONENTS, 0, components, 0, length);
509 System.arraycopy(CONFIGS, 0, configs, 0, length);
549 System.arraycopy(CONFIG_DESCRIPTIONS, 0, descriptions, 0, length);
971 System.arraycopy(comments, 0, comments = new String[commentID+10], 0, length);
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 464 System.arraycopy(asubj, 0, data, 0, asubj.length);
467 .arraycopy(aissuer, 0, data, asubj.length + 1, method
622 System.arraycopy(data, 0, tmp, 0, data.length);
623 System.arraycopy(chunk, 0, tmp, data.length, len);
634 System.arraycopy(data, 0, subjNameData, 0, subjNameData.length);
636 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImplTest.java 323 System.arraycopy(supported, 0,
373 System.arraycopy(supported, 0,
375 System.arraycopy(supported, i,
434 System.arraycopy(supported, i,
488 System.arraycopy(supported, 0,
490 System.arraycopy(supported, i,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 227 System.arraycopy(X, 0, PO, 1, X.length);
238 System.arraycopy(X, 0, PO, 1, X.length);
239 System.arraycopy(Y, 0, PO, X.length + 1, Y.length);
414 System.arraycopy(X, 0, PO, 1, byteCount);
423 System.arraycopy(X, 0, PO, 1, byteCount);
424 System.arraycopy(Y, 0, PO, byteCount + 1, byteCount);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 795 System.arraycopy(buffer, bufferPos, bytes, 0, size);
805 System.arraycopy(buffer, bufferPos, bytes, 0, pos);
814 System.arraycopy(buffer, 0, bytes, pos, bufferSize);
820 System.arraycopy(buffer, 0, bytes, pos, size - pos);
868 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
872 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 740 System.arraycopy(buffer, bufferPos, bytes, 0, size);
750 System.arraycopy(buffer, bufferPos, bytes, 0, pos);
759 System.arraycopy(buffer, 0, bytes, pos, bufferSize);
765 System.arraycopy(buffer, 0, bytes, pos, size - pos);
813 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
817 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 676 System.arraycopy(buffer, bufferPos, bytes, 0, size);
686 System.arraycopy(buffer, bufferPos, bytes, 0, pos);
695 System.arraycopy(buffer, 0, bytes, pos, bufferSize);
701 System.arraycopy(buffer, 0, bytes, pos, size - pos);
751 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
756 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 465 System.arraycopy(asubj, 0, data, 0, asubj.length);
468 .arraycopy(aissuer, 0, data, asubj.length + 1, method
623 System.arraycopy(data, 0, tmp, 0, data.length);
624 System.arraycopy(chunk, 0, tmp, data.length, len);
635 System.arraycopy(data, 0, subjNameData, 0, subjNameData.length);
637 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 209 System.arraycopy(issuerDN, 0, this.issuerBytes, 0, issuerDN.length);
231 System.arraycopy(issuerBytes, 0, result, 0, issuerBytes.length);
345 System.arraycopy(subjectKeyIdentifier, 0, this.subjectKeyIdentifier, 0,
360 System.arraycopy(subjectKeyIdentifier, 0, res, 0, res.length);
377 System.arraycopy(authorityKeyIdentifier, 0,
394 System.arraycopy(authorityKeyIdentifier, 0, res, 0, res.length);
533 System.arraycopy(key, 0, subjectPublicKey, 0, key.length);
563 System.arraycopy(keyUsage, 0, this.keyUsage, 0, keyUsage.length);
578 System.arraycopy(keyUsage, 0, result, 0, keyUsage.length);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 212 System.arraycopy(bytes, start, out, offset, size);
324 System.arraycopy(bytes, cursor + start, arr, offset, length);
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 68 System.arraycopy(stack, 0, result.stack, 0, stack.length);
69 System.arraycopy(local, 0, result.local, 0, local.length);
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 212 System.arraycopy(bytes, start, out, offset, size);
324 System.arraycopy(bytes, cursor + start, arr, offset, length);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PolicyQualifierInfoTest.java 200 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
220 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DSAKeyFactoryImplTest.java 315 System.arraycopy(publicEncoding, 0, enc1, 0, 20);
356 System.arraycopy(publicEncoding, 0, enc1, 0, publicEncoding.length);
440 System.arraycopy(privateEncoding, 0, enc1, 0, 20);
481 System.arraycopy(privateEncoding, 0, enc1, 0, privateEncoding.length);
629 System.arraycopy(privateEncoding, 0, enc1, 0, lng); // enc1 contains incorrect encoding
665 System.arraycopy(publicEncoding, 0, enc2, 0, lng);; // enc2 contains incorrect encoding
761 System.arraycopy(publicEncoding, 0, enc1, 0, publicEncoding.length);
805 System.arraycopy(privateEncoding, 0, enc1, 0, privateEncoding.length);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 250 System.arraycopy(fastArray, position*slotsize, buffer, 0, slotsize);
264 System.arraycopy(chunk,slotpos,buffer,0,slotsize);
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
NamespaceSupport.java 135 System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
179 System.arraycopy(fNamespace, 0, namespacearray, 0, fNamespaceSize);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 436 System.arraycopy(m_array, 0, newarray, 0, i);
516 System.arraycopy(m_array, 0, newarray, 0, i);
598 System.arraycopy(m_array, 0, newarray, 0, i);
664 System.arraycopy(chars, copyfrom, m_array[m_lastChunk], m_firstFree,
681 System.arraycopy(m_array, 0, newarray, 0, i);
759 System.arraycopy(value.m_array[sourcechunk], sourcecolumn,
763 System.arraycopy(value.m_array[sourcechunk + 1], 0,
781 System.arraycopy(m_array, 0, newarray, 0, i);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERApplicationSpecific.java 64 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
270 System.arraycopy(input, index, tmp, 1, tmp.length - 1);
DERBitString.java 219 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1);
286 System.arraycopy(bytes, 1, data, 0, bytes.length - 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 182 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
259 System.arraycopy(block, start, result, 0, result.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
HMac.java 134 System.arraycopy(key, 0, inputPad, 0, keyLength);
142 System.arraycopy(inputPad, 0, outputBuf, 0, blockLength);
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 212 System.arraycopy(bytes, start, out, offset, size);
324 System.arraycopy(bytes, cursor + start, arr, offset, length);

Completed in 671 milliseconds

<<11121314151617181920>>