HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 151 - 175 of 1421) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LookupList.java 29 System.arraycopy(lookups, 0, newLookups, 0, lookups.length);
  /external/javassist/src/main/javassist/bytecode/
LongVector.java 53 System.arraycopy(objects, 0, newObj, 0, len);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
BufferedWriter.java 39 System.arraycopy(b, offset, buffer, position, length);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
DoubleArrayBuffer.java 70 System.arraycopy(backingArray, offset + position, dest, off, len);
FloatArrayBuffer.java 70 System.arraycopy(backingArray, offset + position, dest, off, len);
IntArrayBuffer.java 69 System.arraycopy(backingArray, offset + position, dest, off, len);
LongArrayBuffer.java 69 System.arraycopy(backingArray, offset + position, dest, off, len);
ShortArrayBuffer.java 70 System.arraycopy(backingArray, offset + position, dest, off, len);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/
MutableStack.java 44 System.arraycopy(stack, 0, newStack, 0, size);
OrderedStack.java 59 System.arraycopy(pool, index, container, 0, argNum);
  /external/proguard/src/proguard/classfile/visitor/
MultiClassPoolVisitor.java 71 System.arraycopy(classPoolVisitors, 0,
MultiClassVisitor.java 71 System.arraycopy(classVisitors, 0,
  /external/protobuf/java/src/test/java/com/google/protobuf/
BoundedByteStringTest.java 52 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
FormattingTuple.java 60 System.arraycopy(argArray, 0, trimmed, 0, trimemdLen);
  /frameworks/base/core/java/android/util/
ArraySet.java 307 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
308 System.arraycopy(oarray, 0, mArray, 0, mSize);
390 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
391 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
400 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
401 System.arraycopy(mArray, index, mArray, index + 1, mSize - index);
448 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
449 System.arraycopy(array.mArray, 0, mArray, 0, N);
505 System.arraycopy(ohashes, 0, mHashes, 0, index);
506 System.arraycopy(oarray, 0, mArray, 0, index)
    [all...]
SparseBooleanArray.java 114 System.arraycopy(mKeys, i + 1, mKeys, i, mSize - (i + 1));
115 System.arraycopy(mValues, i + 1, mValues, i, mSize - (i + 1));
122 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
123 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
  /frameworks/base/media/java/android/media/midi/
MidiPortImpl.java 74 System.arraycopy(message, offset, dest, length, size);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 85 System.arraycopy(intervals, 0, mIntervals, 0, intervals.length);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MethodLogger.java 43 System.arraycopy(args, 0, argsCopy, 0, args.length);
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 249 System.arraycopy (declared, 0, newFlags, 0, declared.length);
253 System.arraycopy (specified, 0, newFlags, 0, specified.length);
269 System.arraycopy (declared, index + 1, declared, index,
271 System.arraycopy (specified, index + 1, specified, index,
  /libcore/ojluni/src/main/java/java/io/
BufferedOutputStream.java 128 System.arraycopy(b, off, buf, count, len);
  /libcore/ojluni/src/main/java/java/nio/
HeapCharBuffer.java 126 System.arraycopy(hb, ix(position()), dst, offset, length);
162 System.arraycopy(src, offset, hb, ix(position()), length);
178 System.arraycopy(sb.hb, sb.ix(sb.position()),
198 System.arraycopy(hb, ix(position()), hb, ix(0), remaining());
HeapDoubleBuffer.java 121 System.arraycopy(hb, ix(position()), dst, offset, length);
157 System.arraycopy(src, offset, hb, ix(position()), length);
173 System.arraycopy(sb.hb, sb.ix(sb.position()),
193 System.arraycopy(hb, ix(position()), hb, ix(0), remaining());
HeapFloatBuffer.java 120 System.arraycopy(hb, ix(position()), dst, offset, length);
156 System.arraycopy(src, offset, hb, ix(position()), length);
172 System.arraycopy(sb.hb, sb.ix(sb.position()),
192 System.arraycopy(hb, ix(position()), hb, ix(0), remaining());
HeapIntBuffer.java 121 System.arraycopy(hb, ix(position()), dst, offset, length);
157 System.arraycopy(src, offset, hb, ix(position()), length);
173 System.arraycopy(sb.hb, sb.ix(sb.position()),
193 System.arraycopy(hb, ix(position()), hb, ix(0), remaining());

Completed in 1413 milliseconds

1 2 3 4 5 67 8 91011>>