Home
last modified time | relevance | path

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

/cts/tools/dasm/src/java_cup/
Dterminal_set.java32 _elements = (BitSet)other._elements.clone(); in terminal_set()
104 BitSet copy_other = (BitSet)other._elements.clone(); in is_subset_of()
172 BitSet copy = (BitSet)_elements.clone(); in add()
192 BitSet copy = (BitSet)other._elements.clone(); in intersects()
Dsymbol_set.java29 _all = (Hashtable)other._all.clone(); in symbol_set()
Dlalr_item_set.java39 _all = (Hashtable)other._all.clone(); in lalr_item_set()
Dparser.cup71 /** helper routine to clone a new production part adding a given label */
/cts/tests/tests/animation/src/android/animation/cts/
DKeyframeTest.java78 Keyframe clone = keyFrame.clone(); in testClone() local
79 assertEquals(keyFrame.getFraction(), clone.getFraction()); in testClone()
DAnimatorTest.java48 Animator animatorClone = mAnimator.clone(); in testClone()
DObjectAnimatorTest.java207 ObjectAnimator cloneAnimator = objAnimator.clone(); in testClone()
DPropertyValuesHolderTest.java69 PropertyValuesHolder cloneHolder = pVHolder.clone(); in testClone()
/cts/tests/tests/view/src/android/view/animation/cts/
DAnimationSetTest.java375 final AnimationSet clone = animationSet.clone(); in testClone() local
376 clone.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE); in testClone()
378 final List<Animation> cloneChildren = clone.getAnimations(); in testClone()
408 protected AnimationSet clone() throws CloneNotSupportedException { in clone() method in AnimationSetTest.MyAnimationSet
409 return super.clone(); in clone()
DAnimationTest.java636 Animation cloneAnimation = myAnimation.clone();
659 protected Animation clone() throws CloneNotSupportedException {
660 return super.clone();
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
DRoundRectShapeTest.java86 RoundRectShape clonedShape = roundRectShape.clone(); in testClone()
DPathShapeTest.java93 PathShape clonedShape = pathShape.clone(); in testClone()
DRectShapeTest.java69 RectShape clonedShape = rectShape.clone(); in testClone()
DShapeTest.java81 Shape clonedShape = shape.clone(); in testClone()
/cts/tests/tests/text/src/android/text/cts/
DTextUtilsTest.java696 char[] destResult = destOriginal.clone(); in testGetChars()
713 destResult = destOriginal.clone(); in testGetChars()
728 destResult = destOriginal.clone(); in testGetChars()
744 destResult = destOriginal.clone(); in testGetChars()
760 destResult = destOriginal.clone(); in testGetChars()
772 destResult = destOriginal.clone(); in testGetChars()
780 destResult = destOriginal.clone(); in testGetChars()
787 destResult = destOriginal.clone(); in testGetChars()
797 destResult = destOriginal.clone(); in testGetChars()
804 destResult = destOriginal.clone(); in testGetChars()
/cts/tests/tests/media/src/android/media/cts/
DJetPlayerTest.java168 mJetPlayer.clone(); in testClone()
/cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/js/
Djquery.js143 selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;
311 var options, name, src, copy, copyIsArray, clone,
353 clone = src && jQuery.isArray(src) ? src : [];
356 clone = src && jQuery.isPlainObject(src) ? src : {};
360 target[ name ] = jQuery.extend( deep, clone, copy );
5690 var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
5820 clone: function( dataAndEvents, deepDataAndEvents ) { method
5825 return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
5963 jQuery.clone( fragment, true, true ) :
6139 var elems = ( i > 0 ? this.clone(true) : this ).get();
[all …]
/cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
Dcrypto.js1159 var x = (this.s<0)?this.negate():this.clone();
1160 var y = (a.s<0)?a.negate():a.clone();
1200 var u = m.clone(), v = this.clone();
1301 BigInteger.prototype.clone = bnClone; method in BigInteger
Dpdfjs.js2215 clone: function CanvasExtraState_clone() {
2432 this.current = old.clone();
/cts/tests/tests/os/src/android/os/cts/
DBundleTest.java89 Bundle cloneBundle = (Bundle) mBundle.clone(); in testClone()
/cts/tools/dex-tools/dex/
Dclasses0.out.dex20 protected java.lang.Object clone()
4245 protected java.lang.Object clone()
5509 public static native int clone(
5632 public abstract java.lang.Object clone()
5860 public abstract java.lang.Object clone()
5923 public java.lang.Object clone()
6022 public java.lang.Object clone()
6125 public java.lang.Object clone()
6287 public java.lang.Object clone()
6555 protected final java.lang.Object clone()
[all …]
Dclasses.out.dex19769 public java.lang.Object clone()
55019 public java.lang.Object clone()
91836 protected java.lang.Object clone()
91908 protected java.lang.Object clone()
94267 protected android.webkit.WebBackForwardList clone()
94269 protected volatile java.lang.Object clone()
94392 protected android.webkit.WebHistoryItem clone()
94394 protected volatile java.lang.Object clone()
138618 public java.lang.Object clone()
144317 public java.lang.Object clone()
[all …]
/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java628 Intent actual = (Intent) mIntent.clone(); in testClone()