Searched refs:deepCopy (Results 1 – 15 of 15) sorted by relevance
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | RubyProtobuf.java | 59 … 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()
|
D | RubyMap.java | 347 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMap 353 newMap.table.put(key.dup(), message.deepCopy(context)); in deepCopy()
|
D | RubyRepeatedField.java | 334 protected RubyRepeatedField deepCopy(ThreadContext context) { in deepCopy() method in RubyRepeatedField 339 copy.storage.add(((RubyMessage) value).deepCopy(context)); in deepCopy()
|
D | RubyMessage.java | 401 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMessage 405 copy.addRepeatedField(fdef, this.getRepeatedField(context, fdef).deepCopy(context)); in deepCopy()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRBaseTree.h | 78 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone 152 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
D | ANTLRTree.h | 107 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRBaseTree.h | 78 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone 152 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
D | ANTLRTree.h | 107 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRBaseTree.h | 78 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone 152 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
D | ANTLRTree.h | 107 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseTree.h | 80 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone 156 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
D | ANTLRTree.h | 113 - (id) deepCopy; // performs a deepCopyWithZone: with the default zone
|
D | ANTLRTreeAdaptor.m | 123 return [aTree deepCopy];
|
D | ANTLRBaseTree.m | 480 - (id) deepCopy // performs a deepCopyWithZone: with the default zone
|
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/ |
D | NanoTest.java | 4198 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 …]
|