Home
last modified time | relevance | path

Searched defs:deepCopy (Results 1 – 10 of 10) sorted by relevance

/external/angle/src/compiler/translator/
DIntermNode.h219 virtual TIntermLoop *deepCopy() const override { return new TIntermLoop(*this); } in deepCopy() function
250 virtual TIntermBranch *deepCopy() const override { return new TIntermBranch(*this); } in deepCopy() function
268 TIntermTyped *deepCopy() const override { return new TIntermSymbol(*this); } in deepCopy() function
328 TIntermTyped *deepCopy() const override { return new TIntermConstantUnion(*this); } in deepCopy() function
429 TIntermTyped *deepCopy() const override { return new TIntermSwizzle(*this); } in deepCopy() function
473 TIntermTyped *deepCopy() const override { return new TIntermBinary(*this); } in deepCopy() function
529 TIntermTyped *deepCopy() const override { return new TIntermUnary(*this); } in deepCopy() function
603 TIntermTyped *deepCopy() const override { return new TIntermAggregate(*this); } in deepCopy() function
694 TIntermBlock *deepCopy() const override { return new TIntermBlock(*this); } in deepCopy() function
721 TIntermTyped *deepCopy() const override in deepCopy() function
[all …]
/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
DRubyMap.java347 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMap
DRubyRepeatedField.java334 protected RubyRepeatedField deepCopy(ThreadContext context) { in deepCopy() method in RubyRepeatedField
DRubyMessage.java436 protected IRubyObject deepCopy(ThreadContext context) { in deepCopy() method in RubyMessage
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DViewData.java126 final Map<List</*@Nullable*/ TagValue>, AggregationData> deepCopy = in create() local
/external/antlr/runtime/ObjC/Framework/
DBaseTree.m486 {
/external/angle/third_party/glslang/src/glslang/Include/
DTypes.h1590 void deepCopy(const TType& copyOf) in deepCopy() function
2416 void deepCopy(const TType& copyOf, TMap<TTypeList*,TTypeList*>& copiedMap) in deepCopy() function
/external/deqp-deps/glslang/glslang/Include/
DTypes.h1590 void deepCopy(const TType& copyOf) in deepCopy() function
2416 void deepCopy(const TType& copyOf, TMap<TTypeList*,TTypeList*>& copiedMap) in deepCopy() function
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4320 private static <T> T[] deepCopy(T[] orig) throws Exception { in deepCopy() method in NanoTest