Searched defs:clone (Results 451 - 475 of 842) sorted by relevance

<<11121314151617181920>>

/external/ltrace/sysdeps/linux-gnu/s390/
H A Dfetch.c118 struct fetch_context *clone = malloc(sizeof(*context)); local
119 if (clone == NULL)
121 *clone = *context;
122 return clone;
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py57 def clone(self): member in class:decl_dumper_t
96 def clone(self): member in class:type_dumper_t
/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/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DAbstractInsnNode.java206 public abstract AbstractInsnNode clone(final Map labels); method in class:AbstractInsnNode
209 * Returns the clone of the given label.
213 * @return the clone of the given label.
215 static LabelNode clone(final LabelNode label, final Map map) { method in class:AbstractInsnNode
226 static LabelNode[] clone(final List labels, final Map map) { method in class:AbstractInsnNode
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java78 @Override public Object clone() throws CloneNotSupportedException { method in class:HashCodeAndEqualsSafeSet
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java131 public Object clone() { method in class:TrackMetaData
133 return super.clone();
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java188 public Object clone() { method in class:DuplicateNameValueList
193 retval.set((NameValue) ((NameValue) it.next()).clone());
H A DNameValue.java212 public Object clone() { method in class:NameValue
213 NameValue retval = (NameValue) super.clone();
/external/nist-sip/java/gov/nist/javax/sip/
H A DListeningPointImpl.java144 public Object clone() { method in class:ListeningPointImpl
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAuthority.java222 public Object clone() { method in class:Authority
223 Authority retval = (Authority) super.clone();
225 retval.hostPort = (HostPort) this.hostPort.clone();
227 retval.userInfo = (UserInfo) this.userInfo.clone();
H A DTelURLImpl.java171 /** Deep copy clone operation.
175 public Object clone() { method in class:TelURLImpl
176 TelURLImpl retval = (TelURLImpl) super.clone();
178 retval.telephoneNumber = (TelephoneNumber) this.telephoneNumber.clone();
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAccessNetworkInfo.java280 * Makes a deep clone. (ParametersHeader)
282 public Object clone() { method in class:PAccessNetworkInfo
283 PAccessNetworkInfo retval = (PAccessNetworkInfo) super.clone();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DAbstractMessage.java188 public abstract BuilderType clone(); method in class:AbstractMessage.Builder
H A DAbstractMessageLite.java104 public abstract BuilderType clone(); method in class:AbstractMessageLite.Builder
/external/smack/src/org/xbill/DNS/
H A DHeader.java278 clone() { method in class:Header
/external/srec/portable/src/
H A DArrayListImpl.c52 impl->Interface.clone = &ArrayList_Clone;
216 ESR_ReturnCode ArrayList_Clone(ArrayList* self, ArrayList* clone) argument
222 CHK(rc, clone->removeAll(clone));
227 CHK(rc, clone->add(clone, element));
/external/srec/shared/src/
H A DHashMapImpl.c89 /* Not found, clone the key and insert it. */
90 LCHAR *clone = (LCHAR *) MALLOC(sizeof(LCHAR) * (LSTRLEN(key) + 1), MTAG); local
91 if (clone == NULL) return ESR_OUT_OF_MEMORY;
92 LSTRCPY(clone, key);
93 if ((rc = PHashTablePutValue(impl->table, clone, value, NULL)) != ESR_SUCCESS)
95 FREE(clone);
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js146 * @param {vec2} a vector to clone
149 vec2.clone = function(a) {
631 * @param {vec3} a vector to clone
634 vec3.clone = function(a) {
1116 * @param {vec4} a vector to clone
1119 vec4.clone = function(a) {
1604 * @param {mat2} a matrix to clone
1607 mat2.clone = function(a) {
1860 * @param {mat2d} a matrix to clone
1863 mat2d.clone
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jar ... abstract com.google.protobuf.MessageLite$Builder clone () public abstract boolean isInitialized () public abstract com.google. ...
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java111 BitSet s = (BitSet)this.clone();
166 public Object clone() { method in class:BitSet
169 s = (BitSet)super.clone();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLabel.java145 public Object clone() { method in class:Label
148 l = (Label)super.clone();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBitSet.java152 BitSet s = (BitSet)this.clone();
187 public Object clone() { method in class:BitSet
190 s = (BitSet)super.clone();
288 BitSet s = (BitSet)this.clone();
375 BitSet s = (BitSet)this.clone();
445 BitSet s = (BitSet)this.clone();
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java321 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie
322 BasicClientCookie clone = (BasicClientCookie) super.clone();
323 clone.attribs = new HashMap<String, String>(this.attribs);
324 return clone;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java328 * This method makes a clone of this object.
331 public Object clone() throws CloneNotSupportedException { method in class:NamespaceMappings
332 NamespaceMappings clone = new NamespaceMappings();
333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone();
334 clone.count = this.count;
335 clone.m_namespaces = (Hashtable) m_namespaces.clone();
337 clone.count = count;
338 return clone;
379 public Object clone() throws CloneNotSupportedException { method in class:NamespaceMappings.Stack
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNodeVector.java82 * @return A clone of this
86 public Object clone() throws CloneNotSupportedException method in class:NodeVector
89 NodeVector clone = (NodeVector) super.clone();
91 if ((null != this.m_map) && (this.m_map == clone.m_map))
93 clone.m_map = new int[this.m_map.length];
95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
98 return clone;

Completed in 721 milliseconds

<<11121314151617181920>>