Home
last modified time | relevance | path

Searched refs:clone (Results 1 – 25 of 1742) sorted by relevance

12345678910>>...70

/external/chromium_org/third_party/mesa/src/src/glsl/
Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_rvalue
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable
78 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone()
82 this->constant_initializer->clone(mem_ctx, ht); in clone()
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone()
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return
103 new_value = this->value->clone(mem_ctx, ht); in clone()
109 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard
114 new_condition = this->condition->clone(mem_ctx, ht); in clone()
[all …]
/external/mesa3d/src/glsl/
Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_rvalue
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable
78 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone()
82 this->constant_initializer->clone(mem_ctx, ht); in clone()
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone()
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return
103 new_value = this->value->clone(mem_ctx, ht); in clone()
109 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard
114 new_condition = this->condition->clone(mem_ctx, ht); in clone()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DReverseAxesWalker.java138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getProximityPosition() local
140 clone.setRoot(this.getRoot()); in getProximityPosition()
142 clone.setPredicateCount(predicateIndex); in getProximityPosition()
144 clone.setPrevWalker(null); in getProximityPosition()
145 clone.setNextWalker(null); in getProximityPosition()
146 wi().setLastUsedWalker(clone); in getProximityPosition()
152 while (DTM.NULL != (next = clone.nextNode())) in getProximityPosition()
201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getLastPos() local
203 clone.setRoot(this.getRoot()); in getLastPos()
205 clone.setPredicateCount(m_predicateIndex); in getLastPos()
[all …]
DOneStepIterator.java135 public Object clone() throws CloneNotSupportedException in clone() method in OneStepIterator
139 OneStepIterator clone = (OneStepIterator) super.clone(); in clone() local
143 clone.m_iterator = m_iterator.cloneIterator(); in clone()
145 return clone; in clone()
159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset(); in cloneWithReset() local
160 clone.m_iterator = m_iterator; in cloneWithReset()
162 return clone; in cloneWithReset()
204 OneStepIterator clone = (OneStepIterator) this.clone(); in getProximityPosition() local
208 clone.setRoot(root, xctxt); in getProximityPosition()
211 clone.m_predCount = predicateIndex; in getProximityPosition()
[all …]
DAxesWalker.java87 public Object clone() throws CloneNotSupportedException in clone() method in AxesWalker
91 AxesWalker clone = (AxesWalker) super.clone(); in clone() local
97 return clone; in clone()
116 AxesWalker clone = findClone(this, cloneList); in cloneDeep() local
117 if(null != clone) in cloneDeep()
118 return clone; in cloneDeep()
119 clone = (AxesWalker)this.clone(); in cloneDeep()
120 clone.setLocPathIterator(cloneOwner); in cloneDeep()
124 cloneList.addElement(clone); in cloneDeep()
128 cloneOwner.m_lastUsedWalker = clone; in cloneDeep()
[all …]
DLocPathIterator.java236 LocPathIterator clone = (LocPathIterator)m_clones.getInstance(); in executeCharsToContentHandler() local
239 clone.setRoot(current, xctxt); in executeCharsToContentHandler()
241 int node = clone.nextNode(); in executeCharsToContentHandler()
242 DTM dtm = clone.getDTM(node); in executeCharsToContentHandler()
243 clone.detach(); in executeCharsToContentHandler()
531 LocPathIterator clone; in getLength() local
535 clone = (LocPathIterator) clone(); in getLength()
548 clone.m_predCount = m_predicateIndex; in getLength()
556 while (DTM.NULL != (next = clone.nextNode())) in getLength()
713 LocPathIterator clone; in cloneWithReset() local
[all …]
/external/stlport/test/unit/
Dexception_test.cpp144 std::runtime_error clone(""); in exception_emission() local
145 clone = e; in exception_emission()
146 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission()
157 std::runtime_error clone(""); in exception_emission() local
158 clone = e; in exception_emission()
159 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission()
171 std::runtime_error clone(""); in exception_emission() local
172 clone = e; in exception_emission()
173 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission()
184 std::runtime_error clone(""); in exception_emission() local
[all …]
/external/apache-http/src/org/apache/http/client/methods/
DHttpRequestBase.java176 public Object clone() throws CloneNotSupportedException { in clone() method in HttpRequestBase
177 HttpRequestBase clone = (HttpRequestBase) super.clone(); in clone() local
178 clone.abortLock = new ReentrantLock(); in clone()
179 clone.aborted = false; in clone()
180 clone.releaseTrigger = null; in clone()
181 clone.connRequest = null; in clone()
182 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup); in clone()
183 clone.params = (HttpParams) CloneUtils.clone(this.params); in clone()
184 return clone; in clone()
DHttpEntityEnclosingRequestBase.java77 public Object clone() throws CloneNotSupportedException { in clone() method in HttpEntityEnclosingRequestBase
78 HttpEntityEnclosingRequestBase clone = in clone() local
79 (HttpEntityEnclosingRequestBase) super.clone(); in clone()
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity); in clone()
83 return clone; in clone()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DNamespaceMappings.java331 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings
332 NamespaceMappings clone = new NamespaceMappings(); in clone() local
333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone(); in clone()
334 clone.count = this.count; in clone()
335 clone.m_namespaces = (Hashtable) m_namespaces.clone(); in clone()
337 clone.count = count; in clone()
338 return clone; in clone()
379 public Object clone() throws CloneNotSupportedException { in clone() method in NamespaceMappings.Stack
380 NamespaceMappings.Stack clone = new NamespaceMappings.Stack(); in clone() local
381 clone.max = this.max; in clone()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprogram.c489 struct gl_program *clone; in _mesa_clone_program() local
491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id); in _mesa_clone_program()
492 if (!clone) in _mesa_clone_program()
495 assert(clone->Target == prog->Target); in _mesa_clone_program()
496 assert(clone->RefCount == 1); in _mesa_clone_program()
498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String); in _mesa_clone_program()
499 clone->Format = prog->Format; in _mesa_clone_program()
500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions); in _mesa_clone_program()
501 if (!clone->Instructions) { in _mesa_clone_program()
502 _mesa_reference_program(ctx, &clone, NULL); in _mesa_clone_program()
[all …]
/external/mesa3d/src/mesa/program/
Dprogram.c489 struct gl_program *clone; in _mesa_clone_program() local
491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id); in _mesa_clone_program()
492 if (!clone) in _mesa_clone_program()
495 assert(clone->Target == prog->Target); in _mesa_clone_program()
496 assert(clone->RefCount == 1); in _mesa_clone_program()
498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String); in _mesa_clone_program()
499 clone->Format = prog->Format; in _mesa_clone_program()
500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions); in _mesa_clone_program()
501 if (!clone->Instructions) { in _mesa_clone_program()
502 _mesa_reference_program(ctx, &clone, NULL); in _mesa_clone_program()
[all …]
/external/srec/portable/src/
DPFileSystem.c445 LCHAR clone[P_PATH_MAX]; in PFileSystemGetParentDirectory() local
455 LSTRCPY(clone, path); in PFileSystemGetParentDirectory()
456 lstrtrim(clone); in PFileSystemGetParentDirectory()
458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2)); in PFileSystemGetParentDirectory()
461 lastSlash = LSTRRCHR(clone, L('/')); in PFileSystemGetParentDirectory()
468 else if (lastSlash < clone + LSTRLEN(clone) - 1) in PFileSystemGetParentDirectory()
472 if (LSTRLEN(clone) > *len) in PFileSystemGetParentDirectory()
474 *len = LSTRLEN(clone); in PFileSystemGetParentDirectory()
478 LSTRCPY(path, clone); in PFileSystemGetParentDirectory()
484 if (lastSlash -clone + 2 == 3 && LSTRNCMP(clone, L("../"), 3) == 0) in PFileSystemGetParentDirectory()
[all …]
/external/apache-http/src/org/apache/http/params/
DBasicHttpParams.java136 BasicHttpParams clone = new BasicHttpParams(); in copy() local
137 copyParams(clone); in copy()
138 return clone; in copy()
141 public Object clone() throws CloneNotSupportedException { in clone() method in BasicHttpParams
142 BasicHttpParams clone = (BasicHttpParams) super.clone(); in clone() local
143 copyParams(clone); in clone()
144 return clone; in clone()
/external/nist-sip/java/gov/nist/javax/sip/message/
DSIPRequest.java480 public Object clone() { in clone() method in SIPRequest
481 SIPRequest retval = (SIPRequest) super.clone(); in clone()
486 retval.requestLine = (RequestLine) this.requestLine.clone(); in clone()
713 newResponse.attachHeader((SIPHeader) nextHeader.clone(), false); in createResponse()
775 cancel.setRequestLine((RequestLine) this.requestLine.clone()); in createCancelRequest()
777 cancel.setHeader((Header) this.callIdHeader.clone()); in createCancelRequest()
778 cancel.setHeader((Header) this.toHeader.clone()); in createCancelRequest()
779 cancel.setHeader((Header) cSeqHeader.clone()); in createCancelRequest()
785 cancel.setHeader((Header) this.fromHeader.clone()); in createCancelRequest()
787 cancel.addFirst((Header) this.getTopmostVia().clone()); in createCancelRequest()
[all …]
/external/apache-http/src/org/apache/http/impl/cookie/
DBasicClientCookie2.java99 public Object clone() throws CloneNotSupportedException { in clone() method in BasicClientCookie2
100 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); in clone() local
101 clone.ports = this.ports.clone(); in clone()
102 return clone; in clone()
/external/owasp/sanitizer/tools/findbugs/lib/
Dasm-tree-3.3.jar ... abstract org.objectweb.asm.tree.AbstractInsnNode clone (java.util.Map) static org. ...
/external/bluetooth/bluedroid/test/suite/support/
Dproperty.c23 bt_property_t *clone = calloc(sizeof(bt_property_t), count); in property_copy_array() local
24 if (!clone) { in property_copy_array()
28 memcpy(&clone[0], &properties[0], sizeof(bt_property_t) * count); in property_copy_array()
30 clone[i].val = calloc(clone[i].len, 1); in property_copy_array()
31 memcpy(clone[i].val, properties[i].val, clone[i].len); in property_copy_array()
34 return clone; in property_copy_array()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
DSerializeOptions.java385 public Object clone() throws CloneNotSupportedException in clone() method in SerializeOptions
387 SerializeOptions clone; in clone() local
390 clone = new SerializeOptions(getOptions()); in clone()
391 clone.setBaseIndent(baseIndent); in clone()
392 clone.setIndent(indent); in clone()
393 clone.setNewline(newline); in clone()
394 clone.setPadding(padding); in clone()
395 return clone; in clone()
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
DFrameNode.java165 public AbstractInsnNode clone(final Map labels) { in clone() method in FrameNode
166 FrameNode clone = new FrameNode(); in clone() local
167 clone.type = type; in clone()
169 clone.local = new ArrayList(); in clone()
175 clone.local.add(l); in clone()
179 clone.stack = new ArrayList(); in clone()
185 clone.stack.add(s); in clone()
188 return clone; in clone()
/external/chromium_org/third_party/icu/source/i18n/
Dtztrans.cpp22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
32 fFrom = source.fFrom->clone(); in TimeZoneTransition()
36 fTo = source.fTo->clone(); in TimeZoneTransition()
50 TimeZoneTransition::clone(void) const { in clone() function in TimeZoneTransition
100 fFrom = from.clone(); in setFrom()
116 fTo = to.clone(); in setTo()
/external/icu/icu4c/source/i18n/
Dtztrans.cpp22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
32 fFrom = source.fFrom->clone(); in TimeZoneTransition()
36 fTo = source.fTo->clone(); in TimeZoneTransition()
50 TimeZoneTransition::clone(void) const { in clone() function in TimeZoneTransition
100 fFrom = from.clone(); in setFrom()
116 fTo = to.clone(); in setTo()
/external/chromium_org/cc/animation/
Dscroll_offset_animation_curve_unittest.cc96 scoped_ptr<AnimationCurve> clone(curve->Clone().Pass()); in TEST() local
98 EXPECT_EQ(AnimationCurve::ScrollOffset, clone->Type()); in TEST()
99 EXPECT_EQ(duration, clone->Duration()); in TEST()
102 clone->ToScrollOffsetAnimationCurve()->GetValue(-1.0)); in TEST()
104 clone->ToScrollOffsetAnimationCurve()->GetValue(0.0)); in TEST()
107 clone->ToScrollOffsetAnimationCurve()->GetValue(duration / 2.0)); in TEST()
110 clone->ToScrollOffsetAnimationCurve()->GetValue(duration)); in TEST()
113 clone->ToScrollOffsetAnimationCurve()->GetValue(duration + 1.0)); in TEST()
117 clone->ToScrollOffsetAnimationCurve()->GetValue(duration / 4.0); in TEST()
/external/icu/icu4c/source/test/intltest/
Dtstnrapi.cpp38 Normalizer *clone=copy.clone(); in TestNormalizerAPI() local
39 if(*clone!=copy) { in TestNormalizerAPI()
43 if(clone->hashCode()!=copy.hashCode()) { in TestNormalizerAPI()
46 if(clone->next()!=0x4e3d) { in TestNormalizerAPI()
50 if(clone->hashCode()==copy.hashCode()) { in TestNormalizerAPI()
53 delete clone; in TestNormalizerAPI()
54 clone=0; in TestNormalizerAPI()
/external/chromium_org/third_party/icu/source/test/intltest/
Dtstnrapi.cpp38 Normalizer *clone=copy.clone(); in TestNormalizerAPI() local
39 if(*clone!=copy) { in TestNormalizerAPI()
43 if(clone->hashCode()!=copy.hashCode()) { in TestNormalizerAPI()
46 if(clone->next()!=0x4e3d) { in TestNormalizerAPI()
50 if(clone->hashCode()==copy.hashCode()) { in TestNormalizerAPI()
53 delete clone; in TestNormalizerAPI()
54 clone=0; in TestNormalizerAPI()

12345678910>>...70