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

1 2 3 4 5 6 7 8 910

  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SetOperationsTest.java 50 = Sets.union(friends, enemies).copyInto(new HashSet<String>());
68 = Sets.intersection(friends, enemies).copyInto(new HashSet<String>());
86 = Sets.difference(friends, enemies).copyInto(new HashSet<String>());
112 .copyInto(new HashSet<String>());
121 copyInto(new HashSet<String>());
  /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/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);
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...]
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...]
AbstractPipeline.java 472 copyInto(wrapSink(Objects.requireNonNull(sink)), spliterator);
477 final <P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) {
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...]
  /frameworks/base/core/java/android/view/
TextureLayer.java 92 public boolean copyInto(Bitmap bitmap) {
  /external/guava/guava-tests/test/com/google/common/collect/
SetOperationsTest.java 274 = Sets.union(friends, enemies).copyInto(new HashSet<String>());
292 = Sets.intersection(friends, enemies).copyInto(new HashSet<String>());
310 = Sets.difference(friends, enemies).copyInto(new HashSet<String>());
336 .copyInto(new HashSet<String>());
345 copyInto(new HashSet<String>());
FluentIterableTest.java 692 assertThat(fluent(1, 3, 5).copyInto(Lists.newArrayList(1, 2)))
697 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2)))
702 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2, 3, 5)))
717 assertThat(FluentIterable.from(iterable).copyInto(list))
  /frameworks/base/libs/hwui/
VertexBuffer.h 91 void copyInto(const VertexBuffer& srcBuffer, float xOffset, float yOffset) {
  /libcore/ojluni/src/main/java/java/security/
Identity.java 320 certificates.copyInto(certs);
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java 164 vector.copyInto(as);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
flagalloc.go 111 c := v.copyInto(b)
155 c := v.copyInto(b)
tighten.go 161 v.SetArg(i, a.copyInto(b.Preds[i].b))
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18902.go 100 // Note: when test was written, before changes=92, after=50 (was 62 w/o rematerialization NoXPos in *Value.copyInto())
101 // and before sumdiffs=784, after=180 (was 446 w/o rematerialization NoXPos in *Value.copyInto())
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
flagalloc.go 111 c := v.copyInto(b)
155 c := v.copyInto(b)
tighten.go 161 v.SetArg(i, a.copyInto(b.Preds[i].b))
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18902.go 100 // Note: when test was written, before changes=92, after=50 (was 62 w/o rematerialization NoXPos in *Value.copyInto())
101 // and before sumdiffs=784, after=180 (was 446 w/o rematerialization NoXPos in *Value.copyInto())
  /external/guava/guava/src/com/google/common/collect/
FluentIterable.java 485 public final <C extends Collection<? super E>> C copyInto(C collection) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
FluentIterable.java 461 public final <C extends Collection<? super E>> C copyInto(C collection) {
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DoubleNodeTest.java 136 n.copyInto(copy, 0);
IntNodeTest.java 136 n.copyInto(copy, 0);
LongNodeTest.java 136 n.copyInto(copy, 0);
NodeTest.java 114 n.copyInto(copy, 0);

Completed in 5783 milliseconds

1 2 3 4 5 6 7 8 910