Home
last modified time | relevance | path

Searched refs:deepCopy (Results 1 – 14 of 14) sorted by relevance

/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyProtobuf.java59 … public static IRubyObject deepCopy(ThreadContext context, IRubyObject self, IRubyObject message) { in deepCopy() method in RubyProtobuf
61 return ((RubyMessage) message).deepCopy(context); in deepCopy()
63 return ((RubyRepeatedField) message).deepCopy(context); in deepCopy()
65 return ((RubyMap) message).deepCopy(context); in deepCopy()
DRubyRepeatedField.java334 protected RubyRepeatedField deepCopy(ThreadContext context) { in deepCopy() method in RubyRepeatedField
339 copy.storage.add(((RubyMessage) value).deepCopy(context)); in deepCopy()
DRubyMap.java347 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMap
353 newMap.table.put(key.dup(), message.deepCopy(context)); in deepCopy()
DRubyMessage.java401 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMessage
405 copy.addRepeatedField(fdef, this.getRepeatedField(context, fdef).deepCopy(context)); in deepCopy()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DViewData.java126 final Map<List</*@Nullable*/ TagValue>, AggregationData> deepCopy = in create() local
131 deepCopy.put( in create()
140 view, Collections.unmodifiableMap(deepCopy), arg, arg.getStart(), arg.getEnd()); in create()
149 Collections.unmodifiableMap(deepCopy), in create()
176 Map<List</*@Nullable*/ TagValue>, AggregationData> deepCopy =
181 deepCopy.put(
187 Collections.unmodifiableMap(deepCopy),
/external/antlr/runtime/ObjC/Framework/
DBaseTree.h80 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
156 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
DTree.h113 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
DTreeAdaptor.m123 return [aTree deepCopy];
DBaseTree.m485 - (id) deepCopy // performs a deepCopyWithZone: with the default zone
/external/deqp-deps/glslang/glslang/MachineIndependent/
DSymbolTable.cpp288 type.deepCopy(copyOf.type); in TVariable()
324 returnType.deepCopy(copyOf.returnType); in TFunction()
DParseHelper.cpp7026 existingName->getType().getReferentType()->deepCopy(blockType); in declareBlock()
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4198 setMap(a.int32ToInt32Field, deepCopy(int32Values), deepCopy(int32Values)); in testMapEquals()
4199 setMap(b.int32ToInt32Field, deepCopy(int32Values), deepCopy(int32Values)); in testMapEquals()
4207 deepCopy(int32Values), deepCopy(messageValues)); in testMapEquals()
4209 deepCopy(int32Values), deepCopy(messageValues)); in testMapEquals()
4214 setMap(a.stringToInt32Field, deepCopy(stringValues), deepCopy(int32Values)); in testMapEquals()
4215 setMap(b.stringToInt32Field, deepCopy(stringValues), deepCopy(int32Values)); in testMapEquals()
4220 setMap(a.int32ToBytesField, deepCopy(int32Values), deepCopy(bytesValues)); in testMapEquals()
4221 setMap(b.int32ToBytesField, deepCopy(int32Values), deepCopy(bytesValues)); in testMapEquals()
4227 setMap(a.int32ToStringField, deepCopy(int32Values), deepCopy(stringValues)); in testMapEquals()
4228 setMap(b.int32ToStringField, deepCopy(int32Values), deepCopy(stringValues)); in testMapEquals()
[all …]
/external/deqp-deps/glslang/glslang/Include/
DTypes.h1434 void deepCopy(const TType& copyOf) in deepCopy() function
1437 deepCopy(copyOf, copied); in deepCopy()
1453 newType->deepCopy(*this); in clone()
2098 void deepCopy(const TType& copyOf, TMap<TTypeList*,TTypeList*>& copiedMap) in deepCopy() function
2118 typeLoc.type->deepCopy(*(*copyOf.structure)[i].type, copiedMap); in deepCopy()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageManager.java198 return bundle == null ? null : bundle.deepCopy(); in deepCopyNullablePersistableBundle()