Home
last modified time | relevance | path

Searched refs:copyOf (Results 1 – 25 of 520) sorted by relevance

12345678910>>...21

/external/deqp-deps/glslang/glslang/MachineIndependent/
DSymbolTable.cpp279 TSymbol::TSymbol(const TSymbol& copyOf) in TSymbol() argument
281 name = NewPoolTString(copyOf.name->c_str()); in TSymbol()
282 uniqueId = copyOf.uniqueId; in TSymbol()
286 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf) in TVariable() argument
288 type.deepCopy(copyOf.type); in TVariable()
289 userType = copyOf.userType; in TVariable()
292 if (copyOf.numExtensions != 0) in TVariable()
293 setExtensions(copyOf.numExtensions, copyOf.extensions); in TVariable()
295 if (! copyOf.constArray.empty()) { in TVariable()
296 assert(! copyOf.type.isStruct()); in TVariable()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DAbstractImmutableSetTest.java52 protected abstract Set<String> copyOf(String[] elements); in copyOf() method in AbstractImmutableSetTest
53 protected abstract Set<String> copyOf(Collection<String> elements); in copyOf() method in AbstractImmutableSetTest
54 protected abstract Set<String> copyOf(Iterable<String> elements); in copyOf() method in AbstractImmutableSetTest
55 protected abstract Set<String> copyOf(Iterator<String> elements); in copyOf() method in AbstractImmutableSetTest
105 Set<String> set = copyOf(array); in testCopyOf_emptyArray()
112 Set<String> set = copyOf(array); in testCopyOf_arrayOfOneElement()
118 copyOf((String[]) null); in testCopyOf_nullArray()
127 copyOf(array); in testCopyOf_arrayContainingOnlyNull()
136 Set<String> set = copyOf(c); in testCopyOf_collection_empty()
143 Set<String> set = copyOf(c); in testCopyOf_collection_oneElement()
[all …]
DImmutableMultisetTest.java89 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_emptyArray()
95 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_arrayOfOneElement()
110 ImmutableMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
118 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_empty()
124 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_oneElement()
130 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_general()
137 ImmutableMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
144 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_multiset_empty()
150 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_multiset_oneElement()
156 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_multiset_general()
[all …]
DImmutableListTest.java168 List<String> list = ImmutableList.copyOf(array); in testCopyOf_emptyArray()
174 List<String> list = ImmutableList.copyOf(array); in testCopyOf_arrayOfOneElement()
180 ImmutableList.copyOf((String[]) null); in testCopyOf_nullArray()
189 ImmutableList.copyOf(array); in testCopyOf_arrayContainingOnlyNull()
198 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_empty()
204 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_oneElement()
210 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_general()
213 list = ImmutableList.copyOf(mutableList); in testCopyOf_collection_general()
221 ImmutableList.copyOf(c); in testCopyOf_collectionContainingNull()
229 List<String> list = ImmutableList.copyOf(iterator); in testCopyOf_iterator_empty()
[all …]
DImmutableSetTest.java71 @Override protected Set<String> copyOf(String[] elements) { in copyOf() method in ImmutableSetTest
72 return ImmutableSet.copyOf(elements); in copyOf()
75 @Override protected Set<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSetTest
76 return ImmutableSet.copyOf(elements); in copyOf()
79 @Override protected Set<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSetTest
80 return ImmutableSet.copyOf(elements); in copyOf()
83 @Override protected Set<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSetTest
84 return ImmutableSet.copyOf(elements); in copyOf()
88 ImmutableSet<String> set = ImmutableSet.copyOf(Lists.newArrayList("a", "a")); in testCreation_allDuplicates()
117 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet); in testCopyOf_copiesImmutableSortedSet()
DImmutableSortedSetTest.java86 @Override protected SortedSet<String> copyOf(String[] elements) { in copyOf() method in ImmutableSortedSetTest
87 return ImmutableSortedSet.copyOf(elements); in copyOf()
90 @Override protected SortedSet<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSortedSetTest
91 return ImmutableSortedSet.copyOf(elements); in copyOf()
94 @Override protected SortedSet<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSortedSetTest
95 return ImmutableSortedSet.copyOf(elements); in copyOf()
98 @Override protected SortedSet<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSortedSetTest
99 return ImmutableSortedSet.copyOf(elements); in copyOf()
374 copyOf(asList("e", "a", "f", "b", "d", "c")); in testCopyOf_ordering()
380 copyOf(asList("e", "a", "e", "f", "b", "b", "d", "a", "c")); in testCopyOf_ordering_dupes()
[all …]
DImmutableBiMapTest.java317 = ImmutableBiMap.copyOf(Collections.<String, Integer>emptyMap()); in testCopyOfEmptyMap()
319 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOfEmptyMap()
325 = ImmutableBiMap.copyOf(Collections.singletonMap("one", 1)); in testCopyOfSingletonMap()
327 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOfSingletonMap()
336 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); in testCopyOf()
338 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOf()
351 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testFromHashMap()
358 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testFromImmutableMap()
382 ImmutableBiMap.copyOf(map); in testDuplicateValues()
394 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testForcePut()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractImmutableSetTest.java56 protected abstract Set<String> copyOf(String[] elements); in copyOf() method in AbstractImmutableSetTest
57 protected abstract Set<String> copyOf(Collection<String> elements); in copyOf() method in AbstractImmutableSetTest
58 protected abstract Set<String> copyOf(Iterable<String> elements); in copyOf() method in AbstractImmutableSetTest
59 protected abstract Set<String> copyOf(Iterator<String> elements); in copyOf() method in AbstractImmutableSetTest
109 Set<String> set = copyOf(array); in testCopyOf_emptyArray()
116 Set<String> set = copyOf(array); in testCopyOf_arrayOfOneElement()
122 copyOf((String[]) null); in testCopyOf_nullArray()
131 copyOf(array); in testCopyOf_arrayContainingOnlyNull()
140 Set<String> set = copyOf(c); in testCopyOf_collection_empty()
147 Set<String> set = copyOf(c); in testCopyOf_collection_oneElement()
[all …]
DImmutableMultisetTest.java66 return ImmutableMultiset.copyOf(elements); in suite()
77 return ImmutableMultiset.copyOf(elements).elementSet(); in suite()
88 return ImmutableMultiset.copyOf(elements).asList(); in suite()
181 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_emptyArray()
187 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_arrayOfOneElement()
202 ImmutableMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
210 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_empty()
216 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_oneElement()
222 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_general()
229 ImmutableMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
[all …]
DImmutableSortedMultisetTest.java62 return ImmutableSortedMultiset.copyOf(elements); in suite()
79 return ImmutableSortedMultiset.copyOf(elements).asList(); in suite()
162 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_emptyArray()
168 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_arrayOfOneElement()
191 ImmutableSortedMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
199 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_empty()
205 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_oneElement()
211 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_general()
218 ImmutableSortedMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
225 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_multiset_empty()
[all …]
DImmutableListTest.java251 List<String> list = ImmutableList.copyOf(array); in testCopyOf_emptyArray()
257 List<String> list = ImmutableList.copyOf(array); in testCopyOf_arrayOfOneElement()
263 ImmutableList.copyOf((String[]) null); in testCopyOf_nullArray()
272 ImmutableList.copyOf(array); in testCopyOf_arrayContainingOnlyNull()
281 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_empty()
287 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_oneElement()
293 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_general()
296 list = ImmutableList.copyOf(mutableList); in testCopyOf_collection_general()
304 ImmutableList.copyOf(c); in testCopyOf_collectionContainingNull()
312 List<String> list = ImmutableList.copyOf(iterator); in testCopyOf_iterator_empty()
[all …]
DImmutableSortedSetTest.java193 @Override protected SortedSet<String> copyOf(String[] elements) { in copyOf() method in ImmutableSortedSetTest
194 return ImmutableSortedSet.copyOf(elements); in copyOf()
197 @Override protected SortedSet<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSortedSetTest
198 return ImmutableSortedSet.copyOf(elements); in copyOf()
201 @Override protected SortedSet<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSortedSetTest
202 return ImmutableSortedSet.copyOf(elements); in copyOf()
205 @Override protected SortedSet<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSortedSetTest
206 return ImmutableSortedSet.copyOf(elements); in copyOf()
532 copyOf(asList("e", "a", "f", "b", "d", "c")); in testCopyOf_ordering()
538 copyOf(asList("e", "a", "e", "f", "b", "b", "d", "a", "c")); in testCopyOf_ordering_dupes()
[all …]
DImmutableSetTest.java121 @Override protected Set<String> copyOf(String[] elements) { in copyOf() method in ImmutableSetTest
122 return ImmutableSet.copyOf(elements); in copyOf()
125 @Override protected Set<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSetTest
126 return ImmutableSet.copyOf(elements); in copyOf()
129 @Override protected Set<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSetTest
130 return ImmutableSet.copyOf(elements); in copyOf()
133 @Override protected Set<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSetTest
134 return ImmutableSet.copyOf(elements); in copyOf()
138 ImmutableSet<String> set = ImmutableSet.copyOf(Lists.newArrayList("a", "a")); in testCreation_allDuplicates()
209 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet); in testCopyOf_copiesImmutableSortedSet()
DImmutableBiMapTest.java358 = ImmutableBiMap.copyOf(Collections.<String, Integer>emptyMap()); in testCopyOfEmptyMap()
360 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOfEmptyMap()
366 = ImmutableBiMap.copyOf(Collections.singletonMap("one", 1)); in testCopyOfSingletonMap()
368 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOfSingletonMap()
377 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); in testCopyOf()
379 assertSame(copy, ImmutableBiMap.copyOf(copy)); in testCopyOf()
392 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testFromHashMap()
399 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testFromImmutableMap()
423 ImmutableBiMap.copyOf(map); in testDuplicateValues()
435 ImmutableBiMap<String, Integer> bimap = ImmutableBiMap.copyOf( in testForcePut()
[all …]
DImmutableClassToInstanceMapTest.java76 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_empty()
79 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_empty()
86 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_valid()
95 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_valid()
102 ImmutableClassToInstanceMap.copyOf(nullKey); in testCopyOf_map_nulls()
110 ImmutableClassToInstanceMap.copyOf(nullValue); in testCopyOf_map_nulls()
118 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_empty()
125 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_valid()
DBenchmarkHelpers.java68 return ImmutableSet.copyOf(contents); in create()
73 return ImmutableSortedSet.copyOf(contents); in create()
97 return ImmutableListMultimap.copyOf(contents); in create()
130 return ImmutableSetMultimap.copyOf(contents); in create()
160 return ImmutableMap.copyOf(map); in create()
185 return ImmutableSortedMap.copyOf(map); in create()
202 return ImmutableBiMap.copyOf(map); in create()
231 return ImmutableMultiset.copyOf(contents); in create()
248 return ImmutableSortedMultiset.copyOf(contents); in create()
287 return ImmutableTable.copyOf(contents); in create()
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedMultiset.java118 return copyOf(Ordering.natural(), Arrays.asList(e1, e2)); in of()
129 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3)); in of()
141 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of()
153 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of()
169 return copyOf(Ordering.natural(), all); in of()
178 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedMultiset
179 return copyOf(Ordering.natural(), Arrays.asList(elements)); in copyOf()
204 public static <E> ImmutableSortedMultiset<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
209 return copyOf(naturalOrder, elements); in copyOf()
222 public static <E> ImmutableSortedMultiset<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
[all …]
DImmutableSortedSet.java217 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
248 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
254 return copyOf(naturalOrder, elements); in copyOf()
286 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
292 return copyOf(naturalOrder, elements); in copyOf()
306 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
312 return copyOf(naturalOrder, elements); in copyOf()
324 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
342 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
378 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
DModifierKeyCombination.java75 return ofOnAndDontCareKeys(ImmutableSet.copyOf(onKeys), ImmutableSet.<ModifierKey> of()); in ofOnKeys()
87 return ModifierKeySimplifier.simplifyInput(ImmutableSet.copyOf(onKeys), in ofOnAndDontCareKeys()
88 ImmutableSet.copyOf(dontCareKeys)); in ofOnAndDontCareKeys()
141 ImmutableSortedSet<ModifierKey> sortedOnKeys1 = ImmutableSortedSet.copyOf(onKeys); in compareTo()
142 ImmutableSortedSet<ModifierKey> sortedOnKeys2 = ImmutableSortedSet.copyOf(o.onKeys); in compareTo()
163 ImmutableSortedSet<ModifierKey> sortedOffKeys1 = ImmutableSortedSet.copyOf(offKeys); in compareTo()
164 ImmutableSortedSet<ModifierKey> sortedOffKeys2 = ImmutableSortedSet.copyOf(o.offKeys); in compareTo()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSet.java79 return copyOf(all.iterator()); in of()
82 public static <E> ImmutableSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSet
94 public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableSet
96 return copyOf(iterable); in copyOf()
99 public static <E> ImmutableSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSet
105 return copyOf(elements.iterator()); in copyOf()
108 public static <E> ImmutableSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSet
203 return copyOf(contents.iterator()); in build()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/
DSuperclassChainTest.java69 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(objectClassProto))); in testGetSuperclassChain()
73 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(oneClassProto))); in testGetSuperclassChain()
77 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(twoClassProto))); in testGetSuperclassChain()
81 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(threeClassProto))); in testGetSuperclassChain()
100 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(twoClassProto))); in testGetSuperclassChain_Unresolved()
104 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(threeClassProto))); in testGetSuperclassChain_Unresolved()
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DNettyServerStreamTest.java103 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in writeMessageShouldSendResponse()
114 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in writeMessageShouldSendResponse()
131 ImmutableListMultimap.copyOf(Utils.convertServerHeaders(headers)); in writeHeadersShouldSendHeaders()
140 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in writeHeadersShouldSendHeaders()
148 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeBeforeClientHalfCloseShouldSucceed()
160 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in closeBeforeClientHalfCloseShouldSucceed()
175 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeWithErrorBeforeClientHalfCloseShouldSucceed()
188 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in closeWithErrorBeforeClientHalfCloseShouldSucceed()
202 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeAfterClientHalfCloseShouldSucceed()
222 assertThat(ImmutableListMultimap.copyOf(cmd.headers())) in closeAfterClientHalfCloseShouldSucceed()
[all …]
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DInstrumentationConfiguration.java62 this.classNameTranslations = ImmutableMap.copyOf(classNameTranslations); in InstrumentationConfiguration()
63 this.interceptedMethods = ImmutableSet.copyOf(interceptedMethods); in InstrumentationConfiguration()
64 this.instrumentedPackages = ImmutableList.copyOf(instrumentedPackages); in InstrumentationConfiguration()
65 this.instrumentedClasses = ImmutableSet.copyOf(instrumentedClasses); in InstrumentationConfiguration()
66 this.classesToNotAcquire = ImmutableSet.copyOf(classesToNotAcquire); in InstrumentationConfiguration()
67 this.packagesToNotAcquire = ImmutableSet.copyOf(packagesToNotAquire); in InstrumentationConfiguration()
68 this.classesToNotInstrument = ImmutableSet.copyOf(classesToNotInstrument); in InstrumentationConfiguration()
69 this.packagesToNotInstrument = ImmutableSet.copyOf(packagesToNotInstrument); in InstrumentationConfiguration()
73 this.methodsToIntercept = ImmutableSet.copyOf(convertToSlashes(methodsToIntercept())); in InstrumentationConfiguration()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java47 return ImmutableList.copyOf(elements); in create()
75 return ImmutableList.copyOf(list).reverse(); in create()
86 return ImmutableList.copyOf(all) in create()
98 return ImmutableList.copyOf(all) in create()
114 return ImmutableList.copyOf(all) in create()
146 return ImmutableList.copyOf(elements); in create()
/external/deqp-deps/glslang/glslang/Include/
DTypes.h1414 void shallowCopy(const TType& copyOf) in shallowCopy() argument
1416 basicType = copyOf.basicType; in shallowCopy()
1417 sampler = copyOf.sampler; in shallowCopy()
1418 qualifier = copyOf.qualifier; in shallowCopy()
1419 vectorSize = copyOf.vectorSize; in shallowCopy()
1420 matrixCols = copyOf.matrixCols; in shallowCopy()
1421 matrixRows = copyOf.matrixRows; in shallowCopy()
1422 vector1 = copyOf.vector1; in shallowCopy()
1423 arraySizes = copyOf.arraySizes; // copying the pointer only, not the contents in shallowCopy()
1424 fieldName = copyOf.fieldName; in shallowCopy()
[all …]

12345678910>>...21