HomeSort by relevance Sort by last modified time
    Searched defs:copyInto (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /libcore/ojluni/src/main/java/java/util/stream/
PipelineHelper.java 49 * {@link #copyInto(Sink, Spliterator)}, and {@link #wrapSink(Sink)} to execute
125 abstract<P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator);
Nodes.java 565 public void copyInto(T_ARR array, int offset) { }
663 public void copyInto(T[] dest, int destOffset) {
713 public void copyInto(T[] array, int offset) {
792 public void copyInto(T[] array, int offset) {
794 left.copyInto(array, offset);
797 right.copyInto(array, offset + (int) left.count());
806 copyInto(array, 0);
857 public void copyInto(T_ARR array, int offset) {
858 left.copyInto(array, offset);
861 right.copyInto(array, offset + (int) left.count())
    [all...]
Node.java 40 * {@link #asArray}, or {@link #copyInto} methods. A {@code Node} may have zero
164 void copyInto(T[] array, int offset);
260 * {@link #count()} and then invokes {@link #copyInto(T[], int)} with
272 copyInto(boxed, 0);
308 void copyInto(T_ARR array, int offset);
342 * is recommended to invoke {@link #copyInto(Object, int)}.
345 default void copyInto(Integer[] boxed, int offset) {
347 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Integer[], int)");
415 * it is recommended to invoke {@link #copyInto(Object, int)}.
418 default void copyInto(Long[] boxed, int offset)
    [all...]
AbstractPipeline.java 472 copyInto(wrapSink(Objects.requireNonNull(sink)), spliterator);
477 final <P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) {
ForEachOps.java 291 task.helper.copyInto(taskSink, rightSplit);
SpinedBuffer.java 188 public void copyInto(E[] array, int offset) {
216 copyInto(result, 0);
539 public void copyInto(T_ARR array, int offset) {
563 copyInto(result, 0);
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 589 void ASTTemplateKWAndArgsInfo::copyInto(const TemplateArgumentLoc *ArgArray,
  /frameworks/base/core/java/android/view/
TextureLayer.java 92 public boolean copyInto(Bitmap bitmap) {
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
CompareActivity.java 100 Method copyInto = hardwareLayer.getClass()
101 .getDeclaredMethod("copyInto", Bitmap.class);
102 if (!copyInto.isAccessible())
103 copyInto.setAccessible(true);
105 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "copyInto");
106 boolean success = (Boolean) copyInto.invoke(hardwareLayer, mHardwareBitmap);
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
NodeTest.java 114 n.copyInto(copy, 0);
DoubleNodeTest.java 136 n.copyInto(copy, 0);
IntNodeTest.java 136 n.copyInto(copy, 0);
LongNodeTest.java 136 n.copyInto(copy, 0);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
value.go 227 // copyInto makes a new value identical to v and adds it to the end of b.
228 func (v *Value) copyInto(b *Block) *Value {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
value.go 227 // copyInto makes a new value identical to v and adds it to the end of b.
228 func (v *Value) copyInto(b *Block) *Value {
  /external/guava/guava/src/com/google/common/collect/
Sets.java 524 * {@link #copyInto} and forget the {@code SetView} itself.
553 public <S extends Set<E>> S copyInto(S set) {
600 @Override public <S extends Set<E>> S copyInto(S set) {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 488 * {@link #copyInto} and forget the {@code SetView} itself.
517 public <S extends Set<E>> S copyInto(S set) {
564 @Override public <S extends Set<E>> S copyInto(S set) {
    [all...]
  /frameworks/base/libs/hwui/
VertexBuffer.h 91 void copyInto(const VertexBuffer& srcBuffer, float xOffset, float yOffset) {
  /external/protobuf/js/
message.js     [all...]
  /libcore/ojluni/src/main/java/java/util/
Vector.java 191 public synchronized void copyInto(Object[] anArray) {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 643 copyInto(SavedPrivates, CGF.LocalDeclMap);
650 copyInto(SavedLocals, CGF.LocalDeclMap);
668 static void copyInto(const DeclMapTy &src, DeclMapTy &dest) {
    [all...]
  /external/guice/lib/build/jdiff/
xerces.jar 
  /external/caliper/lib/
joda-time-2.1.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.8.1/
joda-time-2.8.1.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.9.1/
joda-time-2.9.1.jar 

Completed in 301 milliseconds

1 2 3 4 5 6 7 8