HomeSort by relevance Sort by last modified time
    Searched refs:copyOf (Results 126 - 150 of 566) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 91 public static <K, V> ImmutableBiMap<K, V> copyOf(
103 ImmutableMap<K, V> immutableMap = ImmutableMap.copyOf(map);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimapTest.java 89 = ImmutableMultimap.copyOf(setMultimap);
90 assertSame("copyOf(ImmutableSetMultimap) should not create a new instance",
96 = ImmutableMultimap.copyOf(listMultimap);
97 assertSame("copyOf(ImmutableListMultimap) should not create a new instance",
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMultimapTest.java 89 = ImmutableMultimap.copyOf(setMultimap);
90 assertSame("copyOf(ImmutableSetMultimap) should not create a new instance",
96 = ImmutableMultimap.copyOf(listMultimap);
97 assertSame("copyOf(ImmutableListMultimap) should not create a new instance",
  /external/guava/guava-tests/test/com/google/common/reflect/
AbstractInvocationHandlerTest.java 43 assertEquals(LIST1, ImmutableList.copyOf(newDelegatingList(LIST1)));
44 assertEquals(LIST1, ImmutableList.copyOf(newDelegatingListWithEquals(LIST1)));
  /external/guice/core/src/com/google/inject/internal/
MembersInjectorStore.java 51 this.typeListenerBindings = ImmutableList.copyOf(typeListenerBindings);
134 return ImmutableList.copyOf(injectors);
PrivateElementsImpl.java 73 elements = ImmutableList.copyOf(elementsMutable);
97 exposedKeysToSources = ImmutableMap.copyOf(exposedKeysToSourcesMutable);
  /external/libbackup/src/com/google/android/libraries/backup/shadow/
SharedPreferencesBackupHelperSimulator.java 51 return ImmutableSet.copyOf((String[]) prefGroupsField.get(helper));
98 value = ImmutableSet.copyOf((Set<?>) value);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
BooleanArrayList.java 119 return new BooleanArrayList(Arrays.copyOf(array, capacity), size);
221 array = Arrays.copyOf(array, newSize);
DoubleArrayList.java 120 return new DoubleArrayList(Arrays.copyOf(array, capacity), size);
222 array = Arrays.copyOf(array, newSize);
FloatArrayList.java 118 return new FloatArrayList(Arrays.copyOf(array, capacity), size);
220 array = Arrays.copyOf(array, newSize);
IntArrayList.java 118 return new IntArrayList(Arrays.copyOf(array, capacity), size);
220 array = Arrays.copyOf(array, newSize);
LongArrayList.java 118 return new LongArrayList(Arrays.copyOf(array, capacity), size);
220 array = Arrays.copyOf(array, newSize);
  /external/turbine/java/com/google/turbine/binder/
ClassPathBinder.java 74 SimpleEnv<ClassSymbol, BytecodeBoundClass> env = new SimpleEnv<>(ImmutableMap.copyOf(map));
75 SimpleEnv<ModuleSymbol, ModuleInfo> moduleEnv = new SimpleEnv<>(ImmutableMap.copyOf(modules));
CtSymClassBinder.java 90 SimpleEnv<ClassSymbol, BytecodeBoundClass> env = new SimpleEnv<>(ImmutableMap.copyOf(map));
91 Env<ModuleSymbol, ModuleInfo> moduleEnv = new SimpleEnv<>(ImmutableMap.copyOf(modules));
  /external/turbine/java/com/google/turbine/diag/
TurbineDiagnostic.java 87 return create(kind, diagnostic, ImmutableList.copyOf(args));
112 return create(kind, diagnostic, ImmutableList.copyOf(args));
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardService.java 165 byte[] result = Arrays.copyOf(first, totalLength);
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardService.java 165 byte[] result = Arrays.copyOf(first, totalLength);
  /development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
CardService.java 165 byte[] result = Arrays.copyOf(first, totalLength);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
MediaIDHelper.java 112 String[] parentHierarchy = Arrays.copyOf(hierarchy, hierarchy.length-1);
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableListTypeAdatperFactory.java 62 return (T) ImmutableList.copyOf(arrayList);
ImmutableMapTypeAdapterFactory.java 62 return (T) ImmutableMap.copyOf(hashMap);
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
ModifierKeyCombinationSet.java 38 return new ModifierKeyCombinationSet(ImmutableSortedSet.copyOf(simplifiedSet));
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
SourceFileGenerationException.java 45 this.generatedClassNames = ImmutableSet.copyOf(generatedClassNames);
SourceFileGenerator.java 52 ImmutableSet.<Element>copyOf(getOriginatingElements(input));
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
SetProducer.java 43 return new SetProducer<T>(ImmutableSet.copyOf(producers));

Completed in 1104 milliseconds

1 2 3 4 56 7 8 91011>>