/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...] |
ForEachOps.java | 291 task.helper.copyInto(taskSink, rightSplit);
|
/frameworks/base/core/java/android/view/ |
HardwareLayer.java | 94 public boolean copyInto(Bitmap bitmap) {
|
TextureView.java | 608 mLayer.copyInto(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 | 92 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);
|
/external/guava/guava/src/com/google/common/collect/ |
FluentIterable.java | 485 public final <C extends Collection<? super E>> C copyInto(C collection) {
|
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/ |
FluentIterable.java | 461 public final <C extends Collection<? super E>> C copyInto(C collection) {
|
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...] |
/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);
|
/external/clang/include/clang/AST/ |
TemplateBase.h | 605 void copyInto(TemplateArgumentListInfo &List) const;
|
/libcore/ojluni/src/main/java/java/util/ |
Vector.java | 191 public synchronized void copyInto(Object[] anArray) { [all...] |