Searched refs:clone (Results 1 - 25 of 1617) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreParameters.java35 public Object clone() { method in class:MyCertStoreParameters
37 return super.clone();
/external/clang/test/PCH/
H A Dcxx-exprs.cpp18 New *clone() { function in class:New
26 return n->clone();
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DReverseAxesWalker.java138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone();
140 clone.setRoot(this.getRoot());
142 clone.setPredicateCount(predicateIndex);
144 clone.setPrevWalker(null);
145 clone.setNextWalker(null);
146 wi().setLastUsedWalker(clone);
152 while (DTM.NULL != (next = clone.nextNode()))
201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone();
[all...]
H A DOneStepIterator.java135 public Object clone() throws CloneNotSupportedException method in class:OneStepIterator
139 OneStepIterator clone = (OneStepIterator) super.clone();
143 clone.m_iterator = m_iterator.cloneIterator();
145 return clone;
159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset();
160 clone.m_iterator = m_iterator;
162 return clone;
204 OneStepIterator clone = (OneStepIterator) this.clone();
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java8 Object clone(); method in interface:Selector
/external/chromium_org/third_party/icu/source/common/
H A Dparsepos.cpp17 ParsePosition::clone() const { function in class:ParsePosition
/external/icu/icu4c/source/common/
H A Dparsepos.cpp17 ParsePosition::clone() const { function in class:ParsePosition
/external/chromium_org/testing/gtest/samples/
H A Dsample2.cc43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
/external/protobuf/gtest/samples/
H A Dsample2.cc43 char * const clone = new char[ len + 1 ]; local
44 memcpy(clone, c_string, len + 1);
46 return clone;
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpEntityEnclosingRequestBase.java77 public Object clone() throws CloneNotSupportedException { method in class:HttpEntityEnclosingRequestBase
78 HttpEntityEnclosingRequestBase clone =
79 (HttpEntityEnclosingRequestBase) super.clone();
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
83 return clone;
H A DHttpRequestBase.java176 public Object clone() throws CloneNotSupportedException { method in class:HttpRequestBase
177 HttpRequestBase clone = (HttpRequestBase) super.clone();
178 clone.abortLock = new ReentrantLock();
179 clone.aborted = false;
180 clone.releaseTrigger = null;
181 clone.connRequest = null;
182 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup);
183 clone
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie2.java99 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2
100 BasicClientCookie2 clone = (BasicClientCookie2) super.clone();
101 clone.ports = this.ports.clone();
102 return clone;
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-nontrivial-covariant-thunk.cpp14 virtual B *clone(A);
21 virtual C *clone(A); // expected-error {{cannot compile this non-trivial argument copy for thunk yet}}
/external/jmdns/src/javax/jmdns/
H A DServiceEvent.java62 * @see java.lang.Object#clone()
65 public ServiceEvent clone() { method in class:ServiceEvent
67 return (ServiceEvent) super.clone();
69 // clone is supported
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_rvalue
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_variable
78 var->constant_value = this->constant_value->clone(mem_ctx, ht);
82 this->constant_initializer->clone(mem_ctx, ht);
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_swizzle
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_return
103 new_value = this->value->clone(mem_ctx, ht);
109 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_discard
114 new_condition = this->condition->clone(mem_ct
120 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop_jump
128 ir_if::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_if
146 ir_loop::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop
168 ir_call::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_call
185 ir_expression::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_expression
199 ir_dereference_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_variable
215 ir_dereference_array::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_array
223 ir_dereference_record::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_record
230 ir_texture::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_texture
268 ir_assignment::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_assignment
282 ir_function::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function
302 ir_function_signature::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function_signature
345 ir_constant::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_constant
[all...]
/external/mesa3d/src/glsl/
H A Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_rvalue
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_variable
78 var->constant_value = this->constant_value->clone(mem_ctx, ht);
82 this->constant_initializer->clone(mem_ctx, ht);
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_swizzle
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_return
103 new_value = this->value->clone(mem_ctx, ht);
109 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_discard
114 new_condition = this->condition->clone(mem_ct
120 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop_jump
128 ir_if::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_if
146 ir_loop::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop
168 ir_call::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_call
185 ir_expression::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_expression
199 ir_dereference_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_variable
215 ir_dereference_array::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_array
223 ir_dereference_record::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_record
230 ir_texture::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_texture
268 ir_assignment::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_assignment
282 ir_function::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function
302 ir_function_signature::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function_signature
345 ir_constant::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_constant
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DAddressHeaderIms.java75 public Object clone() { method in class:AddressHeaderIms
76 AddressHeaderIms retval = (AddressHeaderIms) super.clone();
78 retval.address = (AddressImpl) this.address.clone();
/external/stlport/test/unit/
H A Dexception_test.cpp144 std::runtime_error clone("");
145 clone = e;
146 CPPUNIT_ASSERT(foo == clone.what() );
157 std::runtime_error clone("");
158 clone = e;
159 CPPUNIT_ASSERT(foo == clone.what() );
171 std::runtime_error clone("");
172 clone = e;
173 CPPUNIT_ASSERT(msg == clone.what() );
184 std::runtime_error clone("");
[all...]
/external/nist-sip/java/javax/sip/address/
H A DURI.java9 Object clone(); method in interface:URI
/external/nist-sip/java/javax/sip/header/
H A DHeader.java8 Object clone(); method in interface:Header
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java136 BasicHttpParams clone = new BasicHttpParams();
137 copyParams(clone);
138 return clone;
141 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpParams
142 BasicHttpParams clone = (BasicHttpParams) super.clone();
143 copyParams(clone);
144 return clone;
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketFactoryImpl.java41 this.sslParameters = (SSLParametersImpl) sslParameters.clone();
57 return new OpenSSLServerSocketImpl((SSLParametersImpl) sslParameters.clone());
62 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone());
70 (SSLParametersImpl) sslParameters.clone());
80 (SSLParametersImpl) sslParameters.clone());
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DNode.java13 public abstract Object clone(); method in class:Node
60 return (T) node.clone();
68 List<T> clone = new LinkedList<T>();
72 clone.add(n);
75 return clone;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.cpp68 RefPtrWillBeRawPtr<DocumentFragment> clone = create(document()); local
70 cloneChildNodes(clone.get());
71 return clone.release();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTemplateElement.cpp71 RefPtrWillBeRawPtr<Node> clone = cloneElementWithChildren();
73 content()->cloneChildNodes(toHTMLTemplateElement(clone.get())->content());
74 return clone.release();

Completed in 985 milliseconds

1234567891011>>